/external/qemu/distrib/zlib-1.2.3/ |
H A D | 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...] |
H A D | uncompr.c | 12 Decompresses the source buffer into the destination buffer. sourceLen is 26 int ZEXPORT uncompress (dest, destLen, source, sourceLen) 30 uLong sourceLen; 36 stream.avail_in = (uInt)sourceLen; 38 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
H A D | zlib.h | 645 uLong sourceLen)); 648 deflation of sourceLen bytes. It must be called after deflateInit() 1010 const Bytef *source, uLong sourceLen)); 1012 Compresses the source buffer into the destination buffer. sourceLen is 1015 by compressBound(sourceLen). Upon exit, destLen is the actual size of the 1025 const Bytef *source, uLong sourceLen, 1029 parameter has the same meaning as in deflateInit. sourceLen is the byte 1032 compressBound(sourceLen). Upon exit, destLen is the actual size of the 1040 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); 1043 compress() or compress2() on sourceLen byte [all...] |
/external/zlib/ |
H A D | 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...] |
H A D | uncompr.c | 12 Decompresses the source buffer into the destination buffer. sourceLen is 26 int ZEXPORT uncompress (dest, destLen, source, sourceLen) 30 uLong sourceLen; 36 stream.avail_in = (uInt)sourceLen; 38 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
H A D | zlib.h | 645 uLong sourceLen)); 648 deflation of sourceLen bytes. It must be called after deflateInit() 1010 const Bytef *source, uLong sourceLen)); 1012 Compresses the source buffer into the destination buffer. sourceLen is 1015 by compressBound(sourceLen). Upon exit, destLen is the actual size of the 1025 const Bytef *source, uLong sourceLen, 1029 parameter has the same meaning as in deflateInit. sourceLen is the byte 1032 compressBound(sourceLen). Upon exit, destLen is the actual size of the 1040 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); 1043 compress() or compress2() on sourceLen byte [all...] |
/external/icu4c/samples/cal/ |
H A D | uprint.c | 31 int32_t sourceLen; local 40 sourceLen = u_strlen(s); 42 mySourceEnd = mySource + sourceLen;
|
/external/icu4c/samples/date/ |
H A D | uprint.c | 32 int32_t sourceLen; local 41 sourceLen = u_strlen(s); 43 mySourceEnd = mySource + sourceLen;
|
/external/icu4c/test/perf/strsrchperf/ |
H A D | strsrchperf.h | 56 StringSearchPerfFunction(StrSrchFn func, BoyerMooreSearch *search, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen) { argument 59 srcLen = sourceLen; 65 StringSearchPerfFunction(StrSrchFn func, UStringSearch* search, const UChar* source,int32_t sourceLen, const UChar* pattern, int32_t patternLen) { argument 68 srcLen = sourceLen; 101 void ICUForwardSearch(BoyerMooreSearch *bms, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen, UErrorCode * /*status*/) { argument 109 void ICUBackwardSearch(BoyerMooreSearch *bms, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen, UErrorCode * /*status*/) { argument 118 void ICUForwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) { argument 127 void ICUBackwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) { argument
|
/external/icu4c/test/cintltst/ |
H A D | ncnvfbts.h | 23 static UBool testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen,
|
H A D | nccbtst.h | 45 UBool testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, 54 UBool testConvertFromUnicodeWithContext(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen,
|
H A D | ncnvtst.c | 42 static UBool convertFromU( const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, 44 static UBool convertToU( const uint8_t *source, int sourceLen, const UChar *expect, int expectLen, 47 static UBool testConvertFromU( const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, 995 static UBool convertFromU( const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, argument 1024 sourceLimit=(UChar*)src+(sourceLen); 1043 sourceLen, targ-buffer); 1084 static UBool convertToU( const uint8_t *source, int sourceLen, const UChar *expect, int expectLen, argument 1117 sourceLimit=(uint8_t*)(src+(sourceLen)); 1139 sourceLen, targ-buffer); 1181 static UBool testConvertFromU( const UChar *source, int sourceLen, cons argument [all...] |
/external/icu4c/test/perf/convperf/ |
H A D | convperf.h | 33 ICUToUnicodePerfFunction(const char* name, const char* source, int32_t sourceLen, UErrorCode& status){ argument 36 srcLen = sourceLen; 79 ICUFromUnicodePerfFunction(const char* name, const UChar* source, int32_t sourceLen, UErrorCode& status){ argument 82 srcLen = sourceLen; 280 WinIMultiLanguageToUnicodePerfFunction(const char* name,char* source, UINT sourceLen, UErrorCode& status){ argument 310 srcLen = sourceLen; 336 WinIMultiLanguageFromUnicodePerfFunction(const char* name,WCHAR* source, UINT sourceLen, UErrorCode& status){ argument 366 srcLen = sourceLen; 392 WinIMultiLanguage2ToUnicodePerfFunction(const char* name,char* source, UINT sourceLen, UErrorCode& status){ argument 406 srcLen = sourceLen; 446 WinIMultiLanguage2FromUnicodePerfFunction(const char* name,WCHAR* source, UINT sourceLen, UErrorCode& status) argument [all...] |
/external/bzip2/ |
H A D | bzlib.h | 208 unsigned int sourceLen, 218 unsigned int sourceLen,
|
/external/icu4c/test/perf/ustrperf/ |
H A D | stringperf.h | 179 StringPerfFunction(ICUStringPerfFn func, UChar* source, int32_t sourceLen, UBool uselen) argument 188 src_ = new UChar[sourceLen]; 189 memcpy(src_, source, sourceLen * U_SIZEOF_UCHAR); 190 srcLen_ = sourceLen; 201 StringPerfFunction(StdStringPerfFn func, UChar* source, int32_t sourceLen, UBool uselen) argument 210 src_ = new UChar[sourceLen]; 211 memcpy(src_, source, sourceLen * U_SIZEOF_UCHAR); 212 srcLen_ = sourceLen;
|
/external/zlib/contrib/pascal/ |
H A D | zlibpas.pas | 99 function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt; 116 const source: PChar; sourceLen: LongInt): Integer; 118 const source: PChar; sourceLen: LongInt; 120 function compressBound(sourceLen: LongInt): LongInt; 122 const source: PChar; sourceLen: LongInt): Integer;
|
/external/icu4c/i18n/ |
H A D | rbt_pars.h | 351 utrans_stripRules(const UChar *source, int32_t sourceLen, UChar *target, UErrorCode *status);
|
H A D | tblcoll.cpp | 449 int32_t sourceLen, 458 if ((!source) || (sourceLen == 0)) { 464 source, sourceLen, 448 getCollationKey(const UChar* source, int32_t sourceLen, CollationKey& sortkey, UErrorCode& status) const argument
|
H A D | ucol_imp.h | 320 uprv_init_collIterate(const UCollator *collator, const UChar *sourceString, int32_t sourceLen, collIterate *s); 421 #define init_collIterate(collator, sourceString, sourceLen, s) { \ 423 (s)->endp = (sourceLen) == -1 ? NULL :(UChar *)(sourceString)+(sourceLen); \
|
H A D | ucol_bld.cpp | 543 uint32_t u_toLargeKana(const UChar *source, const uint32_t sourceLen, UChar *resBuf, const uint32_t resLen, UErrorCode *status) { argument 551 if(sourceLen > resLen) { 556 for(i = 0; i < sourceLen; i++) { 574 return sourceLen; 578 uint32_t u_toSmallKana(const UChar *source, const uint32_t sourceLen, UChar *resBuf, const uint32_t resLen, UErrorCode *status) { argument 586 if(sourceLen > resLen) { 591 for(i = 0; i < sourceLen; i++) { 609 return sourceLen;
|
/external/icu4c/extra/uconv/ |
H A D | uwmsg.c | 36 int32_t sourceLen, 52 mySourceEnd = mySource + sourceLen; 35 uprint(const UChar *s, int32_t sourceLen, FILE *f, UErrorCode *status) argument
|
/external/icu4c/test/perf/normperf/ |
H A D | normperf.h | 87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) { argument 94 srcLen = sourceLen; 157 NormPerfFunction(NormFn func, int32_t opts, const UChar* source,int32_t sourceLen,UBool _uselen) : options(opts) { argument 162 destLen = sourceLen*3; 165 srcLen = sourceLen;
|
/external/openssl/crypto/comp/ |
H A D | c_zlib.c | 59 uLong sourceLen); 99 const Bytef *source, uLong sourceLen); 306 uLong sourceLen) 312 stream.avail_in = (uInt)sourceLen; 314 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
/external/zlib/as400/ |
H A D | zlib.inc | 107 D sourceLen 10u 0 value Source length 113 D sourceLen 10U 0 value Source length 117 D sourceLen 10U 0 value 123 D sourceLen 10U 0 value Source length
|
/external/icu4c/tools/genrb/ |
H A D | wrtjava.c | 104 uCharsToChars( char* target,int32_t targetLen, UChar* source, int32_t sourceLen,UErrorCode* status){ argument 107 while(i<sourceLen){ 136 if(i+1<sourceLen){ 204 strrch(const char* source,uint32_t sourceLen,char find){ argument 205 const char* tSourceEnd =source + (sourceLen-1);
|