/external/brotli/csharp/org/brotli/dec/ |
D | Decode.cs | 725 …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 …]
|
D | State.cs | 86 internal int copyLength; field in Org.Brotli.Dec.State
|
/external/brotli/js/ |
D | decode.js | 998 …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 …]
|
/external/brotli/java/org/brotli/dec/ |
D | Decode.java | 963 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 …]
|
D | State.java | 65 int copyLength; field in State
|
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/util/ |
D | NalUnitUtil.java | 167 int copyLength = nextEscapePosition - escapedPosition; in unescapeStream() local 168 System.arraycopy(data, escapedPosition, data, unescapedPosition, copyLength); in unescapeStream() 169 unescapedPosition += copyLength; in unescapeStream() 172 escapedPosition += copyLength + 3; in unescapeStream()
|
/external/guava/guava/src/com/google/common/net/ |
D | InetAddresses.java | 1016 int copyLength = addressBytes.length - srcPos; in fromBigInteger() local 1017 int destPos = numBytes - copyLength; in fromBigInteger() 1030 System.arraycopy(addressBytes, srcPos, targetCopyArray, destPos, copyLength); in fromBigInteger()
|
/external/guava/android/guava/src/com/google/common/net/ |
D | InetAddresses.java | 1021 int copyLength = addressBytes.length - srcPos; in fromBigInteger() local 1022 int destPos = numBytes - copyLength; in fromBigInteger() 1035 System.arraycopy(addressBytes, srcPos, targetCopyArray, destPos, copyLength); in fromBigInteger()
|
/external/icu/icu4c/source/i18n/ |
D | uregex.cpp | 697 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, ®exp->fText[startIx], copyLength); in uregex_group()
|
/external/icu/icu4c/source/common/ |
D | locdispnames.cpp | 334 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()
|
D | uresbund.cpp | 2896 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local 2897 if(copyLength>0) { in ures_getFunctionalEquivalent() 2898 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
|
/external/angle/src/libANGLE/capture/ |
D | FrameCapture.cpp | 440 size_t copyLength = 0; in WriteStringPointerParamReplay() local 446 copyLength = str.length() - i; in WriteStringPointerParamReplay() 451 copyLength = kStringLengthLimit; in WriteStringPointerParamReplay() 455 header << " R\"(" << str.substr(i, copyLength) << ")\"" << separator << "\n"; in WriteStringPointerParamReplay()
|