HomeSort by relevance Sort by last modified time
    Searched defs:maxLen (Results 1 - 22 of 22) sorted by null

  /external/icu4c/i18n/
uni2name.cpp 75 int32_t maxLen = uprv_getMaxCharNameLength();
76 if (maxLen == 0) {
82 char* buf = (char*) uprv_malloc(maxLen);
99 if ((len = u_charName(c, U_EXTENDED_CHAR_NAME, buf, maxLen, &status)) >0 && !U_FAILURE(status)) {
name2uni.cpp 112 int32_t maxLen = uprv_getMaxCharNameLength();
113 if (maxLen == 0) {
119 ++maxLen; // allow for temporary trailing space
120 char* cbuf = (char*) uprv_malloc(maxLen);
170 // If we are too long then abort. maxLen includes
172 if (name.length() > maxLen) {
189 name.extract(0, len, cbuf, maxLen, US_INV);
225 // maxLen includes temporary trailing space, so use '>='.
226 if (name.length() >= maxLen) {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/util/
LineUtil.java 33 final int maxLen = 78;
38 if (n <= maxLen && (cr == -1 || cr == n - 1)) {
44 if (prefixSize > 0 && prefixSize < maxLen) {
59 if (n <= maxLen && (cr == -1 || cr == n - 1)) {
66 int posNext = maxLen;
85 if (posNext == 0 || (posNext >= n && maxLen < n)) {
87 posNext = maxLen;
  /dalvik/vm/jdwp/
ExpandBuf.cpp 33 int maxLen;
48 newBuf->maxLen = kInitialStorage;
90 if (pBuf->curLen + newCount <= pBuf->maxLen)
93 while (pBuf->curLen + newCount > pBuf->maxLen)
94 pBuf->maxLen *= 2;
96 newPtr = (u1*) realloc(pBuf->storage, pBuf->maxLen);
98 LOGE("realloc(%d) failed", pBuf->maxLen);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ShaderLang.cpp 24 TString::size_type maxLen = 0;
28 maxLen = std::max(maxLen, i->name.size());
31 return static_cast<int>(maxLen) + 1;
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
Input.java 32 public int maxLen;
46 maxLen = 1;
61 maxLen = in.readInt();
80 dest.writeInt(maxLen);
  /external/clang/utils/TableGen/
ClangSACheckersEmitter.cpp 257 unsigned maxLen = 0;
260 maxLen = std::max(maxLen, (unsigned)I->first.size());
301 << std::string(maxLen-I->first.size()+1, ' ');
  /external/bzip2/
compress.c 242 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr;
447 /* maxLen was changed from 20 to 17 in bzip2-1.0.3. See
483 maxLen = 0;
485 if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
488 AssertH ( !(maxLen > 17 /*20*/ ), 3004 );
491 minLen, maxLen, alphaSize );
decompress.c 110 Int32 minLen, maxLen;
334 maxLen = 0;
336 if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
344 minLen, maxLen, alphaSize
  /external/icu4c/common/
uniset.cpp 677 int32_t maxLen = forward ? limit-offset : offset-limit;
678 if (matchLen == maxLen) {
734 int32_t maxLen;
737 maxLen = limit - start;
738 if (maxLen > slen) maxLen = slen;
739 for (i = 1; i < maxLen; ++i) {
743 maxLen = start - limit;
744 if (maxLen > slen) maxLen = slen
    [all...]
uloc.c     [all...]
  /frameworks/base/libs/utils/
Asset.cpp 438 size_t maxLen;
455 maxLen = mLength - mOffset;
456 if (count > maxLen)
457 count = maxLen;
762 size_t maxLen;
778 maxLen = mUncompressedLen - mOffset;
779 if (count > maxLen)
780 count = maxLen;
  /packages/apps/Stk/src/com/android/stk/
StkInputActivity.java 288 int maxLen = mStkInput.maxLen;
291 maxLen)});
295 if (maxLen != minLen) {
296 lengthLimit = minLen + " - " + maxLen;
  /dalvik/tools/hprof-conv/
HprofConv.c 101 size_t maxLen;
116 newBuf->maxLen = kInitialSize;
166 if (pBuf->curLen + size > pBuf->maxLen) {
175 pBuf->maxLen = newSize;
178 assert(pBuf->curLen + size <= pBuf->maxLen);
239 assert(pBuf->curLen <= pBuf->maxLen);
252 assert(pBuf->curLen <= pBuf->maxLen);
  /external/icu4c/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/valgrind/main/exp-ptrcheck/tests/
hackedbz2.c     [all...]
  /external/valgrind/main/memcheck/tests/
origin5-bz2.c     [all...]
varinfo6.c     [all...]
  /external/valgrind/main/perf/
bz2.c     [all...]
test_input_for_tinycc.c 1432 Int32 minLen, maxLen;
    [all...]
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 644 milliseconds