/external/icu/icu4c/source/common/ |
uniset.cpp | 679 int32_t maxLen = forward ? limit-offset : offset-limit; 680 if (matchLen == maxLen) { 736 int32_t maxLen; 739 maxLen = limit - start; 740 if (maxLen > slen) maxLen = slen; 741 for (i = 1; i < maxLen; ++i) { 745 maxLen = start - limit; 746 if (maxLen > slen) maxLen = slen [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
TestBidi.java | 23 private static final int MAXLEN = 256; 31 bidi = new Bidi(MAXLEN, 0); 201 int[] visualMap4 = new int[MAXLEN];
|
/external/lzma/C/ |
LzFindMt.c | 249 UInt32 maxLen = _maxLen;
268 if (maxLen < len)
270 *distances++ = maxLen = len;
|
/external/pdfium/core/src/fpdfdoc/ |
doc_formfield.cpp | 399 if (CPDF_Object* pObj = FPDF_GetFieldAttr(m_pDict, "MaxLen")) 408 if (pWidgetDict->KeyExist("MaxLen")) 409 return pWidgetDict->GetInteger("MaxLen");
|
/frameworks/av/media/libeffects/factory/ |
EffectsFactory.c | 73 static int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen); 965 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen) 968 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_zlib.py | 448 for maxlen in 0, 1000: 455 if maxlen == 0: 460 dco.unconsumed_tail + x[i : i + step], maxlen)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_zlib.py | 448 for maxlen in 0, 1000: 455 if maxlen == 0: 460 dco.unconsumed_tail + x[i : i + step], maxlen)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_zlib.py | 448 for maxlen in 0, 1000: 455 if maxlen == 0: 460 dco.unconsumed_tail + x[i : i + step], maxlen)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_zlib.py | 448 for maxlen in 0, 1000: 455 if maxlen == 0: 460 dco.unconsumed_tail + x[i : i + step], maxlen)
|
/external/icu/icu4c/source/test/perf/collationperf/ |
collperf.cpp | 781 int maxLen = 0; 785 if (gFileLines[i].len > maxLen) maxLen = gFileLines[i].len; 789 int *accumulatedLen = new int[maxLen+1]; 790 int *numKeysOfSize = new int[maxLen+1]; 791 for (i=0; i<=maxLen; i++) { 805 for (i=1; i<=maxLen; i++) { [all...] |
/external/pdfium/third_party/lcms2-2.6/src/ |
cmscgats.c | 416 cmsBool BuildAbsolutePath(const char *relPath, const char *basePath, char *buffer, cmsUInt32Number MaxLen) 424 strncpy(buffer, relPath, MaxLen); 425 buffer[MaxLen-1] = 0; 430 strncpy(buffer, basePath, MaxLen); 431 buffer[MaxLen-1] = 0; 437 if (len >= MaxLen) return FALSE; 440 strncpy(tail + 1, relPath, MaxLen - len); [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
coffgen.c | 1371 size_t maxlen; local [all...] |
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
request.py | [all...] |
/external/icu/icu4c/source/i18n/ |
tznames_impl.cpp | [all...] |
/system/extras/ksmutils/ |
lookup3.c | 792 #define MAXLEN 70 795 uint8_t qa[MAXLEN+1], qb[MAXLEN+2], *a = &qa[0], *b = &qb[1]; 802 for (hlen=0; hlen < MAXLEN; ++hlen) 865 uint8_t buf[MAXLEN+20], *b; [all...] |
/external/curl/lib/ |
tftp.c | 304 static size_t Curl_strnlen(const char *string, size_t maxlen) 306 const char *end = memchr (string, '\0', maxlen); 307 return end ? (size_t) (end - string) : maxlen; [all...] |
curl_sasl.c | [all...] |
/external/fio/ |
parse.c | 605 for(i = 0; i < o->maxlen; i++) 608 if (curr >= o->maxlen) { 610 o->maxlen);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
StringTokenizerTest.java | 597 // Tests when "int maxLen = forward ? limit-offset[0] : offset[0]-limit;" is true and false 615 // TODO: Tests when "if (maxLen > slen) maxLen = slen;" is true and false [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
StringTokenizerTest.java | 593 // Tests when "int maxLen = forward ? limit-offset[0] : offset[0]-limit;" is true and false 611 // TODO: Tests when "if (maxLen > slen) maxLen = slen;" is true and false [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
wpa_priv.c | 887 size_t len, maxlen; local 895 maxlen = sizeof(data->interface_status.ifname); 897 for (len = 0; len < maxlen && ifname[len]; len++)
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
quick_logger.py | 215 self._records = collections.deque(maxlen=_MAX_NUM_RECORD)
|
/external/clang/utils/TableGen/ |
ClangDiagnosticsEmitter.cpp | 747 unsigned MaxLen = 0; 750 MaxLen = std::max(MaxLen, (unsigned)I.first.size()); 763 OS << I.first << " */ " << std::string(MaxLen - I.first.size(), ' '); [all...] |
/external/llvm/lib/Fuzzer/ |
FuzzerDriver.cpp | 248 Options.MaxLen = Flags.max_len;
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/ |
OpenWnnEngineEN.java | 252 public int predict(ComposingText text, int minLen, int maxLen) {
|