HomeSort by relevance Sort by last modified time
    Searched defs:lim (Results 1 - 25 of 35) 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/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/
basemmap.c 20 uchar *cur, *lim = &buf[statbuf.st_size]; local
21 for(cur = buf; buf != lim; ++cur){
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_mac.cc 80 volatile rlimit lim; local
81 lim.rlim_cur = 0;
82 lim.rlim_max = 0;
83 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/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8TestUtil.java 116 final long lim; field in class:IsValidUtf8TestUtil.Shard
120 public Shard(long index, long start, long lim, long expected) {
121 assertTrue(start < lim);
124 this.lim = lim;
170 long LIM = 1L << 32;
171 long increment = LIM / numShards;
172 assertTrue(LIM % numShards == 0);
202 * @param lim the limit of bytes to process encoded as a long as big-endian,
205 static void testBytes(int numBytes, long expectedCount, long start, long lim)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
scanner.h 9 unsigned char *bot, *tok, *ptr, *cur, *pos, *lim, *top, *eof; member in struct:Scanner
  /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++)
  /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++) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
file.h 43 unsigned char *lim; /**< Limit of good data */ member in struct:yasm_scanner
  /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/chromium_org/third_party/lzma_sdk/
LzmaDec.c 392 const Byte *lim = dest + curLen; local
396 while (++dest != lim);
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaDec.c 393 const Byte *lim = dest + curLen; local
397 while (++dest != lim);

Completed in 903 milliseconds

1 2