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

1 2 3 4

  /external/valgrind/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/lib/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...]
  /toolchain/binutils/binutils-2.25/libiberty/
bsearch.c 59 * divide the work in half by moving either left or right. If lim
60 * is odd, moving left simply involves halving lim: e.g., when lim
61 * is 5 we look at item 2, so we change lim to 2 so that we will
62 * look at items 0 & 1. If lim is even, the same applies. If lim
63 * is odd, moving right again involes halving lim, this time moving
64 * the base up one item past p: e.g., when lim is 5 we change base
65 * to item 3 and make lim 2 so that we will look at items 3 and 4.
66 * If lim is even, however, we have to shrink it by one befor
77 register int lim, cmp; local
    [all...]
  /external/vboot_reference/host/lib/
fmap.c 31 ssize_t lim = size - sizeof(FmapHeader); local
33 if (lim >= 0 && is_fmap(ptr))
37 for (align = FMAP_SEARCH_STRIDE; align <= lim; align *= 2);
39 for (offset = align; offset <= lim; offset += align * 2)
  /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--;
  /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 47 DECLARE_ALIGNED(SIMD_WIDTH, unsigned char, lim[MAX_LOOP_FILTER + 1][SIMD_WIDTH]);
58 const unsigned char * lim; member in struct:loop_filter_info
  /external/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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
loopfilter.h 47 DECLARE_ALIGNED(SIMD_WIDTH, unsigned char, lim[MAX_LOOP_FILTER + 1][SIMD_WIDTH]);
58 const unsigned char * lim; member in struct:loop_filter_info
  /libcore/ojluni/src/main/java/java/security/
MessageDigestSpi.java 113 int lim = input.limit(); local
114 engineUpdate(b, ofs + pos, lim - pos);
115 input.position(lim);
SignatureSpi.java 151 int lim = input.limit(); local
152 engineUpdate(b, ofs + pos, lim - pos);
153 input.position(lim);
  /libcore/ojluni/src/main/java/javax/crypto/
MacSpi.java 109 int lim = input.limit(); local
110 engineUpdate(b, ofs + pos, lim - pos);
111 input.position(lim);
  /bootable/recovery/minzip/
Hash.h 158 int lim = pIter->pHashTable->tableSize; local
159 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 205 double lim = rate64*(double)latency/TIME_UNITS_PER_SEC + buffer; local
208 if (lim2 < lim)
209 lim = lim2;
211 opt.limit = lim;
  /external/webrtc/webrtc/modules/audio_coding/test/
utility.cc 203 uint32_t lim; local
205 lim = _buffLen;
207 lim = _idx;
210 for (uint32_t n = 0; n < lim; n++) {
221 uint32_t lim; local
223 lim = _buffLen;
225 lim = _idx;
228 for (uint32_t n = 0; n < lim; n++) {
  /libcore/ojluni/src/main/java/java/nio/
ByteBufferAsDoubleBuffer.java 38 int mark, int pos, int lim, int cap,
40 super(mark, pos, lim, cap);
59 int lim = this.limit(); local
60 assert (pos <= lim);
61 int rem = (pos <= lim ? lim - pos : 0);
135 int lim = limit(); local
136 assert (pos <= lim);
137 int rem = (pos <= lim ? lim - pos : 0)
    [all...]
ByteBufferAsFloatBuffer.java 37 int mark, int pos, int lim, int cap,
39 super(mark, pos, lim, cap);
58 int lim = this.limit(); local
59 assert (pos <= lim);
60 int rem = (pos <= lim ? lim - pos : 0);
134 int lim = limit(); local
135 assert (pos <= lim);
136 int rem = (pos <= lim ? lim - pos : 0)
    [all...]
ByteBufferAsIntBuffer.java 37 int mark, int pos, int lim, int cap,
39 super(mark, pos, lim, cap);
58 int lim = this.limit(); local
59 assert (pos <= lim);
60 int rem = (pos <= lim ? lim - pos : 0);
134 int lim = limit(); local
135 assert (pos <= lim);
136 int rem = (pos <= lim ? lim - pos : 0)
    [all...]
ByteBufferAsLongBuffer.java 37 int mark, int pos, int lim, int cap,
39 super(mark, pos, lim, cap);
58 int lim = this.limit(); local
59 assert (pos <= lim);
60 int rem = (pos <= lim ? lim - pos : 0);
134 int lim = limit(); local
135 assert (pos <= lim);
136 int rem = (pos <= lim ? lim - pos : 0)
    [all...]
ByteBufferAsShortBuffer.java 37 int mark, int pos, int lim, int cap,
39 super(mark, pos, lim, cap);
58 int lim = this.limit(); local
59 assert (pos <= lim);
60 int rem = (pos <= lim ? lim - pos : 0);
133 int lim = limit(); local
134 assert (pos <= lim);
135 int rem = (pos <= lim ? lim - pos : 0)
    [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...]
  /toolchain/binutils/binutils-2.25/bfd/
elfxx-aarch64.c 127 bfd_vma lim; local
130 lim = (bfd_vma) 1 << bits;
131 if (value >= lim)
144 bfd_signed_vma lim; local
148 lim = (bfd_signed_vma) 1 << (bits - 1);
149 if (svalue < -lim || svalue >= lim)

Completed in 1466 milliseconds

1 2 3 4