HomeSort by relevance Sort by last modified time
    Searched refs:limit (Results 151 - 175 of 4941) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
UnescapeTransliterator.java 141 int limit = pos.limit; local
145 while (start < limit) {
164 if (s >= limit) {
188 if (s >= limit) {
211 if (s >= limit) {
230 limit -= s - start - str.length();
243 if (start < limit) {
248 pos.contextLimit += limit - pos.limit;
    [all...]
NormalizationTransliterator.java 77 // start and limit of the input range
79 int limit = offsets.limit; local
80 if(start >= limit) {
87 * In incremental mode, a chunk that ends with offsets.limit
105 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
106 if(start == limit && isIncremental && !norm2.hasBoundaryAfter(c)) {
107 // stop in incremental mode when we reach the input limit
121 limit += delta;
123 } while(start < limit);
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
IndirectNIOBuffer.java 35 _buf.limit(_buf.capacity());
46 _put=buffer.limit();
48 buffer.limit(buffer.capacity());
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
ReadWriteHeapByteBuffer.java 32 buf.limit = other.limit();
57 position = limit - position;
58 limit = capacity;
84 if (position == limit) {
92 if (index < 0 || index >= limit) {
139 if (newPosition > limit) {
148 if (index < 0 || (long)index + 4 > limit) {
156 if (index < 0 || (long)index + 8 > limit) {
165 if (newPosition > limit) {
    [all...]
DirectReadOnlyFloatBufferAdapter.java 29 * <li>The byte buffer's position and limit are NOT linked with the adapter. The adapter extends Buffer, thus has its own position
30 * and limit.</li>
53 buf.limit = limit;
67 buf.limit = limit;
75 // if (position == limit) {
83 // if (index < 0 || index >= limit) {
131 byteBuffer.limit(limit << 2)
    [all...]
DirectReadOnlyShortBufferAdapter.java 29 * <li>The byte buffer's position and limit are NOT linked with the adapter. The adapter extends Buffer, thus has its own position
30 * and limit.</li>
52 buf.limit = limit;
66 buf.limit = limit;
74 // if (position == limit) {
82 // if (index < 0 || index >= limit) {
130 byteBuffer.limit(limit << 1)
    [all...]
ReadWriteCharArrayBuffer.java 31 buf.limit = other.limit();
55 position = limit - position;
56 limit = capacity;
82 if (position == limit) {
90 if (index < 0 || index >= limit) {
ReadWriteDoubleArrayBuffer.java 32 buf.limit = other.limit();
56 position = limit - position;
57 limit = capacity;
83 if (position == limit) {
91 if (index < 0 || index >= limit) {
ReadWriteFloatArrayBuffer.java 32 buf.limit = other.limit();
59 position = limit - position;
60 limit = capacity;
86 if (position == limit) {
94 if (index < 0 || index >= limit) {
ReadWriteIntArrayBuffer.java 31 buf.limit = other.limit();
55 position = limit - position;
56 limit = capacity;
82 if (position == limit) {
90 if (index < 0 || index >= limit) {
ReadWriteLongArrayBuffer.java 31 buf.limit = other.limit();
55 position = limit - position;
56 limit = capacity;
82 if (position == limit) {
90 if (index < 0 || index >= limit) {
ReadWriteShortArrayBuffer.java 32 buf.limit = other.limit();
56 position = limit - position;
57 limit = capacity;
83 if (position == limit) {
91 if (index < 0 || index >= limit) {
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gxvalid/
gxvbsln.c 131 FT_Bytes limit; local
140 limit = lookuptbl_limit;
151 FT_Bytes limit,
170 FT_Bytes limit,
179 gxv_bsln_parts_fmt0_validate( p, limit, gxvalid );
186 limit,
195 FT_Bytes limit,
239 FT_Bytes limit,
248 gxv_bsln_parts_fmt2_validate( p, limit, gxvalid );
255 limit,
282 FT_Bytes limit = 0; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieTest.java 59 SetRange(int start, int limit, int value, boolean overwrite)
62 this.limit = limit;
67 int start, limit; field in class:TrieTest.SetRange
74 * value is set from the previous boundary's limit to before
75 * this boundary's limit
79 CheckRange(int limit, int value)
81 this.limit = limit;
85 int limit; field in class:TrieTest.CheckRange
100 int limit = start + 0x400; local
158 int limit = s.length(); local
213 int limit = setRanges[i].limit; local
231 int limit = checkRanges[i].limit; local
252 int limit = checkRanges[i].limit; local
276 int limit = checkRanges[i].limit; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieTest.java 55 SetRange(int start, int limit, int value, boolean overwrite)
58 this.limit = limit;
63 int start, limit; field in class:TrieTest.SetRange
70 * value is set from the previous boundary's limit to before
71 * this boundary's limit
75 CheckRange(int limit, int value)
77 this.limit = limit;
81 int limit; field in class:TrieTest.CheckRange
96 int limit = start + 0x400; local
154 int limit = s.length(); local
209 int limit = setRanges[i].limit; local
227 int limit = checkRanges[i].limit; local
248 int limit = checkRanges[i].limit; local
272 int limit = checkRanges[i].limit; local
    [all...]
  /external/icu/icu4c/source/i18n/
funcrepl.cpp 80 int32_t limit,
85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
86 limit = start + len;
89 limit = translit->transliterate(text, start, limit);
91 return limit - start;
  /external/valgrind/none/tests/x86-linux/
seg_override.c 46 unsigned int limit = ent->LimitLow | (ent->HighWord.Bits.LimitHi << 16);
47 if (ent->HighWord.Bits.Granularity) limit = (limit << 12) | 0xfff;
48 return limit;
76 unsigned int limit; member in struct:modify_ldt_ldt_s
99 ldt_entry.limit = 10;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiLine.java 115 static Bidi setLine(Bidi paraBidi, int start, int limit) {
127 lineBidi.resultLength = limit - start;
138 for (j = start; j < limit; j++) {
168 } else if (paraBidi.trailingWSStart < limit) {
290 logicalLimit = iRun.start + iRun.limit - visualStart;
295 visualStart = iRun.limit;
298 newRun.limit = logicalLimit;
306 int limit; local
310 limit = start +
311 bidi.runs[runIndex].limit
491 int length = bidi.length, limit; local
673 int start, limit, sumOfSosEos; local
742 int start, end, limit, temp; local
867 int i, j, start, limit, length, insertRemove; local
987 int begin = 0, limit = runCount; local
    [all...]
NormalizationTransliterator.java 78 // start and limit of the input range
80 int limit = offsets.limit; local
81 if(start >= limit) {
88 * In incremental mode, a chunk that ends with offsets.limit
106 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
107 if(start == limit && isIncremental && !norm2.hasBoundaryAfter(c)) {
108 // stop in incremental mode when we reach the input limit
122 limit += delta;
124 } while(start < limit);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiLine.java 114 static Bidi setLine(Bidi paraBidi, int start, int limit) {
126 lineBidi.resultLength = limit - start;
137 for (j = start; j < limit; j++) {
167 } else if (paraBidi.trailingWSStart < limit) {
289 logicalLimit = iRun.start + iRun.limit - visualStart;
294 visualStart = iRun.limit;
297 newRun.limit = logicalLimit;
305 int limit; local
309 limit = start +
310 bidi.runs[runIndex].limit
490 int length = bidi.length, limit; local
672 int start, limit, sumOfSosEos; local
741 int start, end, limit, temp; local
866 int i, j, start, limit, length, insertRemove; local
986 int begin = 0, limit = runCount; local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
MessageDigestSpiTest.java 97 int limit = buf.limit(); local
99 assertEquals(limit, buf.limit());
100 assertEquals(limit, buf.position());
107 assertEquals(limit, buf.limit());
108 assertEquals(limit, buf.position());
  /external/icu/icu4c/source/common/
patternprops.cpp 180 int32_t limit=length; local
181 while(start<limit && isWhiteSpace(s[start])) {
184 if(start<limit) {
185 // There is non-white space at start; we will not move limit below that,
186 // so we need not test start<limit in the loop.
187 while(isWhiteSpace(s[limit-1])) {
188 --limit;
191 length=limit-start;
200 const UChar *limit=s+length; local
205 } while(s<limit);
    [all...]
util_props.cpp 26 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) {
32 if (p < limit && rule.charAt(p) == 48 /*0*/) {
33 if (p+1 < limit && (rule.charAt(p+1) == 0x78 /*x*/ || rule.charAt(p+1) == 0x58 /*X*/)) {
44 while (p < limit) {
86 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit,
96 if (pos >= limit) {
109 parsedInts[intCount++] = parseInteger(rule, p, limit);
117 if (pos >= limit) {
  /external/okhttp/okio/okio/src/main/java/okio/
DeflaterSink.java 64 int toDeflate = (int) Math.min(byteCount, head.limit - head.pos);
73 if (head.pos == head.limit) {
95 ? deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit, Deflater.SYNC_FLUSH)
96 : deflater.deflate(s.data, s.limit, Segment.SIZE - s.limit);
99 s.limit += deflated;
103 if (s.pos == s.limit) {
  /external/valgrind/none/tests/x86/
x87trigOOR.c 126 Double limit = 9223372036854775808.0; // 2^63 local
143 try( name, fn, limit * 0.900000 );
144 try( name, fn, limit * 0.999999 );
145 try( name, fn, limit * 1.000000 );
146 try( name, fn, limit * 1.000001 );
147 try( name, fn, limit * 1.100000 );
150 try( name, fn, -limit * 0.900000 );
151 try( name, fn, -limit * 0.999999 );
152 try( name, fn, -limit * 1.000000 );
153 try( name, fn, -limit * 1.000001 )
    [all...]

Completed in 1023 milliseconds

1 2 3 4 5 67 8 91011>>