/external/opencv3/3rdparty/zlib/ |
compress.c | 13 parameter has the same meaning as in deflateInit. sourceLen is the byte 15 destination buffer, which must be at least 0.1% larger than sourceLen plus 22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) 26 uLong sourceLen; 33 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 62 int ZEXPORT compress (dest, destLen, source, sourceLen) 66 uLong sourceLen; 68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); 75 uLong ZEXPORT compressBound (sourceLen) [all...] |
uncompr.c | 12 Decompresses the source buffer into the destination buffer. sourceLen is 24 int ZEXPORT uncompress (dest, destLen, source, sourceLen) 28 uLong sourceLen; 34 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
/external/zlib/src/ |
compress.c | 13 parameter has the same meaning as in deflateInit. sourceLen is the byte 15 destination buffer, which must be at least 0.1% larger than sourceLen plus 22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) 26 uLong sourceLen; 33 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 62 int ZEXPORT compress (dest, destLen, source, sourceLen) 66 uLong sourceLen; 68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); 75 uLong ZEXPORT compressBound (sourceLen) [all...] |
uncompr.c | 12 Decompresses the source buffer into the destination buffer. sourceLen is 24 int ZEXPORT uncompress (dest, destLen, source, sourceLen) 28 uLong sourceLen; 34 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
/external/pdfium/third_party/zlib_v128/ |
compress.c | 13 parameter has the same meaning as in deflateInit. sourceLen is the byte 15 destination buffer, which must be at least 0.1% larger than sourceLen plus 26 uLong sourceLen, 33 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 66 uLong sourceLen) 68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); 76 uLong sourceLen) 78 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) [all...] |
uncompr.c | 12 Decompresses the source buffer into the destination buffer. sourceLen is 28 uLong sourceLen) 34 stream.avail_in = (uInt)sourceLen; 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
/external/icu/icu4c/source/test/perf/strsrchperf/ |
strsrchperf.h | 34 StringSearchPerfFunction(StrSrchFn func, UStringSearch* search, const UChar* source,int32_t sourceLen, const UChar* pattern, int32_t patternLen) { 37 srcLen = sourceLen; 61 void ICUForwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) { 70 void ICUBackwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) {
|
/external/icu/icu4c/source/test/cintltst/ |
ncnvfbts.h | 23 static UBool testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, 25 static UBool testConvertToUnicode( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen,
|
nccbtst.h | 45 UBool testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, 50 UBool testConvertToUnicode( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen, 54 UBool testConvertFromUnicodeWithContext(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, 58 UBool testConvertToUnicodeWithContext( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen,
|
/external/icu/icu4c/source/samples/cal/ |
uprint.c | 31 int32_t sourceLen; 40 sourceLen = u_strlen(s); 42 mySourceEnd = mySource + sourceLen;
|
/external/icu/icu4c/source/samples/date/ |
uprint.c | 32 int32_t sourceLen; 41 sourceLen = u_strlen(s); 43 mySourceEnd = mySource + sourceLen;
|
/external/icu/icu4c/source/test/perf/convperf/ |
convperf.h | 33 ICUToUnicodePerfFunction(const char* name, const char* source, int32_t sourceLen, UErrorCode& status){ 36 srcLen = sourceLen; 79 ICUFromUnicodePerfFunction(const char* name, const UChar* source, int32_t sourceLen, UErrorCode& status){ 82 srcLen = sourceLen; 280 WinIMultiLanguageToUnicodePerfFunction(const char* name,char* source, UINT sourceLen, UErrorCode& status){ 310 srcLen = sourceLen; 336 WinIMultiLanguageFromUnicodePerfFunction(const char* name,WCHAR* source, UINT sourceLen, UErrorCode& status){ 366 srcLen = sourceLen; 392 WinIMultiLanguage2ToUnicodePerfFunction(const char* name,char* source, UINT sourceLen, UErrorCode& status){ 406 srcLen = sourceLen; [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
LevenshteinSuggestionFormatter.java | 56 int sourceLen = 0; 59 sourceLen = queryTokens[thisMatch].length(); 61 applySuggestedTextStyle(str, t.mStart + sourceLen, t.mEnd); 62 applyQueryTextStyle(str, t.mStart, t.mStart + sourceLen);
|
/external/zlib/src/contrib/puff/ |
pufftest.c | 95 unsigned long sourcelen, destlen; local 136 sourcelen = (unsigned long)len; 137 ret = puff(NIL, &destlen, source + skip, &sourcelen); 142 if (sourcelen < len) fprintf(stderr, "%lu compressed bytes unused\n", 143 len - sourcelen); 156 puff(dest, &destlen, source + skip, &sourcelen);
|
README | 35 unsigned long *sourcelen); /* amount of input available */ 58 in *sourcelen bytes, puff() will return an error without reading at or past 61 On return, *sourcelen is updated to the amount of input data consumed, and
|
puff.h | 35 unsigned long *sourcelen); /* amount of input available */
|
/external/icu/icu4c/source/tools/ctestfw/unicode/ |
utimer.h | 37 * int32_t sourceLen; 43 * unorm_normalize(parameters->source, parameters->sourceLen, parameters->mode, 0, parameters->target, parameters->targetLen, &error); 126 * void perf(UTimer* timer, UChar* source, int32_t sourceLen, UChar* target, int32_t targetLen, int32_t loopCount,UNormalizationMode mode, UErrorCode* error){ 129 * unorm_normalize(source,sourceLen,target, targetLen,mode,error); 141 * perf(timer1, source,sourceLen, target, targetLen,loopCount,UNORM_NFD,&error); 145 * perf(timer2,source,sourceLen,target,targetLen,loopCount,UNORM_NFC,&error); 147 * perf(timer3, source, sourceLen, target,targetLen, loopCount, UNORM_FCD,&error);
|
/external/icu/icu4c/source/test/perf/ustrperf/ |
stringperf.h | 181 StringPerfFunction(ICUStringPerfFn func, UChar* source, int32_t sourceLen, UBool uselen) 190 src_ = new UChar[sourceLen]; 191 memcpy(src_, source, sourceLen * U_SIZEOF_UCHAR); 192 srcLen_ = sourceLen; 203 StringPerfFunction(StdStringPerfFn func, UChar* source, int32_t sourceLen, UBool uselen) 212 src_ = new UChar[sourceLen]; 213 memcpy(src_, source, sourceLen * U_SIZEOF_UCHAR); 214 srcLen_ = sourceLen;
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
LevenshteinDistance.java | 67 final int sourceLen = src.length; 71 for (int s = 1; s <= sourceLen; ++s) { 95 return distTab[sourceLen][targetLen];
|
/external/icu/icu4c/source/test/perf/normperf/ |
normperf.h | 87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) { 94 srcLen = sourceLen; 157 NormPerfFunction(NormFn func, int32_t opts, const UChar* source,int32_t sourceLen,UBool _uselen) : options(opts) { 162 destLen = sourceLen*3; 165 srcLen = sourceLen;
|
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
TestConversion.java | 390 int sourceLen = cc.unicode.length(); 400 currentSourceLimit = Math.min(step, sourceLen); 403 currentSourceLimit = sourceLen; 413 cr = encoder.encode(source, target, currentSourceLimit == sourceLen); 416 if (currentSourceLimit == sourceLen) { 436 currentSourceLimit = Math.min(currentSourceLimit + step, sourceLen); 717 int sourceLen; 719 sourceLen = cc.bytes.limit(); 734 source.limit((iStep <= sourceLen) ? iStep : sourceLen); [all...] |
/external/zlib/src/contrib/pascal/ |
zlibpas.pas | 122 function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt; 145 const source: PChar; sourceLen: LongInt): Integer; 147 const source: PChar; sourceLen: LongInt; 149 function compressBound(sourceLen: LongInt): LongInt; 151 const source: PChar; sourceLen: LongInt): Integer;
|
/external/bzip2/ |
bzlib.h | 208 unsigned int sourceLen, 218 unsigned int sourceLen,
|
/external/icu/icu4c/source/extra/uconv/ |
uwmsg.c | 34 int32_t sourceLen, 50 mySourceEnd = mySource + sourceLen;
|
/external/libweave/third_party/modp_b64/modp_b64/ |
modp_b64.h | 49 * int len = modp_b64_encode(dest, src, sourcelen); 77 * int len = modp_b64_decode(dest, src, sourcelen);
|