/third_party/icu/icu4c/source/common/ |
H A D | bmpset.cpp | 68 * start<limit<=0x800 70 static void set32x64Bits(uint32_t table[64], int32_t start, int32_t limit) { in set32x64Bits() argument 71 U_ASSERT(start<limit); in set32x64Bits() 72 U_ASSERT(limit<=0x800); in set32x64Bits() 79 if((start+1)==limit) { // Single-character shortcut. in set32x64Bits() 84 int32_t limitLead=limit>>6; in set32x64Bits() 85 int32_t limitTrail=limit&0x3f; in set32x64Bits() 111 // limit<=0x800. If limit==0x800 then limitLead=32 and limitTrail=0. in set32x64Bits() 122 UChar32 start, limit; [all...] |
H A D | localeprioritylist.cpp | 54 const char *skipSpaces(const char *p, const char *limit) { in skipSpaces() argument 55 while (p < limit && *p == ' ') { ++p; } in skipSpaces() 59 int32_t findTagLength(const char *p, const char *limit) { in findTagLength() argument 63 for (q = p; q < limit; ++q) { in findTagLength() 75 int32_t parseWeight(const char *&p, const char *limit) { in parseWeight() argument 76 p = skipSpaces(p, limit); in parseWeight() 78 if (p == limit || ((c = *p) != '0' && c != '1')) { return -1; } in parseWeight() 80 if (++p == limit || *p != '.') { return weight; } in parseWeight() 82 while (++p != limit && '0' <= (c = *p) && c <= '9') { in parseWeight() 121 const char *limit in LocalePriorityList() local [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | bmpset.cpp | 68 * start<limit<=0x800 70 static void set32x64Bits(uint32_t table[64], int32_t start, int32_t limit) { in set32x64Bits() argument 71 U_ASSERT(start<limit); in set32x64Bits() 72 U_ASSERT(limit<=0x800); in set32x64Bits() 79 if((start+1)==limit) { // Single-character shortcut. in set32x64Bits() 84 int32_t limitLead=limit>>6; in set32x64Bits() 85 int32_t limitTrail=limit&0x3f; in set32x64Bits() 111 // limit<=0x800. If limit==0x800 then limitLead=32 and limitTrail=0. in set32x64Bits() 122 UChar32 start, limit; [all...] |
H A D | localeprioritylist.cpp | 54 const char *skipSpaces(const char *p, const char *limit) { in skipSpaces() argument 55 while (p < limit && *p == ' ') { ++p; } in skipSpaces() 59 int32_t findTagLength(const char *p, const char *limit) { in findTagLength() argument 63 for (q = p; q < limit; ++q) { in findTagLength() 75 int32_t parseWeight(const char *&p, const char *limit) { in parseWeight() argument 76 p = skipSpaces(p, limit); in parseWeight() 78 if (p == limit || ((c = *p) != '0' && c != '1')) { return -1; } in parseWeight() 80 if (++p == limit || *p != '.') { return weight; } in parseWeight() 82 while (++p != limit && '0' <= (c = *p) && c <= '9') { in parseWeight() 121 const char *limit in LocalePriorityList() local [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | bmpset.cpp | 68 * start<limit<=0x800 70 static void set32x64Bits(uint32_t table[64], int32_t start, int32_t limit) { in set32x64Bits() argument 71 U_ASSERT(start<limit); in set32x64Bits() 72 U_ASSERT(limit<=0x800); in set32x64Bits() 79 if((start+1)==limit) { // Single-character shortcut. in set32x64Bits() 84 int32_t limitLead=limit>>6; in set32x64Bits() 85 int32_t limitTrail=limit&0x3f; in set32x64Bits() 111 // limit<=0x800. If limit==0x800 then limitLead=32 and limitTrail=0. in set32x64Bits() 122 UChar32 start, limit; [all...] |
H A D | localeprioritylist.cpp | 54 const char *skipSpaces(const char *p, const char *limit) { in skipSpaces() argument 55 while (p < limit && *p == ' ') { ++p; } in skipSpaces() 59 int32_t findTagLength(const char *p, const char *limit) { in findTagLength() argument 63 for (q = p; q < limit; ++q) { in findTagLength() 75 int32_t parseWeight(const char *&p, const char *limit) { in parseWeight() argument 76 p = skipSpaces(p, limit); in parseWeight() 78 if (p == limit || ((c = *p) != '0' && c != '1')) { return -1; } in parseWeight() 80 if (++p == limit || *p != '.') { return weight; } in parseWeight() 82 while (++p != limit && '0' <= (c = *p) && c <= '9') { in parseWeight() 121 const char *limit in LocalePriorityList() local [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | BMPSet.java | 132 * @return the limit (exclusive end) of the span 142 int limit = s.length(); in span() 146 while (i < limit) { in span() 157 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) { in span() 185 while (i < limit) { in span() 196 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) { in span() 233 * limit and spanCondition==0 or 1. 237 public final int spanBack(CharSequence s, int limit, SpanCondition spanCondition) { in spanBack() argument 243 c = s.charAt(--limit); in spanBack() 253 c < 0xdc00 || 0 == limit || (c in spanBack() 327 set32x64Bits(int[] table, int start, int limit) set32x64Bits() argument [all...] |
H A D | PatternProps.java | 108 int limit=s.length(); in trimWhiteSpace() 109 while(start<limit && isWhiteSpace(s.charAt(start))) { in trimWhiteSpace() 112 if(start<limit) { in trimWhiteSpace() 113 // There is non-white space at start; we will not move limit below that, in trimWhiteSpace() 114 // so we need not test start<limit in the loop. in trimWhiteSpace() 115 while(isWhiteSpace(s.charAt(limit-1))) { in trimWhiteSpace() 116 --limit; in trimWhiteSpace() 119 return s.substring(start, limit); in trimWhiteSpace() 131 int limit = s.length(); in trimSpaceChar() 132 while (start < limit in trimSpaceChar() 170 isIdentifier(CharSequence s, int start, int limit) isIdentifier() argument [all...] |
H A D | UCharArrayIterator.java | 23 private final int limit; field in UCharArrayIterator 26 public UCharArrayIterator(char[] text, int start, int limit) { in UCharArrayIterator() argument 27 if (start < 0 || limit > text.length || start > limit) { in UCharArrayIterator() 28 throw new IllegalArgumentException("start: " + start + " or limit: " in UCharArrayIterator() 29 + limit + " out of range [0, " in UCharArrayIterator() 34 this.limit = limit; in UCharArrayIterator() 41 return pos < limit ? text[pos] : DONE; in current() 46 return limit in getLength() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | BMPSet.java | 134 * @return the limit (exclusive end) of the span 144 int limit = s.length(); in span() 148 while (i < limit) { in span() 159 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) { in span() 187 while (i < limit) { in span() 198 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) { in span() 235 * limit and spanCondition==0 or 1. 239 public final int spanBack(CharSequence s, int limit, SpanCondition spanCondition) { in spanBack() argument 245 c = s.charAt(--limit); in spanBack() 255 c < 0xdc00 || 0 == limit || (c in spanBack() 329 set32x64Bits(int[] table, int start, int limit) set32x64Bits() argument [all...] |
H A D | UCharArrayIterator.java | 25 private final int limit; field in UCharArrayIterator 28 public UCharArrayIterator(char[] text, int start, int limit) { in UCharArrayIterator() argument 29 if (start < 0 || limit > text.length || start > limit) { in UCharArrayIterator() 30 throw new IllegalArgumentException("start: " + start + " or limit: " in UCharArrayIterator() 31 + limit + " out of range [0, " in UCharArrayIterator() 36 this.limit = limit; in UCharArrayIterator() 43 return pos < limit ? text[pos] : DONE; in current() 48 return limit in getLength() [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cLimitsTests.cpp | 237 const Limit<GLint>& limit = intLimits[idx]; in init() local 238 addChild(new glcts::LimitCase<GLint>(m_context, limit.name, limit.token, limit.boundry, limit.isMaximum, "450", limit.builtin )); in init() 243 const Limit<GLint64>& limit = int64Limits[idx]; in init() local 244 addChild(new glcts::LimitCase<GLint64>(m_context, limit.name, limit.token, limit in init() 249 const Limit<GLuint64>& limit = uint64Limits[idx]; init() local 255 const Limit<GLfloat>& limit = floatLimits[idx]; init() local 261 const Limit<tcu::IVec3>& limit = ivec3Limits[idx]; init() local [all...] |
/third_party/optimized-routines/string/aarch64/ |
H A D | memcmp.S | 17 #define limit x2 define 34 subs limit, limit, 8 42 subs limit, limit, 8 45 ldr data1, [src1, limit] 46 ldr data2, [src2, limit] 57 subs limit, limit, 16 61 try to align, so limit i [all...] |
H A D | strncmp-mte.S | 21 #define limit x2 define 60 cbz limit, L(ret0) 76 subs limit, limit, #8 89 add limit, limit, 8 /* Rewind limit to before last subs. */ 92 is before the limit. */ 98 cmp limit, pos, lsr #3 107 /* Not reached the limit, mus [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | BidiLine.java | 116 static Bidi setLine(Bidi paraBidi, int start, int limit) { in setLine() argument 128 lineBidi.resultLength = limit - start; in setLine() 139 for (j = start; j < limit; j++) { in setLine() 169 } else if (paraBidi.trailingWSStart < limit) { in setLine() 291 logicalLimit = iRun.start + iRun.limit - visualStart; in getLogicalRun() 296 visualStart = iRun.limit; in getLogicalRun() 299 newRun.limit = logicalLimit; in getLogicalRun() 307 int limit; in getVisualRun() 311 limit = start + in getVisualRun() 312 bidi.runs[runIndex].limit in getVisualRun() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | BidiLine.java | 117 static Bidi setLine(Bidi paraBidi, int start, int limit) { in setLine() argument 129 lineBidi.resultLength = limit - start; in setLine() 140 for (j = start; j < limit; j++) { in setLine() 170 } else if (paraBidi.trailingWSStart < limit) { in setLine() 292 logicalLimit = iRun.start + iRun.limit - visualStart; in getLogicalRun() 297 visualStart = iRun.limit; in getLogicalRun() 300 newRun.limit = logicalLimit; in getLogicalRun() 308 int limit; in getVisualRun() 312 limit = start + in getVisualRun() 313 bidi.runs[runIndex].limit in getVisualRun() [all...] |
/third_party/optimized-routines/math/test/rtest/ |
H A D | random.c | 44 * 0,...,limit-1. (Precondition: limit > 0.) 60 static uint32 random_upto_makemask(uint32 limit) { in random_upto_makemask() argument 64 if ((limit & (mask >> i)) == limit) in random_upto_makemask() 69 static uint32 random_upto_internal(uint32 limit, uint32 mask) { in random_upto_internal() argument 73 } while (ret > limit); in random_upto_internal() 77 uint32 random_upto(uint32 limit) { in random_upto() argument 78 uint32 mask = random_upto_makemask(limit); in random_upto() 79 return random_upto_internal(limit, mas in random_upto() 82 random_upto_biased(uint32 limit, int bias) random_upto_biased() argument [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | utf16collationiterator.cpp | 35 limit(other.limit == NULL ? NULL : newText + (other.limit - other.start)) { in UTF16CollationIterator() 61 if(pos == limit) { in handleNextCE32() 71 if(pos == limit) { return 0; } in handleGetTrailSurrogate() 79 if(limit == NULL) { in foundNULTerminator() 80 limit = --pos; in foundNULTerminator() 89 if(pos == limit) { in nextCodePoint() 93 if(c == 0 && limit == NULL) { in nextCodePoint() 94 limit in nextCodePoint() [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | utf16collationiterator.cpp | 35 limit(other.limit == nullptr ? nullptr : newText + (other.limit - other.start)) { in UTF16CollationIterator() 61 if(pos == limit) { in handleNextCE32() 71 if(pos == limit) { return 0; } in handleGetTrailSurrogate() 79 if(limit == nullptr) { in foundNULTerminator() 80 limit = --pos; in foundNULTerminator() 89 if(pos == limit) { in nextCodePoint() 93 if(c == 0 && limit == nullptr) { in nextCodePoint() 94 limit in nextCodePoint() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | utf16collationiterator.cpp | 35 limit(other.limit == NULL ? NULL : newText + (other.limit - other.start)) { in UTF16CollationIterator() 61 if(pos == limit) { in handleNextCE32() 71 if(pos == limit) { return 0; } in handleGetTrailSurrogate() 79 if(limit == NULL) { in foundNULTerminator() 80 limit = --pos; in foundNULTerminator() 89 if(pos == limit) { in nextCodePoint() 93 if(c == 0 && limit == NULL) { in nextCodePoint() 94 limit in nextCodePoint() [all...] |
/third_party/ltp/testcases/kernel/syscalls/sched_setscheduler/ |
H A D | sched_setscheduler03.c | 60 static void l_rlimit_show(const int type, struct rlimit *limit) in l_rlimit_show() argument 62 SAFE_GETRLIMIT(type, limit); in l_rlimit_show() 64 "rlimit rlim_cur=%lu", (unsigned long)(limit->rlim_cur)); in l_rlimit_show() 66 "rlimit rlim_max=%lu", (unsigned long)(limit->rlim_max)); in l_rlimit_show() 69 static void l_rlimit_setup(const int type, struct rlimit *limit) in l_rlimit_setup() argument 74 "Setting rlim_cur to %lu", (unsigned long)(limit->rlim_cur)); in l_rlimit_setup() 76 "Setting rlim_max to %lu", (unsigned long)(limit->rlim_max)); in l_rlimit_setup() 78 SAFE_SETRLIMIT(type, limit); in l_rlimit_setup() 82 if (tmp_rlimit.rlim_cur != limit->rlim_cur) in l_rlimit_setup() 84 (unsigned long)(limit in l_rlimit_setup() 108 struct rlimit limit; setup() local [all...] |
/third_party/skia/third_party/externals/freetype/src/gxvalid/ |
H A D | gxvjust.c | 89 FT_Bytes limit, in gxv_just_wdp_entry_validate() 132 FT_Bytes limit, in gxv_just_wdc_entry_validate() 144 gxv_just_wdp_entry_validate( p, limit, gxvalid ); in gxv_just_wdc_entry_validate() 154 FT_Bytes limit, in gxv_just_widthDeltaClusters_validate() 164 if ( limit <= wdc_end ) in gxv_just_widthDeltaClusters_validate() 169 gxv_just_wdc_entry_validate( p, limit, gxvalid ); in gxv_just_widthDeltaClusters_validate() 181 FT_Bytes limit, in gxv_just_actSubrecord_type0_validate() 230 FT_Bytes limit, in gxv_just_actSubrecord_type1_validate() 248 FT_Bytes limit, in gxv_just_actSubrecord_type2_validate() 279 FT_Bytes limit, in gxv_just_actSubrecord_type4_validate() 88 gxv_just_wdp_entry_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_wdp_entry_validate() argument 131 gxv_just_wdc_entry_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_wdc_entry_validate() argument 153 gxv_just_widthDeltaClusters_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_widthDeltaClusters_validate() argument 180 gxv_just_actSubrecord_type0_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_actSubrecord_type0_validate() argument 229 gxv_just_actSubrecord_type1_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_actSubrecord_type1_validate() argument 247 gxv_just_actSubrecord_type2_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_actSubrecord_type2_validate() argument 278 gxv_just_actSubrecord_type4_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_actSubrecord_type4_validate() argument 315 gxv_just_actSubrecord_type5_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_actSubrecord_type5_validate() argument 339 gxv_just_actSubrecord_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_actSubrecord_validate() argument 382 gxv_just_pcActionRecord_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_pcActionRecord_validate() argument 422 gxv_just_pcLookupTable_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_pcLookupTable_validate() argument 445 gxv_just_postcompTable_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_postcompTable_validate() argument 467 gxv_just_classTable_entry_validate( FT_Byte state, FT_UShort flags, GXV_StateTable_GlyphOffsetCPtr glyphOffset_p, FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_classTable_entry_validate() argument 501 gxv_just_justClassTable_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_justClassTable_validate() argument 558 gxv_just_justData_lookuptable_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_justData_lookuptable_validate() argument 583 gxv_just_justData_validate( FT_Bytes table, FT_Bytes limit, GXV_Validator gxvalid ) gxv_just_justData_validate() argument 652 FT_Bytes limit = 0; gxv_just_validate() local [all...] |
/third_party/skia/third_party/externals/freetype/src/psaux/ |
H A D | psconv.c | 84 FT_Byte* limit, in FT_LOCAL_DEF() 97 if ( p >= limit ) in FT_LOCAL_DEF() 111 if ( p == limit ) in FT_LOCAL_DEF() 122 for ( ; p < limit; p++ ) in FT_LOCAL_DEF() 162 FT_Byte* limit ) in FT_LOCAL_DEF() 172 num = PS_Conv_Strtol( &p, limit, 10 ); in FT_LOCAL_DEF() 177 if ( p < limit && *p == '#' ) in FT_LOCAL_DEF() 182 num = PS_Conv_Strtol( &p, limit, num ); in FT_LOCAL_DEF() 196 FT_Byte* limit, in FT_LOCAL_DEF() 211 if ( p >= limit ) in FT_LOCAL_DEF() [all...] |
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | AnyTransliterator.java | 55 run.start = run.limit; // show we processed in handleTransliterate() 87 it.adjust(run.limit); in handleTransliterate() 97 if (run.start == run.limit) offsets.start = offsets.limit; in handleTransliterate() 109 + ", l: " + offsets.limit in toString() 134 * The only time that contextLimit != limit is for the last run 157 current.start = current.limit = current.contextLimit = expanse.start; in reset() 165 + ", l: " + current.limit in next() 169 current.start = current.limit; in next() 173 int limit in next() [all...] |
/third_party/elfutils/libdw/ |
H A D | dwarf_next_cfi.c | 64 const uint8_t *limit = data->d_buf + data->d_size; in dwarf_next_cfi() local 75 if (unlikely (limit - bytes < 8)) in dwarf_next_cfi() 90 if (unlikely ((uint64_t) (limit - bytes) < length) in dwarf_next_cfi() 100 limit = bytes + length; in dwarf_next_cfi() 139 bytes = memchr (bytes, '\0', limit - bytes); in dwarf_next_cfi() 149 if (unlikely (limit - bytes < 5)) in dwarf_next_cfi() 180 if (bytes >= limit) in dwarf_next_cfi() 182 get_uleb128 (entry->cie.code_alignment_factor, bytes, limit); in dwarf_next_cfi() 184 if (bytes >= limit) in dwarf_next_cfi() 186 get_sleb128 (entry->cie.data_alignment_factor, bytes, limit); in dwarf_next_cfi() [all...] |