Home
last modified time | relevance | path

Searched refs:copyLength (Results 1 – 20 of 20) sorted by relevance

/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DSegmentedGrowableMemoryByteArray.java78 int copyLength = Math.min(length - copyCount, buffer.length - bufferOffset); in internalPut() local
79 System.arraycopy(b, offset, buffer, bufferOffset, copyLength); in internalPut()
80 index += copyLength; in internalPut()
81 offset += copyLength; in internalPut()
82 copyCount += copyLength; in internalPut()
102 int copyLength = Math.min(length - copyCount, buffer.length - bufferOffset); in internalGet() local
103 System.arraycopy(buffer, bufferOffset, b, offset, copyLength); in internalGet()
104 index += copyLength; in internalGet()
105 offset += copyLength; in internalGet()
106 copyCount += copyLength; in internalGet()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DSegmentedGrowableMemoryByteArray.java78 int copyLength = Math.min(length - copyCount, buffer.length - bufferOffset); in internalPut() local
79 System.arraycopy(b, offset, buffer, bufferOffset, copyLength); in internalPut()
80 index += copyLength; in internalPut()
81 offset += copyLength; in internalPut()
82 copyCount += copyLength; in internalPut()
102 int copyLength = Math.min(length - copyCount, buffer.length - bufferOffset); in internalGet() local
103 System.arraycopy(buffer, bufferOffset, b, offset, copyLength); in internalGet()
104 index += copyLength; in internalGet()
105 offset += copyLength; in internalGet()
106 copyCount += copyLength; in internalGet()
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
DDecode.cs725 …state.copyLength = Org.Brotli.Dec.Prefix.CopyLengthOffset[copyCode] + Org.Brotli.Dec.BitReader.Rea… in Decompress()
804 …s[state.distContextMap[state.distContextMapSlice + (state.copyLength > 4 ? 3 : state.copyLength - … in Decompress()
842 if (state.copyLength > state.metaBlockLength) in Decompress()
857 int copyLength = state.copyLength - state.j; in Decompress()
858 if ((src + copyLength < ringBufferMask) && (dst + copyLength < ringBufferMask)) in Decompress()
860 for (int k = 0; k < copyLength; ++k) in Decompress()
864 state.j += copyLength; in Decompress()
865 state.metaBlockLength -= copyLength; in Decompress()
866 state.pos += copyLength; in Decompress()
870 for (; state.j < state.copyLength; ) in Decompress()
[all …]
DState.cs86 internal int copyLength; field in Org.Brotli.Dec.State
/third_party/skia/third_party/externals/brotli/js/
Ddecode.js998 …s.copyLength = copyLengthOffset + ((extraBits <= 16) ? readFewBits(s, extraBits) : readManyBits(s,…
1112 if (s.copyLength > s.metaBlockLength) {
1120 var /** number */ copyLength = s.copyLength - s.j;
1121 var /** number */ srcEnd = src + copyLength;
1122 var /** number */ dstEnd = dst + copyLength;
1124 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) {
1125 for (var /** number */ k = 0; k < copyLength; k += 4) {
1134 s.j += copyLength;
1135 s.metaBlockLength -= copyLength;
1136 s.pos += copyLength;
[all …]
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
DDecode.java963 initializeCompoundDictionaryCopy(s, -address - 1, s.copyLength); in doUseDictionary()
968 int wordLength = s.copyLength; in doUseDictionary()
1136 s.copyLength = copyLengthOffset + BitReader.readBits(s, extraBits); in decompress()
1243 if (s.copyLength > s.metaBlockLength) { in decompress()
1252 int copyLength = s.copyLength - s.j; in decompress() local
1253 int srcEnd = src + copyLength; in decompress()
1254 int dstEnd = dst + copyLength; in decompress()
1256 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) { in decompress()
1257 for (int k = 0; k < copyLength; k += 4) { in decompress()
1266 s.j += copyLength; in decompress()
[all …]
DState.java65 int copyLength; field in State
/third_party/skia/third_party/externals/icu/source/i18n/
Duregex.cpp697 int32_t copyLength = fullLength; in uregex_group() local
698 if (copyLength < destCapacity) { in uregex_group()
699 dest[copyLength] = 0; in uregex_group()
700 } else if (copyLength == destCapacity) { in uregex_group()
703 copyLength = destCapacity; in uregex_group()
710 if (copyLength > 0) { in uregex_group()
711 u_memcpy(dest, &regexp->fText[startIx], copyLength); in uregex_group()
/third_party/node/deps/icu-small/source/i18n/
Duregex.cpp697 int32_t copyLength = fullLength; in uregex_group() local
698 if (copyLength < destCapacity) { in uregex_group()
699 dest[copyLength] = 0; in uregex_group()
700 } else if (copyLength == destCapacity) { in uregex_group()
703 copyLength = destCapacity; in uregex_group()
710 if (copyLength > 0) { in uregex_group()
711 u_memcpy(dest, &regexp->fText[startIx], copyLength); in uregex_group()
/third_party/icu/icu4c/source/i18n/
Duregex.cpp697 int32_t copyLength = fullLength; in uregex_group() local
698 if (copyLength < destCapacity) { in uregex_group()
699 dest[copyLength] = 0; in uregex_group()
700 } else if (copyLength == destCapacity) { in uregex_group()
703 copyLength = destCapacity; in uregex_group()
710 if (copyLength > 0) { in uregex_group()
711 u_memcpy(dest, &regexp->fText[startIx], copyLength); in uregex_group()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Duregex.cpp697 int32_t copyLength = fullLength; in uregex_group() local
698 if (copyLength < destCapacity) { in uregex_group()
699 dest[copyLength] = 0; in uregex_group()
700 } else if (copyLength == destCapacity) { in uregex_group()
703 copyLength = destCapacity; in uregex_group()
710 if (copyLength > 0) { in uregex_group()
711 u_memcpy(dest, &regexp->fText[startIx], copyLength); in uregex_group()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dlocdispnames.cpp334 int32_t copyLength=uprv_min(length, destCapacity); in _getStringOrCopyKey() local
335 if(copyLength>0 && s != NULL) { in _getStringOrCopyKey()
336 u_memcpy(dest, s, copyLength); in _getStringOrCopyKey()
Duresbund.cpp2831 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local
2832 if(copyLength>0) { in ures_getFunctionalEquivalent()
2833 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
/third_party/skia/third_party/externals/icu/source/common/
Dlocdispnames.cpp334 int32_t copyLength=uprv_min(length, destCapacity); in _getStringOrCopyKey() local
335 if(copyLength>0 && s != NULL) { in _getStringOrCopyKey()
336 u_memcpy(dest, s, copyLength); in _getStringOrCopyKey()
Duresbund.cpp2907 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local
2908 if(copyLength>0) { in ures_getFunctionalEquivalent()
2909 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
/third_party/icu/icu4c/source/common/
Dlocdispnames.cpp334 int32_t copyLength=uprv_min(length, destCapacity); in _getStringOrCopyKey() local
335 if(copyLength>0 && s != NULL) { in _getStringOrCopyKey()
336 u_memcpy(dest, s, copyLength); in _getStringOrCopyKey()
Duresbund.cpp2907 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local
2908 if(copyLength>0) { in ures_getFunctionalEquivalent()
2909 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
/third_party/node/deps/icu-small/source/common/
Dlocdispnames.cpp346 int32_t copyLength=uprv_min(length, destCapacity); in _getStringOrCopyKey() local
347 if(copyLength>0 && s != NULL) { in _getStringOrCopyKey()
348 u_memcpy(dest, s, copyLength); in _getStringOrCopyKey()
Duresbund.cpp3095 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local
3096 if(copyLength>0) { in ures_getFunctionalEquivalent()
3097 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
DFrameCapture.cpp484 size_t copyLength = 0; in WriteStringPointerParamReplay() local
490 copyLength = str.length() - i; in WriteStringPointerParamReplay()
495 copyLength = kStringLengthLimit; in WriteStringPointerParamReplay()
499 header << " R\"(" << str.substr(i, copyLength) << ")\"" << separator << "\n"; in WriteStringPointerParamReplay()