Searched defs:limit (Results 226 - 250 of 934) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/common/
H A Dpropname.cpp150 // Read and skip the start and limit of this range.
152 int32_t limit=valueMaps[i+1]; local
157 if(property<limit) {
160 i+=(limit-start)*2; // Skip all entries for this range.
174 // Read and skip the start and limit of this range.
176 int32_t limit=valueMaps[valueMapIndex+1]; local
181 if(value<limit) {
184 valueMapIndex+=limit-start; // Skip all entries for this range.
H A Dpropsvec.c30 int32_t columns; /* number of columns, plus two for start & limit values */
54 columns+=2; /* count range start and limit columns */
95 int32_t columns, i, start, limit, prevRow; local
98 limit=pv->rows;
133 while(start<limit-1) {
134 i=(start+limit)/2;
137 limit=i;
159 UChar32 limit; local
177 limit=end+1;
181 column+=2; /* skip range start and limit column
337 UChar32 start, limit; local
[all...]
H A Drbbisetb.cpp60 UChar32 limit; local
63 limit=start+0x400;
64 while(start<limit) {
H A Dubidi_props.c64 UChar32 c, start, limit; local
85 limit=bdp->indexes[UBIDI_IX_JG_LIMIT];
88 while(start<limit) {
97 /* add the limit code point if the last value was not 0 (it is now start==limit) */
98 sa->add(sa->set, limit);
201 UChar32 start, limit; local
204 limit=bdp->indexes[UBIDI_IX_JG_LIMIT];
205 if(start<=c && c<limit) {
H A Ducmndata.c121 int32_t limit=count; local
123 * Remember the shared prefix between s, start and limit,
125 * The shared prefix should get longer as we narrow the [start, limit[ range.
134 * both the start and limit indexes have moved.
135 * At the same time, we find if s is one of the start and (limit-1) names,
142 --limit;
143 if(0==strcmpAfterPrefix(s, names+toc[limit].nameOffset, &limitPrefixLength)) {
144 return limit;
146 while(start<limit) {
147 int32_t i=(start+limit)/
166 int32_t limit=count; local
[all...]
H A Dunorm_it.c50 * api.limit: one past the last valid character in chars[], but states[limit] is valid
58 /* there are UChars available before start or after limit? */
74 api->start=api->index=api->limit=0;
79 api->start=api->index=api->limit=uni->capacity;
84 api->start=api->index=api->limit=uni->capacity/2;
96 int32_t start, limit; local
107 limit=api->limit;
114 uprv_memcpy(states+delta+start, uni->states+start, (limit
135 int32_t srcIndex, destIndex, limit; local
195 int32_t limit, capacity, room; local
[all...]
H A Dunormcmp.cpp131 const UChar *start, *s, *limit; member in struct:CmpEquivLevel
150 /* current-level start/limit - s1/s2 as current */
157 /* stacks of previous-level start/current/limit */
163 /* case folding buffers, only use current-level start/limit */
239 limit1=stack1[level1].limit; /*Not uninitialized*/
262 limit2=stack2[level2].limit; /*Not uninitialized*/
345 stack1[0].limit=limit1;
390 stack2[0].limit=limit2;
435 stack1[level1].limit=limit1;
476 stack2[level2].limit
[all...]
H A Dutil.cpp108 int32_t start, int32_t limit,
110 for (int32_t i=start; i<limit; ++i) {
115 while (++i < limit
149 * given a range defined as [start, limit), the call
150 * skipWhitespace(text, start, limit) will advance start past leading
151 * whitespace, whereas the call skipWhitespace(text, limit, start),
152 * will back up limit past trailing whitespace.
154 * @param pos either the start or limit of a range of 'text', to skip
156 * @param stop either the limit or start of a range of 'text', to skip
158 * @return the new start or limit, dependin
227 parsePattern(const UnicodeString& pat, const Replaceable& text, int32_t index, int32_t limit) argument
[all...]
H A Duvectr32.cpp237 void UVector32::setMaxCapacity(int32_t limit) { argument
238 U_ASSERT(limit >= 0);
239 if (limit < 0) {
240 limit = 0;
242 if (limit > (int32_t)(INT32_MAX / sizeof(int32_t))) { // integer overflow check for realloc
246 maxCapacity = limit;
248 // Current capacity is within the new limit.
/external/chromium_org/third_party/icu/source/i18n/
H A Danytrans.cpp58 * | | - first run (start, limit)
59 * | | - second run (start, limit)
87 int32_t limit; member in class:ScriptRunIterator
91 * (inclusive) to limit (exclusive).
93 ScriptRunIterator(const Replaceable& text, int32_t start, int32_t limit);
98 * examine scriptCode, start, and limit.
103 * Adjusts internal indices for a change in the limit index of the
104 * given delta. A positive delta means the limit has increased.
119 limit = myStart;
128 start = limit;
257 int32_t limit = pos.limit; local
[all...]
H A Dcpdtrans.cpp478 * start, but with the limit as modified
489 * value) of transliterator i becomes the limit (input value)
490 * of transliterator i+1. Finally, the overall limit is fixed
494 * (1) contextStart <= start <= limit <= contextLimit <= text.length()
495 * (2) start <= start' <= limit' ;cursor doesn't move back
496 * (3) start <= limit' ;text before cursor unchanged
498 * - limit' is the value of limit after calling handleKT
504 * start, and limit. gl is the globalLimit. contextLimit is
505 * equal to limit throughou
553 int32_t limit = index.limit; local
[all...]
H A Drbt_rule.cpp54 * context limit
345 * be completed by additional text inserted at pos.limit.
412 match = key->matches(text, oText, pos.limit, incremental);
421 if (incremental && keyLimit == pos.limit) {
422 // The key matches just before pos.limit, and there is
425 // pos.limit -- this is a partial match.
456 pos.limit += lenDelta;
458 // Restrict new value of start to [minOText, min(oText, pos.limit)].
459 pos.start = uprv_max(minOText, uprv_min(uprv_min(oText, pos.limit), newStart));
532 int32_t limit local
[all...]
H A Dstrmatch.cpp27 int32_t limit,
35 theString.extractBetween(start, limit, pattern);
90 int32_t limit,
94 if (limit < cursor) {
100 if (cursor > limit &&
108 subm->matches(text, cursor, limit, incremental);
115 // forward start, limit, and only if a prior match does not
123 if (incremental && cursor == limit) {
124 // We've reached the context limit without a mismatch and
131 // Don't need the cursor < limit chec
25 StringMatcher(const UnicodeString& theString, int32_t start, int32_t limit, int32_t segmentNum, const TransliterationRuleData& theData) argument
88 matches(const Replaceable& text, int32_t& offset, int32_t limit, UBool incremental) argument
218 replace(Replaceable& text, int32_t start, int32_t limit, int32_t& ) argument
[all...]
H A Dunesctrn.cpp175 int32_t limit = pos.limit; local
178 while (start < limit) {
197 if (s >= limit) {
221 if (s >= limit) {
244 if (s >= limit) {
263 limit -= s - start - str.length();
276 if (start < limit) {
282 pos.contextLimit += limit - pos.limit;
[all...]
/external/chromium_org/third_party/icu/source/io/
H A Dufmt_cmn.c136 const UChar *limit; local
142 limit = buffer + *len;
147 while(ufmt_isdigit(*buffer, radix) && buffer < limit) {
/external/chromium_org/third_party/icu/source/samples/layout/
H A Dparagraph.cpp57 static void subsetFontRuns(const FontRuns *fontRuns, le_int32 start, le_int32 limit, FontRuns *sub) argument
60 le_int32 endRun = findRun(fontRuns, limit - 1);
69 runLimit = limit - start;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dreptest.cpp90 void extractBetween(int32_t start, int32_t limit, UnicodeString& result) const { argument
91 chars.extractBetween(start, limit, result);
121 void fixStyles(int32_t start, int32_t limit, int32_t newLen) { argument
123 if (start != limit && styles.charAt(start) != NO_STYLE) {
127 } else if (limit < styles.length()) {
128 newStyle = styles.charAt(limit);
142 styles.replaceBetween(start, limit, s);
145 virtual void handleReplaceBetween(int32_t start, int32_t limit, const UnicodeString& text) { argument
147 this->extractBetween(start, limit, s);
149 this->chars.replaceBetween(start, limit, tex
154 copy(int32_t start, int32_t limit, int32_t dest) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dppucd.cpp134 char *limit=strchr(line, 0); local
135 while(line<limit && ((c=*(limit-1))=='\n' || c=='\r')) { --limit; }
137 while(line<limit && ((c=*(limit-1))==' ' || c=='\t')) { --limit; }
138 *limit=0;
139 lineLimit=limit;
140 if(line==limit) {
[all...]
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dblock.cc49 // "*value_length", respectively. Will not derefence past "limit".
53 static inline const char* DecodeEntry(const char* p, const char* limit, argument
57 if (limit - p < 3) return NULL;
65 if ((p = GetVarint32Ptr(p, limit, shared)) == NULL) return NULL;
66 if ((p = GetVarint32Ptr(p, limit, non_shared)) == NULL) return NULL;
67 if ((p = GetVarint32Ptr(p, limit, value_length)) == NULL) return NULL;
70 if (static_cast<uint32_t>(limit - p) < (*non_shared + *value_length)) {
229 const char* limit = data_ + restarts_; // Restarts come right after data local
230 if (p >= limit) {
239 p = DecodeEntry(p, limit,
[all...]
/external/chromium_org/third_party/libsrtp/srtp/include/
H A Dsrtp_priv.h219 key_limit_ctx_t *limit; member in struct:srtp_stream_ctx_t
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dfdct4x4_test.cc89 void RunAccuracyCheck(int limit) { argument
144 EXPECT_GE(static_cast<uint32_t>(limit), max_error)
146 << limit; local
148 EXPECT_GE(count_test_block * limit, total_error)
149 << "Error: 4x4 FHT/IHT has average round trip error > " << limit
209 void RunInvAccuracyCheck(int limit) { argument
256 EXPECT_GE(static_cast<uint32_t>(limit), error)
H A Dvideo_source.h130 // Get the current file limit.
131 virtual unsigned int limit() const = 0;
169 virtual unsigned int limit() const { return limit_; } function in class:libvpx_test::DummyVideoSource
171 void set_limit(unsigned int limit) { argument
172 limit_ = limit;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dloopfilter_filters.c27 static signed char vp8_filter_mask(uc limit, uc blimit, argument
32 mask |= (abs(p3 - p2) > limit);
33 mask |= (abs(p2 - p1) > limit);
34 mask |= (abs(p1 - p0) > limit);
35 mask |= (abs(q1 - q0) > limit);
36 mask |= (abs(q2 - q1) > limit);
37 mask |= (abs(q3 - q2) > limit);
103 const unsigned char *limit,
117 mask = vp8_filter_mask(limit[0], blimit[0],
135 const unsigned char *limit,
98 vp8_loop_filter_horizontal_edge_c( unsigned char *s, int p, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count ) argument
130 vp8_loop_filter_vertical_edge_c( unsigned char *s, int p, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count ) argument
216 vp8_mbloop_filter_horizontal_edge_c( unsigned char *s, int p, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count ) argument
251 vp8_mbloop_filter_vertical_edge_c( unsigned char *s, int p, const unsigned char *blimit, const unsigned char *limit, const unsigned char *thresh, int count ) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_loopfilter_filters_dspr2.c26 const uint8_t *limit,
38 ulimit = *limit;
120 const uint8_t *limit,
132 ulimit = *limit;
357 const uint8_t *limit,
359 vp9_lpf_vertical_16_dspr2(s, p, blimit, limit, thresh);
360 vp9_lpf_vertical_16_dspr2(s + 8 * p, p, blimit, limit, thresh);
23 vp9_lpf_horizontal_4_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) argument
117 vp9_lpf_vertical_4_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) argument
355 vp9_lpf_vertical_16_dual_dspr2(uint8_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh) argument
H A Dvp9_mbloop_loopfilter_dspr2.c26 const uint8_t *limit,
41 ulimit = *limit;
325 const uint8_t *limit,
340 ulimit = *limit;
23 vp9_lpf_horizontal_8_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) argument
322 vp9_lpf_vertical_8_dspr2(unsigned char *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) argument

Completed in 1309 milliseconds

1234567891011>>