/third_party/node/deps/icu-small/source/common/ |
D | bmpset.cpp | 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() 122 UChar32 start, limit; in initBits() local 129 limit=list[listIndex++]; in initBits() 131 limit=0x110000; in initBits() 138 } while(start<limit && start<0x100); in initBits() [all …]
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | bmpset.cpp | 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() 122 UChar32 start, limit; in initBits() local 129 limit=list[listIndex++]; in initBits() 131 limit=0x110000; in initBits() 138 } while(start<limit && start<0x100); in initBits() [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | bmpset.cpp | 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() 122 UChar32 start, limit; in initBits() local 129 limit=list[listIndex++]; in initBits() 131 limit=0x110000; in initBits() 138 } while(start<limit && start<0x100); in initBits() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | bmpset.cpp | 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() 122 UChar32 start, limit; in initBits() local 129 limit=list[listIndex++]; in initBits() 131 limit=0x110000; in initBits() 138 } while(start<limit && start<0x100); in initBits() [all …]
|
/third_party/freetype/docs/reference/assets/javascripts/lunr/min/ |
D | lunr.tr.min.js | 18 …limit-Dr.cursor;if(Dr.in_grouping_b(r,i,e)){Dr.cursor=Dr.limit-n;break}if(Dr.cursor=Dr.limit-n,Dr.…
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | BMPSet.java | 144 int limit = s.length(); in span() local 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() 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 || (c2 = s.charAt(limit - 1)) < 0xd800 || c2 >= 0xdc00) { in spanBack() 276 --limit; in spanBack() 278 if (0 == limit) { in spanBack() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | BMPSet.java | 142 int limit = s.length(); in span() local 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() 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 || (c2 = s.charAt(limit - 1)) < 0xd800 || c2 >= 0xdc00) { in spanBack() 274 --limit; in spanBack() 276 if (0 == limit) { in spanBack() [all …]
|
D | PatternProps.java | 108 int limit=s.length(); in trimWhiteSpace() local 109 while(start<limit && isWhiteSpace(s.charAt(start))) { in trimWhiteSpace() 112 if(start<limit) { 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() local 132 while (start < limit && Character.isSpaceChar(s.charAt(start))) { in trimSpaceChar() 135 if (start < limit) { in trimSpaceChar() 138 while (isWhiteSpace(s.charAt(limit - 1))) { in trimSpaceChar() [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cLimitsTests.cpp | 237 const Limit<GLint>& limit = intLimits[idx]; in init() local 238 …ld(new glcts::LimitCase<GLint>(m_context, limit.name, limit.token, limit.boundry, limit.isMaximum,… in init() 243 const Limit<GLint64>& limit = int64Limits[idx]; in init() local 244 …(new glcts::LimitCase<GLint64>(m_context, limit.name, limit.token, limit.boundry, limit.isMaximum,… in init() 249 const Limit<GLuint64>& limit = uint64Limits[idx]; in init() local 250 …new glcts::LimitCase<GLuint64>(m_context, limit.name, limit.token, limit.boundry, limit.isMaximum,… in init() 255 const Limit<GLfloat>& limit = floatLimits[idx]; in init() local 256 …(new glcts::LimitCase<GLfloat>(m_context, limit.name, limit.token, limit.boundry, limit.isMaximum,… in init() 261 const Limit<tcu::IVec3>& limit = ivec3Limits[idx]; in init() local 262 …w glcts::LimitCase<tcu::IVec3>(m_context, limit.name, limit.token, limit.boundry, limit.isMaximum,… in init()
|
/third_party/optimized-routines/string/aarch64/ |
D | memcmp.S | 17 #define limit x2 macro 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 62 cmp limit, 96 67 add limit, limit, tmp1 78 subs limit, limit, 16 92 add src1, src1, limit [all …]
|
/third_party/node/deps/npm/node_modules/call-limit/ |
D | README.md | 1 call-limit 8 const limit = require('call-limit') 9 const limitedStat = limit(fs.stat, 5) 16 const limit = require('call-limit') 17 const limitedStat = limit.promise(fs.statAsync, 5) 25 const limit = require('call-limit') argument 28 ### limit(func, maxRunning) → limitedFunc 34 it completes, or `call-limit` won't know to dequeue the next thing to run. argument 39 ### limit.promise(func, maxRunning) → limitedFunc argument 49 ### limit.method(class, methodName, maxRunning) argument [all …]
|
/third_party/optimized-routines/math/test/rtest/ |
D | random.c | 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, mask); in random_upto() 82 uint32 random_upto_biased(uint32 limit, int bias) { in random_upto_biased() argument 83 uint32 mask = random_upto_makemask(limit); in random_upto_biased() 85 uint32 ret = random_upto_internal(limit, mask); in random_upto_biased() [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
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 = pos; in nextCodePoint() 99 if(U16_IS_LEAD(c) && pos != limit && U16_IS_TRAIL(trail = *pos)) { in nextCodePoint() 124 while(num > 0 && pos != limit) { in forwardNumCodePoints() [all …]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
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 = pos; in nextCodePoint() 99 if(U16_IS_LEAD(c) && pos != limit && U16_IS_TRAIL(trail = *pos)) { in nextCodePoint() 124 while(num > 0 && pos != limit) { in forwardNumCodePoints() [all …]
|
/third_party/icu/icu4c/source/i18n/ |
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 = pos; in nextCodePoint() 99 if(U16_IS_LEAD(c) && pos != limit && U16_IS_TRAIL(trail = *pos)) { in nextCodePoint() 124 while(num > 0 && pos != limit) { in forwardNumCodePoints() [all …]
|
/third_party/node/deps/icu-small/source/i18n/ |
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 = pos; in nextCodePoint() 99 if(U16_IS_LEAD(c) && pos != limit && U16_IS_TRAIL(trail = *pos)) { in nextCodePoint() 124 while(num > 0 && pos != limit) { in forwardNumCodePoints() [all …]
|
/third_party/pcre2/pcre2/testdata/ |
D | testoutput15 | 15 Minimum heap limit = 0 16 Minimum match limit = 7 17 Minimum depth limit = 7 21 Minimum heap limit = 0 22 Minimum match limit = 20481 23 Minimum depth limit = 30 31 Minimum heap limit = 0 32 Minimum match limit = 64 33 Minimum depth limit = 7 39 Minimum heap limit = 0 [all …]
|
/third_party/python/Lib/ |
D | traceback.py | 45 def print_tb(tb, limit=None, file=None): argument 53 print_list(extract_tb(tb, limit=limit), file=file) 55 def format_tb(tb, limit=None): argument 57 return extract_tb(tb, limit=limit).format() 59 def extract_tb(tb, limit=None): argument 72 return StackSummary.extract(walk_tb(tb), limit=limit) 104 def print_exception(exc, /, value=_sentinel, tb=_sentinel, limit=None, \ argument 119 te = TracebackException(type(value), value, tb, limit=limit, compact=True) 124 def format_exception(exc, /, value=_sentinel, tb=_sentinel, limit=None, \ argument 135 te = TracebackException(type(value), value, tb, limit=limit, compact=True) [all …]
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | Utf8.java | 158 public static boolean isValidUtf8(byte[] bytes, int index, int limit) { in isValidUtf8() argument 159 return processor.isValidUtf8(bytes, index, limit); in isValidUtf8() 175 public static int partialIsValidUtf8(int state, byte[] bytes, int index, int limit) { in partialIsValidUtf8() argument 176 return processor.partialIsValidUtf8(state, bytes, index, limit); in partialIsValidUtf8() 193 private static int incompleteStateFor(byte[] bytes, int index, int limit) { in incompleteStateFor() argument 195 switch (limit - index) { in incompleteStateFor() 319 static int partialIsValidUtf8(int state, ByteBuffer buffer, int index, int limit) { in partialIsValidUtf8() argument 320 return processor.partialIsValidUtf8(state, buffer, index, limit); in partialIsValidUtf8() 368 private static int estimateConsecutiveAscii(ByteBuffer buffer, int index, int limit) { in estimateConsecutiveAscii() argument 370 final int lim = limit - 7; in estimateConsecutiveAscii() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
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() local 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/ |
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() local 312 limit = start + in getVisualRun() 313 bidi.runs[runIndex].limit - in getVisualRun() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/sched_setscheduler/ |
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->rlim_cur), in l_rlimit_setup() [all …]
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
D | psobjs.c | 108 FT_Byte** limit = offset + table->max_elems; in shift_elements() local 111 for ( ; offset < limit; offset++ ) in shift_elements() 295 FT_Byte* limit ) in skip_comment() argument 300 while ( cur < limit ) in skip_comment() 313 FT_Byte* limit ) in skip_spaces() argument 318 while ( cur < limit ) in skip_spaces() 324 skip_comment( &cur, limit ); in skip_spaces() 343 FT_Byte* limit ) in skip_literal_string() argument 351 while ( cur < limit ) in skip_literal_string() 367 if ( cur == limit ) in skip_literal_string() [all …]
|
/third_party/freetype/src/psaux/ |
D | psobjs.c | 119 FT_Byte** limit = offset + table->max_elems; in ps_table_realloc() local 122 for ( ; offset < limit; offset++ ) in ps_table_realloc() 261 FT_Byte* limit ) in skip_comment() argument 266 while ( cur < limit ) in skip_comment() 279 FT_Byte* limit ) in skip_spaces() argument 284 while ( cur < limit ) in skip_spaces() 290 skip_comment( &cur, limit ); in skip_spaces() 309 FT_Byte* limit ) in skip_literal_string() argument 317 while ( cur < limit ) in skip_literal_string() 333 if ( cur == limit ) in skip_literal_string() [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/src/psaux/ |
D | psobjs.c | 109 FT_Byte** limit = offset + table->max_elems; in shift_elements() local 112 for ( ; offset < limit; offset++ ) in shift_elements() 296 FT_Byte* limit ) in skip_comment() argument 301 while ( cur < limit ) in skip_comment() 314 FT_Byte* limit ) in skip_spaces() argument 319 while ( cur < limit ) in skip_spaces() 325 skip_comment( &cur, limit ); in skip_spaces() 344 FT_Byte* limit ) in skip_literal_string() argument 352 while ( cur < limit ) in skip_literal_string() 368 if ( cur == limit ) in skip_literal_string() [all …]
|