Home
last modified time | relevance | path

Searched refs:countBytes (Results 1 – 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dtyped-array-slice.tq33 const countBytes: uintptr = destInfo.CalculateByteLength(count)
39 dcheck(countBytes <= dest.byte_length);
40 dcheck(countBytes <= src.byte_length - startOffset);
44 typed_array::CallCRelaxedMemmove(dest.data_ptr, srcPtr, countBytes);
46 typed_array::CallCMemmove(dest.data_ptr, srcPtr, countBytes);
Dtyped-array-set.tq246 const countBytes: uintptr =
262 dcheck(countBytes <= targetByteLength - startOffset);
263 dcheck(countBytes <= sourceByteLength);
279 CallCRelaxedMemmove(dstPtr, source.data_ptr, countBytes);
281 CallCMemmove(dstPtr, source.data_ptr, countBytes);
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationWeights.java240 private int countBytes(int idx) { in countBytes() method in CollationWeights
266 … weight = setWeightByte(weight, length, minBytes[length] + offset % countBytes(length)); in incWeightByOffset()
267 offset /= countBytes(length); in incWeightByOffset()
278 range.count*=countBytes(length); in lengthenRange()
496 int nextCountBytes = countBytes(minLength + 1); in allocWeightsInMinLengthRanges()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
DCollationWeights.java242 private int countBytes(int idx) { in countBytes() method in CollationWeights
268 … weight = setWeightByte(weight, length, minBytes[length] + offset % countBytes(length)); in incWeightByOffset()
269 offset /= countBytes(length); in incWeightByOffset()
280 range.count*=countBytes(length); in lengthenRange()
498 int nextCountBytes = countBytes(minLength + 1); in allocWeightsInMinLengthRanges()
/third_party/icu/icu4c/source/i18n/
Dcollationweights.cpp177 weight = setWeightByte(weight, length, minBytes[length] + offset % countBytes(length)); in incWeightByOffset()
178 offset /= countBytes(length); in incWeightByOffset()
190 range.count*=countBytes(length); in lengthenRange()
435 int32_t nextCountBytes = countBytes(minLength + 1); in allocWeightsInMinLengthRanges()
Dcollationweights.h86 inline int32_t countBytes(int32_t idx) const { in countBytes() function
/third_party/node/deps/icu-small/source/i18n/
Dcollationweights.cpp177 weight = setWeightByte(weight, length, minBytes[length] + offset % countBytes(length)); in incWeightByOffset()
178 offset /= countBytes(length); in incWeightByOffset()
190 range.count*=countBytes(length); in lengthenRange()
435 int32_t nextCountBytes = countBytes(minLength + 1); in allocWeightsInMinLengthRanges()
Dcollationweights.h86 inline int32_t countBytes(int32_t idx) const { in countBytes() function
/third_party/skia/third_party/externals/icu/source/i18n/
Dcollationweights.cpp177 weight = setWeightByte(weight, length, minBytes[length] + offset % countBytes(length)); in incWeightByOffset()
178 offset /= countBytes(length); in incWeightByOffset()
190 range.count*=countBytes(length); in lengthenRange()
435 int32_t nextCountBytes = countBytes(minLength + 1); in allocWeightsInMinLengthRanges()
Dcollationweights.h86 inline int32_t countBytes(int32_t idx) const { in countBytes() function
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetUTF8.java77 bytesExpected = UTF8.countBytes(ch); in decodeLoop()
166 bytesExpected = UTF8.countBytes(ch); in decodeLoop()
199 bytesExpected = UTF8.countBytes(ch); in decodeLoop()
292 bytesExpected = UTF8.countBytes(ch); in decodeLoop()
DUTF8.java34 static int countBytes(byte leadByte) { in countBytes() method in UTF8