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

1 2

  /external/chromium_org/third_party/icu/source/test/perf/usetperf/
bitset.h 21 void ensureCapacity(uint32_t minLen);
bitset.cpp 50 void BitSet::ensureCapacity(uint32_t minLen) {
52 while (newLen < minLen) newLen <<= 1; // grow exponentially
  /external/icu/icu4c/source/test/perf/usetperf/
bitset.h 21 void ensureCapacity(uint32_t minLen);
bitset.cpp 50 void BitSet::ensureCapacity(uint32_t minLen) {
52 while (newLen < minLen) newLen <<= 1; // grow exponentially
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 39 public static byte[] newUnpaddedByteArray(int minLen) {
40 return (byte[])VMRuntime.getRuntime().newUnpaddedArray(byte.class, minLen);
43 public static char[] newUnpaddedCharArray(int minLen) {
44 return (char[])VMRuntime.getRuntime().newUnpaddedArray(char.class, minLen);
47 public static int[] newUnpaddedIntArray(int minLen) {
48 return (int[])VMRuntime.getRuntime().newUnpaddedArray(int.class, minLen);
51 public static boolean[] newUnpaddedBooleanArray(int minLen) {
52 return (boolean[])VMRuntime.getRuntime().newUnpaddedArray(boolean.class, minLen);
55 public static long[] newUnpaddedLongArray(int minLen) {
56 return (long[])VMRuntime.getRuntime().newUnpaddedArray(long.class, minLen);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 31 public int minLen;
45 minLen = 0;
60 minLen = in.readInt();
81 dest.writeInt(minLen);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
PickerConstant.java 60 private String[] createStringIntArrays(int lastNumber, boolean startAtZero, int minLen) {
62 String format = "%0" + minLen + "d";
65 if (minLen > 0) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnEngine.java 57 * @param minLen The minimum length of a word to predict (0 : no limit)
61 public int predict(ComposingText text, int minLen, int maxLen);
SymbolList.java 189 public int predict(ComposingText text, int minLen, int maxLen) {
  /external/lzma/CS/7zip/Common/
CommandLineParser.cs 22 public int MinLen;
27 int minLen, int maxLen, string postCharSet)
32 MinLen = minLen;
36 public SwitchForm(string idString, SwitchType type, bool multi, int minLen):
37 this(idString, type, multi, minLen, 0, "")
123 if (tailSize < switchForm.MinLen)
145 int minLen = switchForm.MinLen;
146 if (tailSize < minLen)
    [all...]
  /external/bzip2/
huffman.c 154 Int32 minLen,
161 for (n = minLen; n <= maxLen; n++) {
174 Int32 minLen,
181 for (i = minLen; i <= maxLen; i++)
193 for (i = minLen; i <= maxLen; i++) {
198 for (i = minLen + 1; i <= maxLen; i++)
compress.c 242 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr;
482 minLen = 32;
486 if (s->len[t][i] < minLen) minLen = s->len[t][i];
489 AssertH ( !(minLen < 1), 3005 );
491 minLen, maxLen, alphaSize );
decompress.c 110 Int32 minLen, maxLen;
333 minLen = 32;
337 if (s->len[t][i] < minLen) minLen = s->len[t][i];
344 minLen, maxLen, alphaSize
346 s->minLens[t] = minLen;
  /external/lzma/CPP/Common/
CommandLineParser.cpp 147 if (tailSize < switchForm.MinLen)
169 int minLen = switchForm.MinLen;
170 if (tailSize < minLen)
178 UString stringSwitch = s.Mid(pos, minLen);
179 pos += minLen;
180 for (int i = minLen; i < maxLen && pos < len; i++, pos++)
  /packages/apps/Stk/src/com/android/stk/
StkInputActivity.java 327 if (mTextIn.getText().length() < mStkInput.minLen) {
374 int minLen = mStkInput.minLen;
379 String lengthLimit = String.valueOf(minLen);
380 if (maxLen != minLen) {
381 lengthLimit = minLen + " - " + maxLen;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
IntArray.java 295 int minLen = otherUsedLen + words + 1;
296 if (minLen > m_ints.length)
298 m_ints = resizedInts(minLen);
343 int minLen = otherUsedLen + words;
344 if (minLen > m_ints.length)
346 m_ints = resizedInts(minLen);
  /external/chromium_org/third_party/lzma_sdk/
LzFind.c 467 #define GET_MATCHES_HEADER2(minLen, ret_op) \
469 lenLimit = p->lenLimit; { if (lenLimit < minLen) { MatchFinder_MovePos(p); ret_op; }} \
472 #define GET_MATCHES_HEADER(minLen) GET_MATCHES_HEADER2(minLen, return 0)
473 #define SKIP_HEADER(minLen) GET_MATCHES_HEADER2(minLen, continue)
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzFind.c 468 #define GET_MATCHES_HEADER2(minLen, ret_op) \
470 lenLimit = p->lenLimit; { if (lenLimit < minLen) { MatchFinder_MovePos(p); ret_op; }} \
473 #define GET_MATCHES_HEADER(minLen) GET_MATCHES_HEADER2(minLen, return 0)
474 #define SKIP_HEADER(minLen) GET_MATCHES_HEADER2(minLen, continue)
  /external/lzma/C/
LzFind.c 467 #define GET_MATCHES_HEADER2(minLen, ret_op) \
469 lenLimit = p->lenLimit; { if (lenLimit < minLen) { MatchFinder_MovePos(p); ret_op; }} \
472 #define GET_MATCHES_HEADER(minLen) GET_MATCHES_HEADER2(minLen, return 0)
473 #define SKIP_HEADER(minLen) GET_MATCHES_HEADER2(minLen, continue)
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
OpenWnnEngineEN.java 252 public int predict(ComposingText text, int minLen, int maxLen) {
  /external/valgrind/main/VEX/switchback/
test_bzip2.c     [all...]
  /external/valgrind/main/exp-sgcheck/tests/
hackedbz2.c     [all...]
  /external/valgrind/main/memcheck/tests/
origin5-bz2.c     [all...]
varinfo6.c     [all...]
  /external/valgrind/main/perf/
bz2.c     [all...]

Completed in 973 milliseconds

1 2