Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 680 for boffset (0.14 sec)

  1. src/cmd/internal/obj/arm64/obj7.go

    				}
    			} else {
    				aoffset := c.autosize
    				// LDP -8(RSP), (R29, R30)
    				p.As = ALDP
    				p.From.Type = obj.TYPE_MEM
    				p.From.Offset = -8
    				p.From.Reg = REGSP
    				p.To.Type = obj.TYPE_REGREG
    				p.To.Reg = REGFP
    				p.To.Offset = REGLINK
    
    				// ADD $aoffset, RSP, RSP
    				q = newprog()
    				q.As = AADD
    				q.From.Type = obj.TYPE_CONST
    				q.From.Offset = int64(aoffset)
    				q.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  2. src/internal/xcoff/xcoff.go

    	Lnimpid  uint32 // Number of import file IDs
    	Lstlen   uint32 // Length of string table
    	Limpoff  uint64 // Offset to start of import file IDs
    	Lstoff   uint64 // Offset to start of string table
    	Lsymoff  uint64 // Offset to start of symbol table
    	Lrldoff  uint64 // Offset to start of relocation entries
    }
    
    const (
    	LDHDRSZ_32 = 32
    	LDHDRSZ_64 = 56
    )
    
    // Loader Symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/obj0.go

    			return true
    		}
    	}
    
    	return false
    }
    
    func offoverlap(sa, sb *Sch) bool {
    	if sa.soffset < sb.soffset {
    		if sa.soffset+int32(sa.size) > sb.soffset {
    			return true
    		}
    		return false
    	}
    	if sb.soffset+int32(sb.size) > sa.soffset {
    		return true
    	}
    	return false
    }
    
    /*
     * test 2 adjacent instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  4. src/compress/flate/inflate.go

    //
    // Deprecated: No longer returned.
    type ReadError struct {
    	Offset int64 // byte offset where error occurred
    	Err    error // error returned by underlying Read
    }
    
    func (e *ReadError) Error() string {
    	return "flate: read error at offset " + strconv.FormatInt(e.Offset, 10) + ": " + e.Err.Error()
    }
    
    // A WriteError reports an error encountered while writing output.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticinit/sched.go

    	if isvaluelit(n) {
    		s.initplan(n)
    		q := s.Plans[n]
    		for _, qe := range q.E {
    			// qe is a copy; we are not modifying entries in q.E
    			qe.Xoffset += xoffset
    			p.E = append(p.E, qe)
    		}
    		return
    	}
    
    	// add to plan
    	p.E = append(p.E, Entry{Xoffset: xoffset, Expr: n})
    }
    
    func (s *Schedule) staticAssignInlinedCall(l *ir.Name, loff int64, call *ir.InlinedCallExpr, typ *types.Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/internal/xcoff/file.go

    		return nil, err
    	}
    
    	offset := 0
    	// First import file ID is the default LIBPATH value
    	libpath := cstring(table[offset:])
    	f.LibraryPaths = strings.Split(libpath, ":")
    	offset += len(libpath) + 3 // 3 null bytes
    	all := make([]string, 0)
    	for i := 1; i < int(nimpid); i++ {
    		impidpath := cstring(table[offset:])
    		offset += len(impidpath) + 1
    		impidbase := cstring(table[offset:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/crypto/sha1/sha1block_amd64.s

    // Helper macros for PRECALC, which does precomputations
    #define PRECALC_0(OFFSET) \
    	VMOVDQU   OFFSET(R10),X0
    
    #define PRECALC_1(OFFSET) \
    	VINSERTI128 $1, OFFSET(R13), Y0, Y0
    
    #define PRECALC_2(YREG) \
    	VPSHUFB Y10, Y0, YREG
    
    #define PRECALC_4(YREG,K_OFFSET) \
    	VPADDD K_OFFSET(R8), YREG, Y0
    
    #define PRECALC_7(OFFSET) \
    	VMOVDQU Y0, (OFFSET*2)(R14)
    
    
    // Message scheduling pre-compute for rounds 0-15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. src/time/zoneinfo.go

    	zone := &l.zone[tx[lo].index]
    	name = zone.name
    	offset = zone.offset
    	start = tx[lo].when
    	// end = maintained during the search
    	isDST = zone.isDST
    
    	// If we're at the end of the known zone transitions,
    	// try the extend string.
    	if lo == len(tx)-1 && l.extend != "" {
    		if ename, eoffset, estart, eend, eisDST, ok := tzset(l.extend, start, sec); ok {
    			return ename, eoffset, estart, eend, eisDST
    		}
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/debug/gosym/pclntab.go

    	t.quantum = uint32(t.Data[6])
    	t.ptrsize = uint32(t.Data[7])
    
    	offset := func(word uint32) uint64 {
    		return t.uintptr(t.Data[8+word*t.ptrsize:])
    	}
    	data := func(word uint32) []byte {
    		return t.Data[offset(word):]
    	}
    
    	switch possibleVersion {
    	case ver118, ver120:
    		t.nfunctab = uint32(offset(0))
    		t.nfiletab = uint32(offset(1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/expand_calls.go

    	if et == types.TINT64 {
    		tHi = x.typs.Int32
    	}
    	tLo = x.typs.UInt32
    	return
    }
    
    // offsetFrom creates an offset from a pointer, simplifying chained offsets and offsets from SP
    func (x *expandState) offsetFrom(b *Block, from *Value, offset int64, pt *types.Type) *Value {
    	ft := from.Type
    	if offset == 0 {
    		if ft == pt {
    			return from
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
Back to top