Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Devoffset (0.32 sec)

  1. android/guava/src/com/google/common/collect/RegularImmutableMap.java

        private final transient int keyOffset;
        private final transient int size;
    
        EntrySet(
            ImmutableMap<K, V> map,
            @Nullable Object[] alternatingKeysAndValues,
            int keyOffset,
            int size) {
          this.map = map;
          this.alternatingKeysAndValues = alternatingKeysAndValues;
          this.keyOffset = keyOffset;
          this.size = size;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

                    assertEquals(1, list.getCurrentPageNumber());
                    assertEquals(1, list.getCurrentStartRecordNumber());
                    assertEquals(0, list.getOffset());
                    assertEquals(10, list.getPageSize());
                    assertEquals(0, list.getStart());
                    assertEquals("0", list.get(0).get(ID_FIELD));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. src/reflect/export_test.go

    	}
    	// Extract size information.
    	argSize = abid.stackCallArgsSize
    	retOffset = abid.retOffset
    	frametype = toType(ft)
    
    	// Expand stack pointer bitmap into byte-map.
    	for i := uint32(0); i < abid.stackPtrs.n; i++ {
    		stack = append(stack, abid.stackPtrs.data[i/8]>>(i%8)&1)
    	}
    
    	// Expand register pointer bitmaps into byte-maps.
    	bool2byte := func(b bool) byte {
    		if b {
    			return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/reflect/abi.go

    	// for the call. stackCallArgsSize is the amount of space
    	// reserved for arguments but not return values. retOffset
    	// is the offset at which return values begin, and
    	// spill is the size in bytes of additional space reserved
    	// to spill argument registers into in case of preemption in
    	// reflectcall's stack frame.
    	stackCallArgsSize, retOffset, spill uintptr
    
    	// stackPtrs is a bitmap that indicates whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/compress/flate/deflate.go

    				d.fastSkipHashing == skipNever && lookahead > prevLength && prevLength < d.lazy) {
    			if newLength, newOffset, ok := d.findMatch(d.index, d.chainHead-d.hashOffset, minMatchLength-1, lookahead); ok {
    				d.length = newLength
    				d.offset = newOffset
    			}
    		}
    		if d.fastSkipHashing != skipNever && d.length >= minMatchLength ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/syscall/syscall_plan9.go

    	}
    	return
    }
    
    // Underlying system call writes to newoffset via pointer.
    // Implemented in assembly to avoid allocation.
    func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string)
    
    func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
    	newoffset, e := seek(0, fd, offset, whence)
    
    	if newoffset == -1 {
    		err = NewError(e)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    	dstStackSize uintptr // Go stack space used
    	dstSpill     uintptr // Extra stack space for argument spill slots
    	dstRegisters int     // Go ABI int argument registers used
    
    	// retOffset is the offset of the uintptr-sized result in the Go
    	// frame.
    	retOffset uintptr
    }
    
    func (p *abiDesc) assignArg(t *_type) {
    	if t.Size_ > goarch.PtrSize {
    		// We don't support this right now. In
    		// stdcall/cdecl, 64-bit ints and doubles are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/utils.td

    def HasNonNegativeValues : Constraint<CPred<"TFL::HasNonNegativeValues($0)">>;
    
    // Utility function to get the offset between two dense attribute values.
    def GetOffSet : NativeCodeCall<"TFL::GetOffSet($0, $1)">;
    
    // Attribute Constraint that checks if the attribute value is zero.
    def ZeroIntAttr
      : AttrConstraint<CPred<"$_self.cast<::mlir::IntegerAttr>().getInt() == 0">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/utils.h

          values.begin(), values.end(),
          [](const APInt& element_value) { return element_value.isNegative(); });
    }
    
    // Utility function to get the offset between two dense attribute values.
    inline TypedAttr GetOffSet(Attribute begin, Attribute end) {
      auto begin_values = begin.cast<DenseElementsAttr>().getValues<int32_t>();
      auto end_values = end.cast<DenseElementsAttr>().getValues<int32_t>();
    
      SmallVector<int32_t> offsets;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

        // Invoke BatchNormInferenceOp
        ::mlir::FloatAttr epsilon = bn_op.getEpsilonAttr();
        ::mlir::Value batch_norm = rewriter.create<mhlo::BatchNormInferenceOp>(
            bn_op.getLoc(), inputs, bn_op.getScale(), bn_op.getOffset(), mean,
            variance, epsilon, rewriter.getI64IntegerAttr(feature_index));
    
        // Return normalized values, mean, variable.
        rewriter.replaceOp(bn_op, ::mlir::ValueRange{batch_norm, mean, variance});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top