Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,148 for offset_ (0.22 sec)

  1. src/debug/dwarf/unit.go

    	"strconv"
    )
    
    // DWARF debug info is split into a sequence of compilation units.
    // Each unit has its own abbreviation table and address size.
    
    type unit struct {
    	base   Offset // byte offset of header within the aggregate info
    	off    Offset // byte offset of data within the aggregate info
    	data   []byte
    	atable abbrevTable
    	asize  int
    	vers   int
    	utype  uint8 // DWARF 5 unit type
    	is64   bool  // True for 64-bit DWARF format
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/tables11.0.0.go

    	// Block 0x90, offset 0x38c
    	{value: 0x0010, lo: 0x80, hi: 0xb1},
    	{value: 0x0004, lo: 0xb2, hi: 0xbf},
    	// Block 0x91, offset 0x38e
    	{value: 0x0004, lo: 0x80, hi: 0x81},
    	{value: 0x0010, lo: 0x93, hi: 0xbf},
    	// Block 0x92, offset 0x390
    	{value: 0x0010, lo: 0x80, hi: 0xbd},
    	// Block 0x93, offset 0x391
    	{value: 0x0010, lo: 0x90, hi: 0xbf},
    	// Block 0x94, offset 0x392
    	{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
    - 97.5K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/ipallocator_test.go

    			name:    "IPv4 offset 1",
    			address: netip.MustParseAddr("192.168.0.0"),
    			offset:  1,
    			want:    netip.MustParseAddr("192.168.0.1"),
    		},
    		{
    			name:    "IPv4 offset 1 not nibble boundary",
    			address: netip.MustParseAddr("192.168.0.11"),
    			offset:  1,
    			want:    netip.MustParseAddr("192.168.0.12"),
    		},
    		{
    			name:    "IPv6 offset 1",
    			address: netip.MustParseAddr("fd00:1:2:3::"),
    			offset:  1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/bitmap.go

    }
    
    // contains returns true and the offset if the ip is in the range, and false
    // and nil otherwise. The first and last addresses of the CIDR are omitted.
    func (r *Range) contains(ip net.IP) (bool, int) {
    	if !r.net.Contains(ip) {
    		return false, 0
    	}
    
    	offset := calculateIPOffset(r.base, ip)
    	if offset < 0 || offset >= r.max {
    		return false, 0
    	}
    	return true, offset
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.go

    	nn := len(p)
    	if h.offset > 0 {
    		n := copy(h.buffer[h.offset:], p)
    		if h.offset+n < TagSize {
    			h.offset += n
    			return nn, nil
    		}
    		p = p[n:]
    		h.offset = 0
    		update(&h.macState, h.buffer[:])
    	}
    	if n := len(p) - (len(p) % TagSize); n > 0 {
    		update(&h.macState, p[:n])
    		p = p[n:]
    	}
    	if len(p) > 0 {
    		h.offset += copy(h.buffer[h.offset:], p)
    	}
    	return nn, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/internal/coverage/slicereader/slicereader.go

    	return amt, nil
    }
    
    func (r *Reader) Seek(offset int64, whence int) (ret int64, err error) {
    	switch whence {
    	case io.SeekStart:
    		if offset < 0 || offset > int64(len(r.b)) {
    			return 0, fmt.Errorf("invalid seek: new offset %d (out of range [0 %d]", offset, len(r.b))
    		}
    		r.off = offset
    		return offset, nil
    	case io.SeekCurrent:
    		newoff := r.off + offset
    		if newoff < 0 || newoff > int64(len(r.b)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/testing/fstest/mapfs.go

    	f.offset += int64(n)
    	return n, nil
    }
    
    func (f *openMapFile) Seek(offset int64, whence int) (int64, error) {
    	switch whence {
    	case 0:
    		// offset += 0
    	case 1:
    		offset += f.offset
    	case 2:
    		offset += int64(len(f.f.Data))
    	}
    	if offset < 0 || offset > int64(len(f.f.Data)) {
    		return 0, &fs.PathError{Op: "seek", Path: f.path, Err: fs.ErrInvalid}
    	}
    	f.offset = offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go

    	// Block 0x28, offset 0xa00
    	0xa00: 0x000c, 0xa01: 0x000c,
    	0xa3b: 0x000c,
    	0xa3c: 0x000c,
    	// Block 0x29, offset 0xa40
    	0xa41: 0x000c, 0xa42: 0x000c, 0xa43: 0x000c, 0xa44: 0x000c,
    	0xa4d: 0x000c,
    	0xa62: 0x000c, 0xa63: 0x000c,
    	// Block 0x2a, offset 0xa80
    	0xa81: 0x000c,
    	// Block 0x2b, offset 0xac0
    	0xaca: 0x000c,
    	0xad2: 0x000c, 0xad3: 0x000c, 0xad4: 0x000c, 0xad6: 0x000c,
    	// Block 0x2c, offset 0xb00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 120.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    	// Block 0x10, offset 0x400
    	0x432: 0xbb,
    	// Block 0x11, offset 0x440
    	0x445: 0xbc, 0x446: 0xbd, 0x447: 0xbe,
    	0x449: 0xbf,
    	// Block 0x12, offset 0x480
    	0x480: 0xc0, 0x484: 0xba,
    	0x48b: 0xc1,
    	0x4a3: 0xc2, 0x4a5: 0xc3,
    	// Block 0x13, offset 0x4c0
    	0x4c8: 0xc4,
    	// Block 0x14, offset 0x500
    	0x520: 0x25, 0x521: 0x26, 0x522: 0x27, 0x523: 0x28, 0x524: 0x29, 0x525: 0x2a, 0x526: 0x2b, 0x527: 0x2c,
    	0x528: 0x2d,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go

    	// Block 0x28, offset 0xa00
    	0xa00: 0x000c, 0xa01: 0x000c,
    	0xa3b: 0x000c,
    	0xa3c: 0x000c,
    	// Block 0x29, offset 0xa40
    	0xa41: 0x000c, 0xa42: 0x000c, 0xa43: 0x000c, 0xa44: 0x000c,
    	0xa4d: 0x000c,
    	0xa62: 0x000c, 0xa63: 0x000c,
    	// Block 0x2a, offset 0xa80
    	0xa81: 0x000c,
    	// Block 0x2b, offset 0xac0
    	0xaca: 0x000c,
    	0xad2: 0x000c, 0xad3: 0x000c, 0xad4: 0x000c, 0xad6: 0x000c,
    	// Block 0x2c, offset 0xb00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 127.4K bytes
    - Viewed (0)
Back to top