Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 82 for dodata (0.15 sec)

  1. src/runtime/asm_mips64x.s

    	ADDV	$-16, R29
    	MOVV	R1, 8(R29)
    	MOVV	R0, 0(R29)
    	JAL	runtime·newproc(SB)
    	ADDV	$16, R29
    
    	// start this M
    	JAL	runtime·mstart(SB)
    
    	MOVV	R0, 1(R0)
    	RET
    
    DATA	runtime·mainPC+0(SB)/8,$runtime·main(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    
    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    	MOVV	R0, 2(R0) // TODO: TD
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadmacho/ldmacho.go

    	f.MustSeek(m.base+int64(c.seg.fileoff), 0)
    	dat, readOnly, err := f.Slice(uint64(c.seg.filesz))
    	if err != nil {
    		return errorf("cannot load object data: %v", err)
    	}
    
    	for i := uint32(0); i < c.seg.nsect; i++ {
    		sect := &c.seg.sect[i]
    		if sect.segname != "__TEXT" && sect.segname != "__DATA" {
    			continue
    		}
    		if sect.name == "__eh_frame" {
    			continue
    		}
    		name := fmt.Sprintf("%s(%s/%s)", pkg, sect.segname, sect.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  3. src/runtime/asm_riscv64.s

    TEXT runtime·panicSliceConvert<ABIInternal>(SB),NOSPLIT,$0-16
    	MOV	T2, X10
    	MOV	T3, X11
    	JMP	runtime·goPanicSliceConvert<ABIInternal>(SB)
    
    DATA	runtime·mainPC+0(SB)/8,$runtime·main<ABIInternal>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. src/runtime/asm_s390x.s

    	MOVD 	R2, 8(R15)
    	MOVD 	$0, 0(R15)
    	BL	runtime·newproc(SB)
    	ADD	$16, R15
    
    	// start this M
    	BL	runtime·mstart(SB)
    
    	MOVD	$0, 1(R0)
    	RET
    
    DATA	runtime·mainPC+0(SB)/8,$runtime·main(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    
    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    	BRRK
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. src/runtime/asm_loong64.s

    	ADDV	$-16, R3
    	MOVV	R19, 8(R3)
    	MOVV	R0, 0(R3)
    	JAL	runtime·newproc(SB)
    	ADDV	$16, R3
    
    	// start this M
    	JAL	runtime·mstart(SB)
    
    	MOVV	R0, 1(R0)
    	RET
    
    DATA	runtime·mainPC+0(SB)/8,$runtime·main<ABIInternal>(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    
    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    	BREAK
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/runtime/asm_mipsx.s

    	ADDU	$-8, R29
    	MOVW	R1, 4(R29)
    	MOVW	R0, 0(R29)
    	JAL	runtime·newproc(SB)
    	ADDU	$8, R29
    
    	// start this M
    	JAL	runtime·mstart(SB)
    
    	UNDEF
    	RET
    
    DATA	runtime·mainPC+0(SB)/4,$runtime·main(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$4
    
    TEXT runtime·breakpoint(SB),NOSPLIT,$0-0
    	BREAK
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT,$0-0
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/internal/bytealg/index_ppc64x.s

    #include "go_asm.h"
    #include "textflag.h"
    
    // Needed to swap LXVD2X loads to the correct
    // byte order to work on POWER8.
    
    #ifdef GOARCH_ppc64
    DATA byteswap<>+0(SB)/8, $0x0001020304050607
    DATA byteswap<>+8(SB)/8, $0x08090a0b0c0d0e0f
    #else
    DATA byteswap<>+0(SB)/8, $0x0706050403020100
    DATA byteswap<>+8(SB)/8, $0x0f0e0d0c0b0a0908
    #endif
    
    // Load bytes in big endian order. Address
    // alignment does not need checking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/controllermanager.go

    			return nil, true, fmt.Errorf("error parsing root-ca-file at %s: %v", controllerContext.ComponentConfig.SAController.RootCAFile, err)
    		}
    	} else {
    		rootCA = rootClientBuilder.ConfigOrDie("tokens-controller").CAData
    	}
    
    	tokenGenerator, err := serviceaccount.JWTTokenGenerator(serviceaccount.LegacyIssuer, privateKey)
    	if err != nil {
    		return nil, false, fmt.Errorf("failed to build token generator: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. src/runtime/asm_arm.s

    	BL	runtime·newproc(SB)
    	ADD	$8, R13	// pop args and LR
    
    	// start this M
    	BL	runtime·mstart(SB)
    
    	MOVW	$1234, R0
    	MOVW	$1000, R1
    	MOVW	R0, (R1)	// fail hard
    
    DATA	runtime·mainPC+0(SB)/4,$runtime·main(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$4
    
    TEXT runtime·breakpoint(SB),NOSPLIT,$0-0
    	// gdb won't skip this breakpoint instruction automatically,
    	// so you must manually "set $pc+=4" to skip it and continue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    		if md.bad {
    			continue
    		}
    		*modules = append(*modules, md)
    		if md.gcdatamask == (bitvector{}) {
    			scanDataSize := md.edata - md.data
    			md.gcdatamask = progToPointerMask((*byte)(unsafe.Pointer(md.gcdata)), scanDataSize)
    			scanBSSSize := md.ebss - md.bss
    			md.gcbssmask = progToPointerMask((*byte)(unsafe.Pointer(md.gcbss)), scanBSSSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top