Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 523 for offset_ (0.13 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    			return fmt.Sprintf("RET%s #%d", op[3:], mem.Offset)
    		}
    
    		// Check for PC-relative load.
    		if mem.Base == PC && mem.Sign == 0 && mem.Mode == AddrOffset && text != nil {
    			addr := uint32(pc) + 8 + uint32(mem.Offset)
    			buf := make([]byte, 8)
    			switch inst.Op &^ 15 {
    			case LDRB_EQ, LDRSB_EQ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/VfsRelativePath.java

                    return i;
                }
            }
            return absolutePath.length();
        }
    
        private VfsRelativePath(String absolutePath, int offset) {
            this.absolutePath = absolutePath;
            this.offset = offset;
        }
    
        /**
         * Returns a new relative path starting from the child.
         *
         * E.g.
         *   (some/path, some) -> path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. src/embed/embed.go

    		return 0, &fs.PathError{Op: "read", Path: f.f.name, Err: fs.ErrInvalid}
    	}
    	n := copy(b, f.f.data[f.offset:])
    	f.offset += int64(n)
    	return n, nil
    }
    
    func (f *openFile) 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)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

            private int startPosition;
    
            private int pageSize;
    
            private int offset;
    
            TestSearchRequestParams(int startPosition, int pageSize, int offset) {
                this.startPosition = startPosition;
                this.pageSize = pageSize;
                this.offset = offset;
            }
    
            @Override
            public String getQuery() {
                return null;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/reflect/abi.go

    		}
    		a.steps = append(a.steps, abiStep{
    			kind:   kind,
    			offset: offset + uintptr(i)*size,
    			size:   size,
    			ireg:   a.iregs,
    		})
    		a.iregs++
    	}
    	return true
    }
    
    // assignFloatN assigns n values to registers, each "size" bytes large,
    // from the data at [offset, offset+n*size) in memory. Each value at
    // [offset+i*size, offset+(i+1)*size) for i < n is assigned to the
    // next n floating-point registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/runtime/runtime1.go

    }
    
    // reflectlite_resolveNameOff resolves a name offset from a base pointer.
    //
    //go:linkname reflectlite_resolveNameOff internal/reflectlite.resolveNameOff
    func reflectlite_resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer {
    	return unsafe.Pointer(resolveNameOff(ptrInModule, nameOff(off)).Bytes)
    }
    
    // reflectlite_resolveTypeOff resolves an *rtype offset from a base type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/abiutils_test.go

            IN 19: R{ } offset: 0 typ: complex128
            IN 20: R{ } offset: 16 typ: complex64
            IN 21: R{ I8 } spilloffset: 128 typ: int8
            IN 22: R{ } offset: 24 typ: int16
            IN 23: R{ } offset: 28 typ: int32
            IN 24: R{ } offset: 32 typ: int64
            IN 25: R{ } offset: 40 typ: int8
            IN 26: R{ } offset: 42 typ: int16
            IN 27: R{ } offset: 44 typ: int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. src/internal/bytealg/index_ppc64x.s

    	VSLDOI $8, V9, V9, V9      // Set up for VSLO
    	VSLO   ONES, V9, SEPMASK   // Mask for separator len(sep) < 16
    
    loadge16:
    	ANDCC $15, R5, R9 // Find byte offset of sep
    	ADD   R9, R6, R10 // Add sep len
    	CMP   R10, $16    // Check if sep len+offset > 16
    	BGT   sepcross16  // Sep crosses 16 byte boundary
    
    	RLDICR $0, R5, $59, R8 // Adjust addr to 16 byte container
    	VLOADSWAP(R8, R0, V0, V0) // Load 16 bytes @R8 into V0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
Back to top