HomeSort by relevance Sort by last modified time
    Searched refs:limit (Results 1 - 25 of 6646) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/tools/gentest/
genres32.c 27 incKey(char *key, char *limit) {
30 while(limit>key) {
31 c=*--limit;
33 *limit='1';
36 *limit='o';
51 char *limit; local
70 /* find the limit of the key string */
71 for(limit=key; *limit!=0; ++limit) {
    [all...]
  /external/icu/icu4c/source/tools/gentest/
genres32.c 27 incKey(char *key, char *limit) {
30 while(limit>key) {
31 c=*--limit;
33 *limit='1';
36 *limit='o';
51 char *limit; local
70 /* find the limit of the key string */
71 for(limit=key; *limit!=0; ++limit) {
    [all...]
  /dalvik/libdex/
Leb128.cpp 28 * any but the low-order four bits set. Additionally, if the limit is
29 * passed as non-NULL and bytes would need to be read past the limit,
32 int readAndVerifyUnsignedLeb128(const u1** pStream, const u1* limit,
37 if (((limit != NULL) && (*pStream > limit))
50 * any but the low-order four bits set. Additionally, if the limit is
51 * passed as non-NULL and bytes would need to be read past the limit,
54 int readAndVerifySignedLeb128(const u1** pStream, const u1* limit,
59 if (((limit != NULL) && (*pStream > limit))
    [all...]
  /external/chromium_org/base/
sys_info_freebsd.cc 27 size_t limit; local
28 size_t size = sizeof(limit);
29 if (sysctlbyname("kern.ipc.shmmax", &limit, &size, NULL, 0) < 0) {
33 return limit;
  /art/runtime/arch/arm64/
memcmp16_arm64.S 30 #define limit x2 define
51 cbz limit, .Lret0
52 lsl limit, limit, #1 /* Half-words to bytes. */
58 add limit_wd, limit, #7
71 /* Not reached the limit, must have found a diff. */
74 /* Limit % 8 == 0 => all bytes significant. */
75 ands limit, limit, #7
78 lsl limit, limit, #3 /* Bits -> bytes. *
    [all...]
  /external/chromium_org/third_party/freetype/src/psaux/
psconv.h 31 FT_Byte* limit,
37 FT_Byte* limit );
41 FT_Byte* limit,
47 FT_Byte* limit,
54 FT_Byte* limit,
60 FT_Byte* limit,
psobjs.c 104 FT_Byte** limit = offset + table->max_elems; local
107 for ( ; offset < limit; offset++ )
292 FT_Byte* limit )
297 while ( cur < limit )
310 FT_Byte* limit )
315 while ( cur < limit )
321 skip_comment( &cur, limit );
340 FT_Byte* limit )
348 while ( cur < limit )
364 if ( cur == limit )
521 FT_Byte* limit = parser->limit; local
623 FT_Byte* limit; local
740 T1_Token limit = cur + max_tokens; local
1032 FT_Byte* limit; local
    [all...]
  /external/freetype/src/psaux/
psconv.h 31 FT_Byte* limit,
37 FT_Byte* limit );
41 FT_Byte* limit,
47 FT_Byte* limit,
54 FT_Byte* limit,
60 FT_Byte* limit,
psobjs.c 104 FT_Byte** limit = offset + table->max_elems; local
107 for ( ; offset < limit; offset++ )
292 FT_Byte* limit )
297 while ( cur < limit )
310 FT_Byte* limit )
315 while ( cur < limit )
321 skip_comment( &cur, limit );
340 FT_Byte* limit )
348 while ( cur < limit )
364 if ( cur == limit )
521 FT_Byte* limit = parser->limit; local
623 FT_Byte* limit; local
740 T1_Token limit = cur + max_tokens; local
1034 FT_Byte* limit; local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RetryableSink.java 35 private final int limit; field in class:RetryableSink
38 public RetryableSink(int limit) {
39 this.limit = limit;
49 if (content.size() < limit) {
51 "content-length promised " + limit + " bytes, but received " + content.size());
58 if (limit != -1 && content.size() > limit - byteCount) {
59 throw new ProtocolException("exceeded content-length limit of " + limit + " bytes")
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Vector2D.h 26 void limit(float max);
27 void limit(float maxX, float maxY);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
LimitedInputStream.java 13 int limit)
16 this._limit = limit;
  /external/llvm/lib/Support/
MemoryObject.cpp 20 uint64_t limit = getBase() + getExtent(); local
22 if (current + size > limit)
  /external/okhttp/okio/src/main/java/okio/
Segment.java 40 int limit; field in class:Segment
76 * segment contains the data in {@code [pos+byteCount..limit)}. This can be
83 int bSize = (limit - pos) - byteCount;
92 before.limit += aSize;
99 limit -= bSize;
100 after.limit += bSize;
112 if ((prev.limit - prev.pos) + (limit - pos) > SIZE) return; // Cannot compact.
113 writeTo(prev, limit - pos);
122 if (byteCount + (sink.limit - sink.pos) > SIZE) throw new IllegalArgumentException()
    [all...]
OkBuffer.java 131 if (tail.limit < Segment.SIZE) {
132 result -= tail.limit - tail.pos;
143 int limit = segment.limit;
149 if (pos == limit) {
163 int segmentByteCount = s.limit - s.pos;
174 int limit = segment.limit;
177 if (limit - pos < 2) {
188 if (pos == limit) {
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
uni2name.cpp 78 offsets.start = offsets.limit;
85 offsets.start = offsets.limit;
90 int32_t limit = offsets.limit; local
96 while (cursor < limit) {
106 limit += len-clen; // change in length
112 offsets.contextLimit += limit - offsets.limit;
113 offsets.limit = limit;
    [all...]
  /external/icu/icu4c/source/i18n/
uni2name.cpp 78 offsets.start = offsets.limit;
85 offsets.start = offsets.limit;
90 int32_t limit = offsets.limit; local
96 while (cursor < limit) {
106 limit += len-clen; // change in length
112 offsets.contextLimit += limit - offsets.limit;
113 offsets.limit = limit;
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
find_match_length.h 31 size_t limit) {
33 size_t limit2 = (limit >> 3) + 1; // + 1 is for pre-decrement in while
47 limit = (limit & 7) + 1; // + 1 is for pre-decrement in while
48 while (--limit) {
61 size_t limit) {
63 const uint8_t* s2_limit = s2 + limit;
  /external/chromium_org/third_party/leveldatabase/
chromium_logger.h 43 char* limit = base + bufsize; local
48 p += ::base::snprintf(p, limit - p,
60 if (p < limit) {
63 p += vsnprintf(p, limit - p, format, backup_ap);
68 if (p >= limit) {
72 p = limit - 1;
81 assert(p <= limit);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
ByteBufferHelper.java 32 nuSamples.get(lastIndex).arrayOffset() + nuSamples.get(lastIndex).limit() == buffer.arrayOffset()) {
34 ByteBuffer nu = ByteBuffer.wrap(buffer.array(), oldBuffer.arrayOffset(), oldBuffer.limit() + buffer.limit()).slice();
39 nuSamples.get(lastIndex).limit() == nuSamples.get(lastIndex).capacity() - buffer.capacity()) {
42 oldBuffer.limit(buffer.limit() + oldBuffer.limit());
  /external/chromium_org/third_party/icu/source/common/unicode/
urep.h 91 * Function pointer that replaces text between start and limit in
98 * @param limit the ending index of the text to be replaced,
101 * start..limit-1.
108 int32_t limit,
114 * [<tt>start</tt>, <tt>limit</tt>) into the array <tt>dst</tt>.
119 * @param limit offset immediately following the last character to
122 * <tt>dst</tt> must be at least <tt>(limit - start)</tt>.
127 int32_t limit,
131 * Function pointer that copies text between start and limit in
135 * start..limit-1
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
hash.cc 22 const char* limit = data + n; local
26 while (data + 4 <= limit) {
35 switch (limit - data) {
  /external/icu/icu4c/source/common/unicode/
urep.h 91 * Function pointer that replaces text between start and limit in
98 * @param limit the ending index of the text to be replaced,
101 * start..limit-1.
108 int32_t limit,
114 * [<tt>start</tt>, <tt>limit</tt>) into the array <tt>dst</tt>.
119 * @param limit offset immediately following the last character to
122 * <tt>dst</tt> must be at least <tt>(limit - start)</tt>.
127 int32_t limit,
131 * Function pointer that copies text between start and limit in
135 * start..limit-1
    [all...]
  /external/chromium_org/third_party/icu/source/common/
bmpset.cpp 64 * start<limit<=0x800
66 static void set32x64Bits(uint32_t table[64], int32_t start, int32_t limit) {
67 U_ASSERT(start<limit);
68 U_ASSERT(limit<=0x800);
75 if((start+1)==limit) { // Single-character shortcut.
80 int32_t limitLead=limit>>6;
81 int32_t limitTrail=limit&0x3f;
107 // limit<=0x800. If limit==0x800 then limitLead=32 and limitTrail=0.
118 UChar32 start, limit;
    [all...]
  /external/icu/icu4c/source/common/
bmpset.cpp 64 * start<limit<=0x800
66 static void set32x64Bits(uint32_t table[64], int32_t start, int32_t limit) {
67 U_ASSERT(start<limit);
68 U_ASSERT(limit<=0x800);
75 if((start+1)==limit) { // Single-character shortcut.
80 int32_t limitLead=limit>>6;
81 int32_t limitTrail=limit&0x3f;
107 // limit<=0x800. If limit==0x800 then limitLead=32 and limitTrail=0.
118 UChar32 start, limit;
    [all...]

Completed in 1172 milliseconds

1 2 3 4 5 6 7 8 91011>>