Searched refs:maxLen (Results 1 – 11 of 11) sorted by relevance
/external/icu4c/i18n/ |
D | name2uni.cpp | 111 int32_t maxLen = uprv_getMaxCharNameLength(); in handleTransliterate() local 112 if (maxLen == 0) { in handleTransliterate() 118 ++maxLen; // allow for temporary trailing space in handleTransliterate() 119 char* cbuf = (char*) uprv_malloc(maxLen); in handleTransliterate() 171 if (name.length() > maxLen) { in handleTransliterate() 188 name.extract(0, len, cbuf, maxLen, US_INV); in handleTransliterate() 225 if (name.length() >= maxLen) { in handleTransliterate()
|
D | uni2name.cpp | 75 int32_t maxLen = uprv_getMaxCharNameLength(); in handleTransliterate() local 76 if (maxLen == 0) { in handleTransliterate() 82 char* buf = (char*) uprv_malloc(maxLen); in handleTransliterate() 99 … if ((len = u_charName(c, U_EXTENDED_CHAR_NAME, buf, maxLen, &status)) >0 && !U_FAILURE(status)) { in handleTransliterate()
|
/external/bzip2/ |
D | huffman.c | 66 Int32 maxLen ) in BZ2_hbMakeCodeLengths() argument 120 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths() 155 Int32 maxLen, in BZ2_hbAssignCodes() argument 161 for (n = minLen; n <= maxLen; n++) { in BZ2_hbAssignCodes() 175 Int32 maxLen, in BZ2_hbCreateDecodeTables() argument 181 for (i = minLen; i <= maxLen; i++) in BZ2_hbCreateDecodeTables() 193 for (i = minLen; i <= maxLen; i++) { in BZ2_hbCreateDecodeTables() 198 for (i = minLen + 1; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
|
D | compress.c | 242 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; in sendMTFValues() local 483 maxLen = 0; in sendMTFValues() 485 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in sendMTFValues() 488 AssertH ( !(maxLen > 17 /*20*/ ), 3004 ); in sendMTFValues() 491 minLen, maxLen, alphaSize ); in sendMTFValues()
|
D | decompress.c | 110 Int32 minLen, maxLen; in BZ2_decompress() local 334 maxLen = 0; in BZ2_decompress() 336 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in BZ2_decompress() 344 minLen, maxLen, alphaSize in BZ2_decompress()
|
/external/webkit/WebCore/css/ |
D | makevalues.pl | 69 my $maxLen = 0; 75 if (length($name) > $maxLen) { 76 $maxLen = length($name); 80 print HEADER "const size_t maxCSSValueKeywordLength = " . $maxLen . ";\n";
|
D | makeprop.pl | 70 my $maxLen = 0; 76 if (length($name) > $maxLen) { 77 $maxLen = length($name); 85 print HEADER "const size_t maxCSSPropertyNameLength = $maxLen;\n";
|
/external/icu4c/common/ |
D | uniset.cpp | 625 int32_t maxLen = forward ? limit-offset : offset-limit; in matches() local 626 if (matchLen == maxLen) { in matches() 682 int32_t maxLen; in matchRest() local 685 maxLen = limit - start; in matchRest() 686 if (maxLen > slen) maxLen = slen; in matchRest() 687 for (i = 1; i < maxLen; ++i) { in matchRest() 691 maxLen = start - limit; in matchRest() 692 if (maxLen > slen) maxLen = slen; in matchRest() 694 for (i = 1; i < maxLen; ++i) { in matchRest() 698 return maxLen; in matchRest()
|
D | uloc.c | 2946 int32_t maxLen=0; in uloc_acceptLanguage() local 2983 if(len>maxLen) { in uloc_acceptLanguage() 2984 maxLen = len; in uloc_acceptLanguage() 2996 for(maxLen--;maxLen>0;maxLen--) { in uloc_acceptLanguage() 2998 if(fallbackList[i] && ((int32_t)uprv_strlen(fallbackList[i])==maxLen)) { in uloc_acceptLanguage()
|
/external/icu4c/samples/legacy/ |
D | legacy.cpp | 25 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxLen, uint8_t keys[][32]);
|
/external/webkit/WebCore/ |
D | ChangeLog-2006-05-10 | 6604 so we will enforce maxLen if changing from a type that doesn't have maxLen to one that does.
|