HomeSort by relevance Sort by last modified time
    Searched refs:limit (Results 26 - 50 of 3319) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu4c/common/
unifilt.cpp 41 int32_t limit,
44 if (offset < limit &&
49 if (offset > limit &&
60 if (incremental && offset == limit) {
  /external/iptables/include/linux/netfilter/
xt_connlimit.h 19 unsigned int limit; member in struct:xt_connlimit_info
  /external/kernel-headers/original/asm-x86/
ldt.h 16 * Note on 64bit base and limit is ignored and you cannot set DS/ES/CS
23 unsigned int limit; member in struct:user_desc
  /external/qemu/hw/
goldfish_nand.h 20 uint64_t limit; member in struct:__anon11181
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKBackForwardList.cpp 69 WKArrayRef WKBackForwardListCopyBackListWithLimit(WKBackForwardListRef listRef, unsigned limit)
71 return toAPI(toImpl(listRef)->backListAsImmutableArrayWithLimit(limit).releaseRef());
74 WKArrayRef WKBackForwardListCopyForwardListWithLimit(WKBackForwardListRef listRef, unsigned limit)
76 return toAPI(toImpl(listRef)->forwardListAsImmutableArrayWithLimit(limit).releaseRef());
  /libcore/luni/src/main/java/java/nio/
DoubleToByteBufferAdapter.java 28 * <li>The byte buffer's position and limit are NOT linked with the adapter.
29 * The adapter extends Buffer, thus has its own position and limit.</li>
54 buf.limit = limit;
66 byteBuffer.limit(limit * SizeOf.DOUBLE);
70 position = limit - position;
71 limit = capacity;
80 buf.limit = limit;
    [all...]
FloatToByteBufferAdapter.java 28 * <li>The byte buffer's position and limit are NOT linked with the adapter.
29 * The adapter extends Buffer, thus has its own position and limit.</li>
53 buf.limit = limit;
65 byteBuffer.limit(limit * SizeOf.FLOAT);
69 position = limit - position;
70 limit = capacity;
79 buf.limit = limit;
    [all...]
IntToByteBufferAdapter.java 28 * <li>The byte buffer's position and limit are NOT linked with the adapter.
29 * The adapter extends Buffer, thus has its own position and limit.</li>
54 buf.limit = limit;
66 byteBuffer.limit(limit * SizeOf.INT);
70 position = limit - position;
71 limit = capacity;
80 buf.limit = limit;
    [all...]
LongToByteBufferAdapter.java 28 * <li>The byte buffer's position and limit are NOT linked with the adapter.
29 * The adapter extends Buffer, thus has its own position and limit.</li>
54 buf.limit = limit;
66 byteBuffer.limit(limit * SizeOf.LONG);
70 position = limit - position;
71 limit = capacity;
80 buf.limit = limit;
    [all...]
ShortToByteBufferAdapter.java 28 * <li>The byte buffer's position and limit are NOT linked with the adapter.
29 * The adapter extends Buffer, thus has its own position and limit.</li>
53 buf.limit = limit;
65 byteBuffer.limit(limit * SizeOf.SHORT);
69 position = limit - position;
70 limit = capacity;
79 buf.limit = limit;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLEngineDataStream.java 35 private int limit; field in class:SSLEngineDataStream
45 this.limit = offset+length;
48 for (int i=offset; i<limit; i++) {
75 for (; offset<limit; offset++) {
  /packages/apps/Email/src/org/apache/james/mime4j/util/
PartialInputStream.java 27 private final long limit; field in class:PartialInputStream
32 this.limit = offset + length;
40 if (limit > position)
61 return (int)Math.min(Integer.MAX_VALUE, limit - position);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
ldt.h 16 * Note on 64bit base and limit is ignored and you cannot set DS/ES/CS
23 unsigned int limit; member in struct:user_desc
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ldt.h 16 * Note on 64bit base and limit is ignored and you cannot set DS/ES/CS
23 unsigned int limit; member in struct:user_desc
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ldt.h 16 * Note on 64bit base and limit is ignored and you cannot set DS/ES/CS
23 unsigned int limit; member in struct:user_desc
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
ldt.h 24 unsigned int limit; member in struct:user_desc
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
ldt.h 24 unsigned int limit; member in struct:user_desc
  /prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
ldt.h 24 unsigned int limit; member in struct:user_desc
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/asm/
ldt.h 24 unsigned int limit; member in struct:user_desc
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/
ldt.h 24 unsigned int limit; member in struct:user_desc
  /external/icu4c/i18n/
nortrans.cpp 101 // start and limit of the input range
103 int32_t limit = offsets.limit; local
104 if(start >= limit) {
111 * In incremental mode, a chunk that ends with offsets.limit
118 int32_t length = limit - start;
119 _Replaceable_extractBetween(text, start, limit, input.getBuffer(length));
125 text.handleReplaceBetween(start, limit, normalized);
129 offsets.limit += delta;
130 offsets.start = limit + delta
    [all...]
  /external/llvm/lib/Support/
MemoryObject.cpp 21 uint64_t limit = getBase() + getExtent(); local
23 if (current + size > limit)
  /frameworks/base/core/java/android/text/
SpanSet.java 45 public void init(Spanned spanned, int start, int limit) {
46 final E[] allSpans = spanned.getSpans(start, limit, classType);
92 int getNextTransition(int start, int limit) {
96 if (spanStart > start && spanStart < limit) limit = spanStart;
97 if (spanEnd > start && spanEnd < limit) limit = spanEnd;
99 return limit;
  /external/iproute2/netem/
maketable.c 24 int limit; local
29 limit = 2*info.st_size/sizeof(double); /* @@ approximate */
31 limit = 10000;
34 x = calloc(limit, sizeof(double));
40 for (i=0; i<limit; ++i){
51 arraystats(double *x, int limit, double *mu, double *sigma, double *rho)
57 for (i=0; i<limit; ++i){
93 makedist(double *x, int limit, double mu, double sigma)
105 for (i=0; i < limit; ++i) {
123 cumulativedist(int *table, int limit, int *total
201 int limit; local
    [all...]
  /external/regex-re2/util/
strutil.cc 79 string limit(prefix.data(), prefix.size());
80 int index = limit.length() - 1;
82 if ((limit[index]&255) == 255) {
83 limit.erase(index);
86 limit[index]++;
93 return limit;

Completed in 1310 milliseconds

12 3 4 5 6 7 8 91011>>