Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 525 for xoffset (0.37 sec)

  1. src/io/io.go

    var errOffset = errors.New("Seek: invalid offset")
    
    func (s *SectionReader) Seek(offset int64, whence int) (int64, error) {
    	switch whence {
    	default:
    		return 0, errWhence
    	case SeekStart:
    		offset += s.base
    	case SeekCurrent:
    		offset += s.off
    	case SeekEnd:
    		offset += s.limit
    	}
    	if offset < s.base {
    		return 0, errOffset
    	}
    	s.off = offset
    	return offset - s.base, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            if (startPosition * 2 >= windowSize) {
                int offset = params.getOffset();
                if (offset < 0) {
                    offset = 0;
                } else if (offset > windowSize / 2) {
                    offset = windowSize / 2;
                }
                int start = startPosition - offset;
                if (start < 0) {
                    start = 0;
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    	// Arm64.
    
    	// Set a MOV[NZ] immediate field to bits [15:0] of the offset from the thread
    	// local base to the thread local variable defined by the referenced (thread
    	// local) symbol. Error if the offset does not fit into 16 bits.
    	R_ARM64_TLS_LE
    
    	// Relocates an ADRP; LD64 instruction sequence to load the offset between
    	// the thread local base and the thread local variable defined by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/runtime/pinner.go

    func (span *mspan) incPinCounter(offset uintptr) {
    	var rec *specialPinCounter
    	ref, exists := span.specialFindSplicePoint(offset, _KindSpecialPinCounter)
    	if !exists {
    		lock(&mheap_.speciallock)
    		rec = (*specialPinCounter)(mheap_.specialPinCounterAlloc.alloc())
    		unlock(&mheap_.speciallock)
    		// splice in record, fill in offset.
    		rec.special.offset = uint16(offset)
    		rec.special.kind = _KindSpecialPinCounter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    		// and adjust the offset.
    		child.result[child.offset] = lenByte
    		extraBytes := int(lenLen - 1)
    		if extraBytes != 0 {
    			child.add(make([]byte, extraBytes)...)
    			childStart := child.offset + child.pendingLenLen
    			copy(child.result[childStart+extraBytes:], child.result[childStart:])
    		}
    		child.offset++
    		child.pendingLenLen = extraBytes
    	}
    
    	l := length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. src/time/format_test.go

    	// issue 67470
    	{"-07", "-25", "time zone offset hour out of range"},
    	{"-07:00", "+25:00", "time zone offset hour out of range"},
    	{"-07:00", "-23:61", "time zone offset minute out of range"},
    	{"-07:00:00", "+23:59:61", "time zone offset second out of range"},
    	{"Z07", "-25", "time zone offset hour out of range"},
    	{"Z07:00", "+25:00", "time zone offset hour out of range"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/obj6.go

    		}
    		offset := p.To.Offset
    		p.As = mov
    		p.From.Type = obj.TYPE_MEM
    		p.From.Name = obj.NAME_GOTREF
    		p.From.Sym = sym
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = reg
    		p.To.Offset = 0
    		p.To.Sym = nil
    		p1 := obj.Appendp(p, newprog)
    		p1.As = lea
    		p1.From.Type = obj.TYPE_MEM
    		p1.From.Offset = offset
    		p1.From.Reg = reg
    		p1.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  8. src/debug/dwarf/type.go

    // types section.
    type typeReader interface {
    	Seek(Offset)
    	Next() (*Entry, error)
    	clone() typeReader
    	offset() Offset
    	// AddressSize returns the size in bytes of addresses in the current
    	// compilation unit.
    	AddressSize() int
    }
    
    // Type reads the type at off in the DWARF “info” section.
    func (d *Data) Type(off Offset) (Type, error) {
    	return d.readType("info", d.Reader(), off, d.typeCache, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

      %offset:4 = "tf.ConcatOffset"(%concat_dim, %shape0, %shape1, %shape2, %shape3) : (tensor<i32>, tensor<3xi32>, tensor<3xi32>, tensor<3xi32>, tensor<3xi32>) -> (tensor<3xi32>, tensor<3xi32>, tensor<3xi32>, tensor<3xi32>)
    
      // CHECK: return [[OFFSET_0]], [[OFFSET_0]], [[OFFSET_2]], [[OFFSET_3]]
      func.return %offset#0, %offset#1, %offset#2, %offset#3: tensor<3xi32>, tensor<3xi32>, tensor<3xi32>, tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/op.go

    	SymRdWr = SymRead | SymWrite
    
    	SymNone SymEffect = 0
    )
    
    // A Sym represents a symbolic offset from a base register.
    // Currently a Sym can be one of 3 things:
    //   - a *gc.Node, for an offset from SP (the stack pointer)
    //   - a *obj.LSym, for an offset from SB (the global pointer)
    //   - nil, for no offset
    type Sym interface {
    	CanBeAnSSASym()
    	CanBeAnSSAAux()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top