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

1 2

  /external/linux-tools-perf/util/
bitmap.c 18 int k, w = 0, lim = bits/BITS_PER_LONG; local
20 for (k = 0; k < lim; k++)
  /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/upstream-netbsd/libc/stdlib/
bsearch.c 49 * divide the work in half by moving either left or right. If lim
50 * is odd, moving left simply involves halving lim: e.g., when lim
51 * is 5 we look at item 2, so we change lim to 2 so that we will
52 * look at items 0 & 1. If lim is even, the same applies. If lim
53 * is odd, moving right again involes halving lim, this time moving
54 * the base up one item past p: e.g., when lim is 5 we change base
55 * to item 3 and make lim 2 so that we will look at items 3 and 4.
56 * If lim is even, however, we have to shrink it by one befor
66 size_t lim; 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++)
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_mac.cc 79 volatile rlimit lim; local
80 lim.rlim_cur = 0;
81 lim.rlim_max = 0;
82 setrlimit(RLIMIT_CORE, (rlimit*)&lim);
  /external/mdnsresponder/mDNSShared/
dnssd_ipc.c 120 char *lim = buffer + buflen; // Calculate limit local
121 while (*ptr < end && buffer < lim)
126 if (buffer == lim) buffer--;
dnssd_clientlib.c 112 char *const lim = fullName + 1005; local
128 if (fn+4 >= lim) goto fail;
136 if (fn+2 >= lim) goto fail;
140 if (fn+1 >= lim) goto fail;
146 while (*r) if (fn+1 >= lim) goto fail; else *fn++ = *r++;
147 if (!DomainEndsInDot(regtype)) { if (fn+1 >= lim) goto fail; else *fn++ = '.'; }
149 while (*d) if (fn+1 >= lim) goto fail; else *fn++ = *d++;
150 if (!DomainEndsInDot(domain)) { if (fn+1 >= lim) goto fail; else *fn++ = '.'; }
  /external/libvpx/libvpx/vp8/common/arm/
loopfilter_arm.c 52 vp8_mbloop_filter_horizontal_edge_armv6(y_ptr, y_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 2);
55 vp8_mbloop_filter_horizontal_edge_armv6(u_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
58 vp8_mbloop_filter_horizontal_edge_armv6(v_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
65 vp8_mbloop_filter_vertical_edge_armv6(y_ptr, y_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 2);
68 vp8_mbloop_filter_vertical_edge_armv6(u_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
71 vp8_mbloop_filter_vertical_edge_armv6(v_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
78 vp8_loop_filter_horizontal_edge_armv6(y_ptr + 4 * y_stride, y_stride, lfi->blim, lfi->lim, lfi->hev_thr, 2);
79 vp8_loop_filter_horizontal_edge_armv6(y_ptr + 8 * y_stride, y_stride, lfi->blim, lfi->lim, lfi->hev_thr, 2);
80 vp8_loop_filter_horizontal_edge_armv6(y_ptr + 12 * y_stride, y_stride, lfi->blim, lfi->lim, lfi->hev_thr, 2);
83 vp8_loop_filter_horizontal_edge_armv6(u_ptr + 4 * uv_stride, uv_stride, lfi->blim, lfi->lim, lfi->hev_thr, 1)
128 unsigned char lim = *lfi->lim; local
141 unsigned char lim = *lfi->lim; local
155 unsigned char lim = *lfi->lim; local
171 unsigned char lim = *lfi->lim; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
loopfilter.h 43 DECLARE_ALIGNED(SIMD_WIDTH, unsigned char, lim[MAX_LOOP_FILTER + 1][SIMD_WIDTH]);
54 const unsigned char * lim; member in struct:loop_filter_info
  /bootable/recovery/minzip/
Hash.h 154 int lim = pIter->pHashTable->tableSize; local
155 for ( ; i < lim; i++) {
  /external/bison/src/
location.c 64 char const *lim = token + size; local
68 for (p = token; p < lim; p++)
scan-gram.c 3537 char const *lim = buf + bytes_read; local
    [all...]
  /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 1078 int lim = atoi(argv[i] + 15); local
    [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 335 struct vki_rlimit lim; local
336 int err = VG_(getrlimit)(VKI_RLIMIT_STACK, &lim);
338 else return lim.rlim_cur;
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
decode_plc.c 49 WebRtc_Word32 lim; local
51 lim = WEBRTC_SPL_LSHIFT_W32( (WebRtc_Word32)1, 15 + rshift )-1;
71 o = WEBRTC_SPL_SAT((WebRtc_Word32)lim, o, (WebRtc_Word32)-lim);
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-generic.c 737 struct vki_rlimit lim; local
741 if (VG_(getrlimit) (VKI_RLIMIT_NOFILE, &lim) == -1) {
747 count = lim.rlim_cur;
    [all...]
  /external/mdnsresponder/mDNSCore/
DNSCommon.c 486 const mDNSu8 *const lim = (lim1 < lim2) ? lim1 : lim2; local
489 while (*cstr && ptr < lim) *ptr++ = (mDNSu8)*cstr++; // Copy the data
507 const mDNSu8 *const lim = name->c + MAX_DOMAIN_NAME - 1; // Limit of how much we can add (not counting final zero) local
508 while (*cstr && ptr < lim) // While more characters, and space to put them...
512 while (*cstr && *cstr != '.' && ptr < lim) // While we have characters in the label...
564 const mDNSu8 *const lim = name->c + MAX_DOMAIN_NAME - 1; // Limit of how much we can add (not counting final zero) local
569 if (ptr + 1 + src[0] > lim) return(mDNSNULL);
663 const mDNSu8 *const lim = &hostlabel->c[1] + MAX_DOMAIN_LABEL; local
670 if (ptr < lim)
    [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...]

Completed in 1225 milliseconds

1 2