Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for coffsets (0.18 sec)

  1. src/runtime/asm_amd64.s

    	CMPQ	DI, SI
    	JNE	3(PC)
    	CALL	runtime·badmorestackgsignal(SB)
    	CALL	runtime·abort(SB)
    
    	// Called from f.
    	// Set m->morebuf to f's caller.
    	NOP	SP	// tell vet SP changed - stop checking offsets
    	MOVQ	8(SP), AX	// f's caller's PC
    	MOVQ	AX, (m_morebuf+gobuf_pc)(BX)
    	LEAQ	16(SP), AX	// f's caller's SP
    	MOVQ	AX, (m_morebuf+gobuf_sp)(BX)
    	MOVQ	DI, (m_morebuf+gobuf_g)(BX)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-FP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	for i := uint32(0); i < uint32(recHeader.number); i++ {
    		offset := request.header.outputDesc.offset + uint32(unsafe.Sizeof(*recHeader)) + i*uint32(unsafe.Sizeof(*sectionDesc))
    		sectionDesc = (*nwmTriplet)(unsafe.Pointer(&responseBuffer[offset]))
    		for j := uint32(0); j < sectionDesc.number; j++ {
    			offset = request.header.outputDesc.offset + sectionDesc.offset + j*sectionDesc.length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	// relocation applies, and "off" is the contents of the
    	// to-be-relocated data item (from sym.P). Return is an updated
    	// offset value.
    	Archrelocvariant func(target *Target, ldr *loader.Loader, rel loader.Reloc,
    		rv sym.RelocVariant, sym loader.Sym, offset int64, data []byte) (relocatedOffset int64)
    
    	// Generate a trampoline for a call from s to rs if necessary. ri is
    	// index of the relocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/reflect/type.go

    // by padding.
    func isPaddedField(t Type, i int) bool {
    	field := t.Field(i)
    	if i+1 < t.NumField() {
    		return field.Offset+field.Type.Size() != t.Field(i+1).Offset
    	}
    	return field.Offset+field.Type.Size() != t.Size()
    }
    
    // StructOf returns the struct type containing fields.
    // The Offset and Index fields are ignored and computed as they would be
    // by the compiler.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    	(MOVWstoreconst [makeValAndOff(int32(int16(c)),off)] {sym} ptr mem)
    (MOVBstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVBstoreconst [makeValAndOff(int32(int8(c)),off)] {sym} ptr mem)
    
    // Fold address offsets into constant stores.
    (MOV(Q|L|W|B|O)storeconst [sc] {s} (ADDQconst [off] ptr) mem) && ValAndOff(sc).canAdd32(off) =>
    	(MOV(Q|L|W|B|O)storeconst [ValAndOff(sc).addOffset32(off)] {s} ptr mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top