Lines Matching refs:limit
30 UChar32 start, limit;
37 * value is set from the previous boundary's limit to before
38 * this boundary's limit
40 * There must be an entry with limit 0 and the intialValue.
41 * It may be preceded by an entry with negative limit and the errorValue.
44 UChar32 limit;
51 for(i=0; i<countCheckRanges && checkRanges[i].limit<=0; ++i) {}
59 if(i<countCheckRanges && checkRanges[i].limit<0) {
64 if(i<countCheckRanges && checkRanges[i].limit==0) {
83 UChar32 limit=end+1;
86 if(start!=(b-1)->limit || limit!=b->limit || value!=b->value) {
89 (long)(b-1)->limit, (long)b->limit-1, (long)b->value);
99 while(countCheckRanges>0 && checkRanges[0].limit<=0) {
113 UChar32 start, limit;
123 limit=checkRanges[i].limit;
126 while(start<limit) {
174 limit=checkRanges[i].limit;
177 while(start<limit && start<=0x7f) {
273 const UChar *p, *limit;
287 c=checkRanges[i].limit;
296 limit=s+length;
301 while(p<limit) {
306 UTRIE2_U16_NEXT16(trie, p, limit, c, value);
308 UTRIE2_U16_NEXT32(trie, p, limit, c, value);
323 p=limit;
371 const uint8_t *p, *limit;
395 c=checkRanges[i].limit;
420 limit=s+length;
425 while(p<limit) {
429 UTRIE2_U8_NEXT16(trie, p, limit, value);
431 UTRIE2_U8_NEXT32(trie, p, limit, value);
452 p=limit;
801 UChar32 start, limit;
830 limit=setRanges[i].limit;
833 if((limit-start)==1 && overwrite) {
836 utrie2_setRange32(trie, start, limit-1, value, overwrite, &errorCode);
1288 UChar32 start, limit;
1308 limit=setRanges[i].limit;
1311 if((limit-start)==1 && overwrite) {
1314 ok&=utrie_setRange32(newTrie, start, limit, value, overwrite);