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

  /external/valgrind/main/none/tests/
closeall.c 8 struct rlimit lim; local
11 getrlimit(RLIMIT_NOFILE, &lim);
13 for ( fd = 3; fd < lim.rlim_cur; fd++ )
  /bionic/libc/stdlib/
bsearch.c 36 * divide the work in half by moving either left or right. If lim
37 * is odd, moving left simply involves halving lim: e.g., when lim
38 * is 5 we look at item 2, so we change lim to 2 so that we will
39 * look at items 0 & 1. If lim is even, the same applies. If lim
40 * is odd, moving right again involes halving lim, this time moving
41 * the base up one item past p: e.g., when lim is 5 we change base
42 * to item 3 and make lim 2 so that we will look at items 3 and 4.
43 * If lim is even, however, we have to shrink it by one befor
53 int lim, cmp; local
    [all...]
  /external/expat/xmlwf/
codepage.c 24 int j, lim; local
27 lim = info.LeadByte[i + 1];
28 for (j = info.LeadByte[i]; j <= lim; j++)
  /bootable/recovery/minzip/
Hash.h 154 int lim = pIter->pHashTable->tableSize; local
155 for ( ; i < lim; i++) {
  /external/iproute2/tc/
q_tbf.c 181 double lim = opt.rate.rate*(double)latency/TIME_UNITS_PER_SEC + buffer; local
184 if (lim2 < lim)
185 lim = lim2;
187 opt.limit = lim;
  /dalvik/vm/
Hash.h 189 int lim = pIter->pHashTable->tableSize; local
190 for ( ; i < lim; i++) {
Init.cpp 901 int lim = atoi(argv[i] + 15); local
902 if (lim < 200 || (lim % 100) != 0) {
907 gDvm.jniGrefLimit = lim;
    [all...]
  /external/stlport/test/unit/
limits_test.cpp 71 typedef numeric_limits<_Tp> lim; typedef
73 CHECK_COND(lim::is_specialized);
74 CHECK_COND(lim::is_exact);
75 CHECK_COND(lim::is_integer);
76 CHECK_COND(!lim::is_iec559);
77 CHECK_COND(lim::min() < lim::max());
78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) |
92 typedef numeric_limits<_Tp> lim; typedef
125 typedef numeric_limits<_Tp> lim; typedef
234 typedef numeric_limits<_Tp> lim; typedef
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
limits_test.cpp 71 typedef numeric_limits<_Tp> lim; typedef
73 CHECK_COND(lim::is_specialized);
74 CHECK_COND(lim::is_exact);
75 CHECK_COND(lim::is_integer);
76 CHECK_COND(!lim::is_iec559);
77 CHECK_COND(lim::min() < lim::max());
78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) |
92 typedef numeric_limits<_Tp> lim; typedef
125 typedef numeric_limits<_Tp> lim; typedef
234 typedef numeric_limits<_Tp> lim; typedef
    [all...]
  /ndk/tests/device/test-stlport/unit/
limits_test.cpp 71 typedef numeric_limits<_Tp> lim; typedef
73 CHECK_COND(lim::is_specialized);
74 CHECK_COND(lim::is_exact);
75 CHECK_COND(lim::is_integer);
76 CHECK_COND(!lim::is_iec559);
77 CHECK_COND(lim::min() < lim::max());
78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) |
92 typedef numeric_limits<_Tp> lim; typedef
125 typedef numeric_limits<_Tp> lim; typedef
234 typedef numeric_limits<_Tp> lim; typedef
    [all...]
  /external/dropbear/
dbutil.c 698 struct rlimit lim; local
699 lim.rlim_cur = lim.rlim_max = 0;
700 setrlimit(RLIMIT_CORE, &lim);
  /external/tcpdump/
print-domain.c 92 const u_char *bitp, *lim; local
100 lim = cp + 1 + slen;
104 for (bitp = cp + 1, b = bitlen; bitp < lim && b > 7; b -= 8, bitp++) {
118 return lim;
  /external/valgrind/main/coregrind/m_ume/
macho.c 325 struct vki_rlimit lim; local
326 int err = VG_(getrlimit)(VKI_RLIMIT_STACK, &lim);
328 else return lim.rlim_cur;
  /external/bison/src/
scan-gram.c 3401 char const *lim = token + size; local
3450 char const *lim = buf + bytes_read; local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-generic.c 757 struct vki_rlimit lim; local
761 if (VG_(getrlimit) (VKI_RLIMIT_NOFILE, &lim) == -1) {
767 count = lim.rlim_cur;
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regexec.c 2050 struct re_backref_cache_entry *lim = mctx->bkref_ents + limit; local
    [all...]
  /external/mksh/src/
edit.c 2876 int vlen, lim = x_lastcp() - xbp; local
    [all...]

Completed in 379 milliseconds