HomeSort by relevance Sort by last modified time
    Searched refs:maxLen (Results 1 - 25 of 60) sorted by null

1 2 3

  /system/core/adb/
get_my_path_darwin.c 20 void get_my_path(char *s, size_t maxLen)
28 CFStringGetCString(value, s, maxLen, kCFStringEncodingUTF8);
get_my_path_freebsd.c 26 get_my_path(char *exe, size_t maxLen)
32 int err = readlink(proc, exe, maxLen - 1);
get_my_path_linux.c 22 void get_my_path(char *exe, size_t maxLen)
26 int err = readlink(proc, exe, maxLen - 1);
get_my_path_windows.c 21 void get_my_path(char *exe, size_t maxLen)
26 if (GetModuleFileName(NULL, exe, maxLen) > 0) {
  /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 ALOGE("realloc(%d) failed", pBuf->maxLen);
  /external/webkit/Source/WebCore/css/
makevalues.pl 114 my $maxLen = 0;
120 if (length($name) > $maxLen) {
121 $maxLen = length($name);
125 print HEADER "const size_t maxCSSValueKeywordLength = " . $maxLen . ";\n";
makeprop.pl 105 my $maxLen = 0;
111 if (length($name) > $maxLen) {
112 $maxLen = length($name);
120 print HEADER "const size_t maxCSSPropertyNameLength = $maxLen;\n";
  /external/icu4c/i18n/
uni2name.cpp 76 int32_t maxLen = uprv_getMaxCharNameLength();
77 if (maxLen == 0) {
83 char* buf = (char*) uprv_malloc(maxLen);
100 if ((len = u_charName(c, U_EXTENDED_CHAR_NAME, buf, maxLen, &status)) >0 && !U_FAILURE(status)) {
name2uni.cpp 114 int32_t maxLen = uprv_getMaxCharNameLength();
115 if (maxLen == 0) {
121 ++maxLen; // allow for temporary trailing space
122 char* cbuf = (char*) uprv_malloc(maxLen);
172 // If we are too long then abort. maxLen includes
174 if (name.length() > maxLen) {
191 name.extract(0, len, cbuf, maxLen, US_INV);
227 // maxLen includes temporary trailing space, so use '>='.
228 if (name.length() >= maxLen) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 32 public int maxLen;
46 maxLen = 1;
61 maxLen = in.readInt();
82 dest.writeInt(maxLen);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnEngine.java 58 * @param maxLen The maximum length of a word to predict (-1 : no limit)
61 public int predict(ComposingText text, int minLen, int maxLen);
  /external/bzip2/
huffman.c 66 Int32 maxLen )
120 if (j > maxLen) tooLong = True;
130 maxLen, which up to and including version 1.0.2 was 20 bits,
131 which is extremely unlikely. In version 1.0.3 maxLen was
155 Int32 maxLen,
161 for (n = minLen; n <= maxLen; n++) {
175 Int32 maxLen,
181 for (i = minLen; i <= maxLen; i++)
193 for (i = minLen; i <= maxLen; i++) {
198 for (i = minLen + 1; i <= maxLen; i++
    [all...]
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 );
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
StartupConfig.cpp 148 const UINT8 maxLen = mBuffer[0];
154 if (index > maxLen)
  /external/webrtc/src/common_audio/resampler/
resampler.cc 432 int maxLen, int &outLen)
448 WebRtc_Word16* out_left = (WebRtc_Word16*)malloc(maxLen / 2 * sizeof(WebRtc_Word16));
450 (WebRtc_Word16*)malloc(maxLen / 2 * sizeof(WebRtc_Word16));
464 res |= slave_left_->Push(left, lengthIn, out_left, maxLen / 2, actualOutLen_left);
465 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right);
504 if (maxLen < (lengthIn * 2))
519 if (maxLen < (lengthIn * 3))
535 if (maxLen < (lengthIn * 4))
555 if (maxLen < (lengthIn * 6))
585 if (maxLen < (lengthIn * 12))
    [all...]
  /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;
  /external/webrtc/src/common_audio/resampler/include/
resampler.h 81 int maxLen, int &outLen);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Registry/Public/
MobiCoreRegistry.h 139 * @param maxLen Maximum size (in bytes) of the destination buffer (so).
147 uint32_t 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);
  /packages/apps/Stk/src/com/android/stk/
StkInputActivity.java 293 int maxLen = mStkInput.maxLen;
296 maxLen)});
300 if (maxLen != minLen) {
301 lengthLimit = minLen + " - " + maxLen;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnEngineJAJP.java 314 * @param maxLen Maximum length to convert
317 private int setSearchKey(ComposingText text, int maxLen) {
319 if (0 <= maxLen && maxLen <= input.length()) {
320 input = input.substring(0, maxLen);
378 public int predict(ComposingText text, int minLen, int maxLen) {
383 int len = setSearchKey(text, maxLen);
  /frameworks/base/libs/androidfw/
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;
  /external/icu4c/samples/legacy/
legacy.cpp 25 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxLen, uint8_t keys[][32]);
26 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]);
  /external/clang/utils/TableGen/
ClangSACheckersEmitter.cpp 259 unsigned maxLen = 0;
262 maxLen = std::max(maxLen, (unsigned)I->first.size());
303 << std::string(maxLen-I->first.size()+1, ' ');
  /frameworks/native/cmds/flatland/
Main.cpp 640 size_t maxLen = 0;
644 if (len > maxLen) {
645 maxLen = len;
648 return maxLen;

Completed in 1098 milliseconds

1 2 3