Searched refs:countBytes (Results 1 – 12 of 12) sorted by relevance
/third_party/node/deps/v8/src/builtins/ |
D | typed-array-slice.tq | 33 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);
|
D | typed-array-set.tq | 246 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/ |
D | CollationWeights.java | 240 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/ |
D | CollationWeights.java | 242 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/ |
D | collationweights.cpp | 177 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()
|
D | collationweights.h | 86 inline int32_t countBytes(int32_t idx) const { in countBytes() function
|
/third_party/node/deps/icu-small/source/i18n/ |
D | collationweights.cpp | 177 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()
|
D | collationweights.h | 86 inline int32_t countBytes(int32_t idx) const { in countBytes() function
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | collationweights.cpp | 177 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()
|
D | collationweights.h | 86 inline int32_t countBytes(int32_t idx) const { in countBytes() function
|
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetUTF8.java | 77 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()
|
D | UTF8.java | 34 static int countBytes(byte leadByte) { in countBytes() method in UTF8
|