Home
last modified time | relevance | path

Searched refs:targetOffset (Results 1 – 15 of 15) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dtyped-array-set.tq50 // 5. Let targetOffset be ? ToInteger(offset).
51 // 6. If targetOffset < 0, throw a RangeError exception.
53 let targetOffset: uintptr = 0;
57 targetOffset = ToUintPtr(offsetArg)
67 // If the offset argument is not provided then the targetOffset is 0.
92 attachedTargetAndLength, attachedSourceAndLength, targetOffset,
98 target, attachedTargetAndLength.length, overloadedArg, targetOffset,
115 targetOffset: uintptr,
123 // 6. If targetOffset is +∞, throw a RangeError exception.
126 // 7. If srcLength + targetOffset > targetLength, throw a RangeError
[all …]
/third_party/glslang/glslang/MachineIndependent/
DparseConst.cpp157 int targetOffset = index + c * matrixRows + r; in visitConstantUnion() local
160 leftUnionArray[targetOffset] = rightUnionArray[srcOffset]; in visitConstantUnion()
162 leftUnionArray[targetOffset].setDConst(1.0); in visitConstantUnion()
164 leftUnionArray[targetOffset].setDConst(0.0); in visitConstantUnion()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java656 public final void copyTo(byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyTo() argument
658 checkRange(targetOffset, targetOffset + numberToCopy, target.length); in copyTo()
660 copyToInternal(target, sourceOffset, targetOffset, numberToCopy); in copyTo()
669 byte[] target, int sourceOffset, int targetOffset, int numberToCopy); in copyToInternal() argument
1357 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
1361 System.arraycopy(bytes, sourceOffset, target, targetOffset, numberToCopy); in copyToInternal()
1594 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
1596 bytes, getOffsetIntoBytes() + sourceOffset, target, targetOffset, numberToCopy); in copyToInternal()
DUnsafeUtil.java242 static void copyMemory(byte[] src, long srcIndex, long targetOffset, long length) { in copyMemory() argument
243 MEMORY_ACCESSOR.copyMemory(src, srcIndex, targetOffset, length); in copyMemory()
613 public abstract void copyMemory(byte[] src, long srcIndex, long targetOffset, long length); in copyMemory() argument
698 public void copyMemory(byte[] src, long srcIndex, long targetOffset, long length) { in copyMemory() argument
699 unsafe.copyMemory(src, BYTE_ARRAY_BASE_OFFSET + srcIndex, null, targetOffset, length); in copyMemory()
806 public void copyMemory(byte[] src, long srcIndex, long targetOffset, long length) { in copyMemory() argument
926 public void copyMemory(byte[] src, long srcIndex, long targetOffset, long length) { in copyMemory() argument
DRopeByteString.java402 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
404 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy); in copyToInternal()
406 right.copyToInternal(target, sourceOffset - leftLength, targetOffset, numberToCopy); in copyToInternal()
409 left.copyToInternal(target, sourceOffset, targetOffset, leftLength); in copyToInternal()
410 right.copyToInternal(target, 0, targetOffset + leftLength, numberToCopy - leftLength); in copyToInternal()
DNioByteString.java110 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
113 slice.get(target, targetOffset, numberToCopy); in copyToInternal()
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetASCII.java68 int targetOffset = target.arrayOffset(); in decodeLoop() local
69 int targetIndex = oldTarget + targetOffset; in decodeLoop()
226 int targetOffset = target.arrayOffset(); in encodeLoop() local
227 int targetIndex = oldTarget + targetOffset; in encodeLoop()
/third_party/icu/icu4c/source/i18n/
Dunits_converter.cpp309 conversionRate.targetOffset = in loadConversionRate()
594 result -= conversionRate_.targetOffset; // Set the result to its index. in convert()
614 result += conversionRate_.targetOffset; in convertInverse()
625 conversionRate_.targetOffset; in getConversionInfo()
Dunits_converter.h112 double targetOffset = 0; member
/third_party/node/deps/icu-small/source/i18n/
Dunits_converter.cpp309 conversionRate.targetOffset = in loadConversionRate()
602 result -= conversionRate_.targetOffset; // Set the result to its index. in convert()
622 result += conversionRate_.targetOffset; in convertInverse()
633 conversionRate_.targetOffset; in getConversionInfo()
Dunits_converter.h120 double targetOffset = 0; member
/third_party/skia/third_party/externals/icu/source/i18n/
Dunits_converter.cpp308 conversionRate.targetOffset = in loadConversionRate()
587 result -= conversionRate_.targetOffset; // Set the result to its index. in convert()
613 result += conversionRate_.targetOffset; in convertInverse()
624 conversionRate_.targetOffset; in getConversionInfo()
Dunits_converter.h106 double targetOffset = 0; member
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/
DConversionRates.java72 BigDecimal targetOffset = this.mapToConversionRate.get(targetSimpleIdentifier).getOffset(); in getOffset() local
74 .subtract(targetOffset) in getOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp282 RAW_METHOD_DUMP(OS, targetOffset); in dump()