Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,109 for offset2 (0.25 sec)

  1. src/cmd/link/internal/wasm/asm.go

    			}
    
    			segments = append(segments, &dataSegment{
    				offset: offset,
    				data:   data[:segmentEnd],
    			})
    			data = data[zeroEnd:]
    			offset += zeroEnd
    		}
    	}
    
    	writeUleb128(ctxt.Out, uint64(len(segments))) // number of data entries
    	for _, seg := range segments {
    		writeUleb128(ctxt.Out, 0) // memidx
    		writeI32Const(ctxt.Out, seg.offset)
    		ctxt.Out.WriteByte(0x0b) // end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        auto o = ::flatbuffers::Offset<Tensor>(end);
        return o;
      }
    };
    
    inline ::flatbuffers::Offset<Tensor> CreateTensor(
        ::flatbuffers::FlatBufferBuilder &_fbb,
        ::flatbuffers::Offset<::flatbuffers::Vector<int32_t>> shape = 0,
        tflite::TensorType type = tflite::TensorType_FLOAT32,
        uint32_t buffer = 0,
        ::flatbuffers::Offset<::flatbuffers::String> name = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  3. src/compress/flate/deflate.go

    	logWindowSize = 15
    	windowSize    = 1 << logWindowSize
    	windowMask    = windowSize - 1
    
    	// The LZ77 step produces a sequence of literal tokens and <length, offset>
    	// pair tokens. The offset is also known as distance. The underlying wire
    	// format limits the range of lengths and offsets. For example, there are
    	// 256 legitimate lengths: those in the range [3, 258]. This package's
    	// compressor uses a higher minimum match length, enabling optimizations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. clause/limit_test.go

    			"SELECT * FROM `users` LIMIT ?",
    			[]interface{}{limit10},
    		},
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Limit{Limit: &limit10, Offset: 20}, clause.Limit{Offset: 30}, clause.Limit{Limit: &limitNeg10}},
    			"SELECT * FROM `users` OFFSET ?",
    			[]interface{}{30},
    		},
    		{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Feb 06 02:54:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    	"internal/abi"
    	"sync"
    	"sync/atomic"
    )
    
    // An Addr is an argument to an instruction.
    // The general forms and their encodings are:
    //
    //	sym±offset(symkind)(reg)(index*scale)
    //		Memory reference at address &sym(symkind) + offset + reg + index*scale.
    //		Any of sym(symkind), ±offset, (reg), (index*scale), and *scale can be omitted.
    //		If (reg) and *scale are both omitted, the resulting expression (index) is parsed as (reg).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/unsafe/unsafe.go

    // by conversion to uintptr, addition of an offset, and conversion back to Pointer.
    //
    //	p = unsafe.Pointer(uintptr(p) + offset)
    //
    // The most common use of this pattern is to access fields in a struct
    // or elements of an array:
    //
    //	// equivalent to f := unsafe.Pointer(&s.f)
    //	f := unsafe.Pointer(uintptr(unsafe.Pointer(&s)) + unsafe.Offsetof(s.f))
    //
    //	// equivalent to e := unsafe.Pointer(&x[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/time/format.go

    			// as some people do write offsets of 24 hours
    			// or 60 minutes or 60 seconds.
    			if hr > 24 {
    				rangeErrString = "time zone offset hour"
    			}
    			if mm > 60 {
    				rangeErrString = "time zone offset minute"
    			}
    			if ss > 60 {
    				rangeErrString = "time zone offset second"
    			}
    
    			zoneOffset = (hr*60+mm)*60 + ss // offset is in seconds
    			switch sign[0] {
    			case '+':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/time/time.go

    	if t.Location() == UTC {
    		offsetMin = -1
    	} else {
    		_, offset := t.Zone()
    		if offset%60 != 0 {
    			version = timeBinaryVersionV2
    			offsetSec = int8(offset % 60)
    		}
    
    		offset /= 60
    		if offset < -32768 || offset == -1 || offset > 32767 {
    			return nil, errors.New("Time.MarshalBinary: unexpected zone offset")
    		}
    		offsetMin = int16(offset)
    	}
    
    	sec := t.sec()
    	nsec := t.nsec()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/internal/coverage/decodemeta/decodefile.go

    	}
    
    	// Read package offsets for good measure
    	r.pkgOffsets = make([]uint64, r.hdr.Entries)
    	for i := uint64(0); i < r.hdr.Entries; i++ {
    		if r.pkgOffsets[i], err = r.rdUint64(); err != nil {
    			return err
    		}
    		if r.pkgOffsets[i] > r.hdr.TotalLength {
    			return fmt.Errorf("insane pkg offset %d: %d > totlen %d",
    				i, r.pkgOffsets[i], r.hdr.TotalLength)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    	// Block 0x91, offset 0x39c
    	{value: 0x0010, lo: 0x80, hi: 0xb1},
    	{value: 0x0004, lo: 0xb2, hi: 0xbf},
    	// Block 0x92, offset 0x39e
    	{value: 0x0004, lo: 0x80, hi: 0x81},
    	{value: 0x0010, lo: 0x93, hi: 0xbf},
    	// Block 0x93, offset 0x3a0
    	{value: 0x0010, lo: 0x80, hi: 0xbd},
    	// Block 0x94, offset 0x3a1
    	{value: 0x0010, lo: 0x90, hi: 0xbf},
    	// Block 0x95, offset 0x3a2
    	{value: 0x0010, lo: 0x80, hi: 0x8f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
Back to top