/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | UBiDiProps.java | 98 int c, start, limit; in addPropertyStarts() 102 /* add the start code point of each same-value range of the trie */ in addPropertyStarts() 117 start=indexes[IX_JG_START]; in addPropertyStarts() 121 length=limit-start; in addPropertyStarts() 126 set.add(start); in addPropertyStarts() 129 ++start; in addPropertyStarts() 132 /* add the limit code point if the last value was not 0 (it is now start==limit) */ in addPropertyStarts() 137 start=indexes[IX_JG_START2]; in addPropertyStarts() 225 int start, limit; in getJoiningGroup() 227 start in getJoiningGroup() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
H A D | UScriptRun.java | 41 * int start = scriptRun.getScriptStart(); 46 * start + " to " + limit + "."); 92 * @param start the index of the first character over which to iterate 99 public UScriptRun(String text, int start, int count) in UScriptRun() argument 101 reset(text, start, count); in UScriptRun() 124 * @param start the index of the first character over which to iterate 131 public UScriptRun(char[] chars, int start, int count) in UScriptRun() argument 133 reset(chars, start, count); in UScriptRun() 138 * Reset the iterator to the start of the text. 168 * @param start th 176 reset(int start, int count) reset() argument 208 reset(char[] chars, int start, int count) reset() argument 253 reset(String str, int start, int count) reset() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | UBiDiProps.java | 102 int c, start, limit; in addPropertyStarts() 106 /* add the start code point of each same-value range of the trie */ in addPropertyStarts() 121 start=indexes[IX_JG_START]; in addPropertyStarts() 125 length=limit-start; in addPropertyStarts() 130 set.add(start); in addPropertyStarts() 133 ++start; in addPropertyStarts() 136 /* add the limit code point if the last value was not 0 (it is now start==limit) */ in addPropertyStarts() 141 start=indexes[IX_JG_START2]; in addPropertyStarts() 229 int start, limit; in getJoiningGroup() 231 start in getJoiningGroup() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/ |
H A D | UScriptRun.java | 42 * int start = scriptRun.getScriptStart(); 47 * start + " to " + limit + "."); 94 * @param start the index of the first character over which to iterate 101 public UScriptRun(String text, int start, int count) in UScriptRun() argument 103 reset(text, start, count); in UScriptRun() 126 * @param start the index of the first character over which to iterate 133 public UScriptRun(char[] chars, int start, int count) in UScriptRun() argument 135 reset(chars, start, count); in UScriptRun() 140 * Reset the iterator to the start of the text. 170 * @param start th 178 reset(int start, int count) reset() argument 210 reset(char[] chars, int start, int count) reset() argument 255 reset(String str, int start, int count) reset() argument [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | unesctrn.cpp | 176 int32_t start = pos.start; in handleTransliterate() local 180 while (start < limit) { in handleTransliterate() 193 // s is a copy of start that is advanced over the in handleTransliterate() 195 int32_t s = start; in handleTransliterate() 225 if (s > start && isIncremental) { in handleTransliterate() 248 if (s > start && isIncremental) { in handleTransliterate() 264 text.handleReplaceBetween(start, s, str); in handleTransliterate() 265 limit -= s - start - str.length(); in handleTransliterate() 278 if (start < limi in handleTransliterate() [all...] |
/third_party/node/deps/base64/base64/test/ |
H A D | benchmark.c | 128 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument 130 uint64_t diff = *end - *start; in timediff_sec() 151 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument 154 return (end->QuadPart - start->QuadPart) / 1e7f; in timediff_sec() 166 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument 168 return (end->tv_sec - start->tv_sec) + (end->tv_nsec - start->tv_nsec) / 1e9f; in timediff_sec() 176 base64_timespec start, end; in codec_bench_enc() local 185 base64_gettime(&start); in codec_bench_enc() 191 timediff = timediff_sec(&start, in codec_bench_enc() 205 base64_timespec start, end; codec_bench_dec() local [all...] |
/third_party/node/deps/icu-small/source/tools/toolutil/ |
H A D | uparse.cpp | 81 char *start, *limit; in u_parseDelimitedFile() local 110 * start parsing after that, or else from the beginning of the line in u_parseDelimitedFile() 113 start=(char *)getMissingLimit(line); in u_parseDelimitedFile() 114 if(start==line) { in u_parseDelimitedFile() 121 if(*start==0 || *start=='#') { in u_parseDelimitedFile() 126 limit=uprv_strchr(start, '#'); in u_parseDelimitedFile() 129 while(limit>start && U_IS_INV_WHITESPACE(*(limit-1))) { in u_parseDelimitedFile() 138 if(u_skipWhitespace(start)[0]==0) { in u_parseDelimitedFile() 145 limit=start; in u_parseDelimitedFile() [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | unesctrn.cpp | 176 int32_t start = pos.start; in handleTransliterate() local 180 while (start < limit) { in handleTransliterate() 193 // s is a copy of start that is advanced over the in handleTransliterate() 195 int32_t s = start; in handleTransliterate() 225 if (s > start && isIncremental) { in handleTransliterate() 248 if (s > start && isIncremental) { in handleTransliterate() 264 text.handleReplaceBetween(start, s, str); in handleTransliterate() 265 limit -= s - start - str.length(); in handleTransliterate() 278 if (start < limi in handleTransliterate() [all...] |
/third_party/icu/icu4c/source/tools/toolutil/ |
H A D | uparse.cpp | 81 char *start, *limit; in u_parseDelimitedFile() local 110 * start parsing after that, or else from the beginning of the line in u_parseDelimitedFile() 113 start=(char *)getMissingLimit(line); in u_parseDelimitedFile() 114 if(start==line) { in u_parseDelimitedFile() 121 if(*start==0 || *start=='#') { in u_parseDelimitedFile() 126 limit=uprv_strchr(start, '#'); in u_parseDelimitedFile() 129 while(limit>start && U_IS_INV_WHITESPACE(*(limit-1))) { in u_parseDelimitedFile() 138 if(u_skipWhitespace(start)[0]==0) { in u_parseDelimitedFile() 145 limit=start; in u_parseDelimitedFile() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | unesctrn.cpp | 176 int32_t start = pos.start; in handleTransliterate() local 180 while (start < limit) { in handleTransliterate() 193 // s is a copy of start that is advanced over the in handleTransliterate() 195 int32_t s = start; in handleTransliterate() 225 if (s > start && isIncremental) { in handleTransliterate() 248 if (s > start && isIncremental) { in handleTransliterate() 264 text.handleReplaceBetween(start, s, str); in handleTransliterate() 265 limit -= s - start - str.length(); in handleTransliterate() 278 if (start < limi in handleTransliterate() [all...] |
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | uparse.cpp | 81 char *start, *limit; in u_parseDelimitedFile() local 110 * start parsing after that, or else from the beginning of the line in u_parseDelimitedFile() 113 start=(char *)getMissingLimit(line); in u_parseDelimitedFile() 114 if(start==line) { in u_parseDelimitedFile() 121 if(*start==0 || *start=='#') { in u_parseDelimitedFile() 126 limit=uprv_strchr(start, '#'); in u_parseDelimitedFile() 129 while(limit>start && U_IS_INV_WHITESPACE(*(limit-1))) { in u_parseDelimitedFile() 138 if(u_skipWhitespace(start)[0]==0) { in u_parseDelimitedFile() 145 limit=start; in u_parseDelimitedFile() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | instance-type-generator.cc | 19 start(INT_MAX), in InstanceTypeTree() 26 int start; // Start of range for this and subclasses, or INT_MAX. member 79 if (child->start < root->start) root->start = child->start; in PropagateInstanceTypeConstraints() 94 root->start = 0; in PropagateInstanceTypeConstraints() 104 if (constraints.value < root->start) root->start = constraints.value; in PropagateInstanceTypeConstraints() 144 if (root->start < start_valu in SolveInstanceTypeConstraints() [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-use-table.py | 56 start = int (uu[0], 16) variable 58 end = start 75 for u in range (start, end + 1): 77 values[i0][t] = values[i0].get (t, 0) + end - start + 1 446 def print_block (block, start, end, data): 452 if start % 16: 453 print (' ' * (20 + (start % 16 * 6)), end='') 455 assert start % 8 == 0 457 for u in range (start, end+1): 466 total += end - start 498 start = u//8*8 global() variable [all...] |
/third_party/toybox/toys/posix/ |
H A D | grep.c | 148 char *line = 0, *start; in do_grep() local 163 start = line; in do_grep() 183 } else if (FLAG(i)) s = strcasestr(start, seek->arg); in do_grep() 184 else s = strstr(start, seek->arg); in do_grep() 191 mm->rm_so = (s-start); in do_grep() 192 mm->rm_eo = (s-start)+strlen(seek->arg); in do_grep() 208 shoe->rc = regexec0(&shoe->r, start, ulen-(start-line), 1, in do_grep() 209 &shoe->m, start==line ? 0 : REG_NOTBOL); in do_grep() 228 if ((start in do_grep() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | UnicodeSet.java | 377 * start</code> then an empty set is created. 379 * @param start first character, inclusive, of range 382 public UnicodeSet(int start, int end) { in UnicodeSet() argument 384 add(start, end); in UnicodeSet() 404 int start = pairs[i]; in UnicodeSet() 405 if (last >= start) { in UnicodeSet() 408 list[i++] = start; in UnicodeSet() 410 if (start >= limit) { in UnicodeSet() 461 * @param pos on input, the position in pattern at which to start parsing. 477 * @param pos on input, the position in pattern at which to start parsin 510 set(int start, int end) set() argument 993 matchRest(Replaceable text, int start, int limit, String s) matchRest() argument 1150 add(int start, int end) add() argument 1161 addAll(int start, int end) addAll() argument 1167 add_unchecked(int start, int end) add_unchecked() argument 1473 retain(int start, int end) retain() argument 1536 remove(int start, int end) remove() argument 1594 complement(int start, int end) complement() argument 1856 contains(int start, int end) contains() argument 2041 containsNone(int start, int end) containsNone() argument 2152 containsSome(int start, int end) containsSome() argument 2974 range(int start, int end) range() argument 4019 span(CharSequence s, int start, SpanCondition spanCondition) span() argument 4054 spanAndCount(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) spanAndCount() argument 4081 spanCodePointsAndCount(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) spanCodePointsAndCount() argument [all...] |
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | ttcmap.c | 469 FT_UInt start, count; in FT_CALLBACK_DEF() local 474 start = TT_NEXT_USHORT( p ); in FT_CALLBACK_DEF() 479 idx -= start; in FT_CALLBACK_DEF() 511 FT_UInt start = TT_NEXT_USHORT( p ); in FT_CALLBACK_DEF() local 519 if ( char_lo >= start + count && charcode <= 0xFF ) in FT_CALLBACK_DEF() 533 if ( char_lo < start ) in FT_CALLBACK_DEF() 535 char_lo = start; in FT_CALLBACK_DEF() 539 pos = (FT_UInt)( char_lo - start ); in FT_CALLBACK_DEF() 664 * intervals called segments. Each segment has start and end codes, 685 * where `start' an 987 FT_UInt start, end, offset, n; FT_CALLBACK_DEF() local 1104 FT_UInt num_segs2, start, end, offset; tt_cmap4_char_map_linear() local 1238 FT_UInt num_segs2, start, end, offset; tt_cmap4_char_map_binary() local 1649 FT_UInt start = TT_NEXT_USHORT( p ); FT_CALLBACK_DEF() local 1674 FT_UInt start = TT_NEXT_USHORT( p ); FT_CALLBACK_DEF() local 1829 FT_UInt32 n, start, end, start_id, count, last = 0; FT_CALLBACK_DEF() local 1910 FT_UInt32 start, end, start_id; FT_CALLBACK_DEF() local 1946 FT_UInt32 start, end, start_id; FT_CALLBACK_DEF() local 2113 FT_UInt32 start = TT_NEXT_ULONG( p ); FT_CALLBACK_DEF() local 2141 FT_UInt32 start = TT_NEXT_ULONG( p ); FT_CALLBACK_DEF() local 2296 FT_ULong n, start, end, start_id, last = 0; FT_CALLBACK_DEF() local 2338 FT_ULong start, end, start_id, char_code; tt_cmap12_next() local 2404 FT_UInt32 start, end, start_id; tt_cmap12_char_map_binary() local 2649 FT_ULong n, start, end, glyph_id, last = 0; FT_CALLBACK_DEF() local 2686 FT_ULong start, end, glyph_id, char_code; tt_cmap13_next() local 2735 FT_UInt32 start, end; tt_cmap13_char_map_binary() local 3200 FT_ULong start = TT_NEXT_UINT24( p ); tt_cmap14_char_map_def_binary() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/span/ |
H A D | span_object.h | 101 SpanBase(int32_t start, int32_t end) : start_(start), end_(end) {} in SpanBase() argument 103 virtual RefPtr<SpanBase> GetSubSpan(int32_t start, int32_t end) = 0; 126 FontSpan(Font font, int32_t start, int32_t end); 128 RefPtr<SpanBase> GetSubSpan(int32_t start, int32_t end) override; 149 int32_t start, int32_t end); 153 RefPtr<SpanBase> GetSubSpan(int32_t start, int32_t end) override; 174 BaselineOffsetSpan(Dimension baselineOffset, int32_t start, int32_t end); 176 RefPtr<SpanBase> GetSubSpan(int32_t start, int32_t end) override; 194 LetterSpacingSpan(Dimension letterSpacing, int32_t start, int32_ [all...] |
/foundation/arkui/ui_lite/frameworks/draw/ |
H A D | draw_line.cpp | 60 const Point& start, in Draw() 74 if (start.y < end.y) { in Draw() 75 yTop = start.y - width / 2; // 2: half in Draw() 79 yBottom = start.y + width / 2; // 2: half in Draw() 86 if (start.y == end.y) { in Draw() 87 DrawHorizontalLine(gfxDstBuffer, start, end, mask, width, color, opacity); in Draw() 88 } else if (start.x == end.x) { in Draw() 89 DrawVerticalLine(gfxDstBuffer, start, end, mask, width, color, opacity); in Draw() 91 DrawWuLine(gfxDstBuffer, start, end, mask, width, color, opacity); in Draw() 96 const Point& start, in DrawVerticalLine() 59 Draw(BufferInfo& gfxDstBuffer, const Point& start, const Point& end, const Rect& mask, int16_t width, const ColorType& color, OpacityType opacity) Draw() argument 95 DrawVerticalLine(BufferInfo& gfxDstBuffer, const Point& start, const Point& end, const Rect& mask, int16_t width, const ColorType& color, OpacityType opacity) DrawVerticalLine() argument 120 DrawHorizontalLine(BufferInfo& gfxDstBuffer, const Point& start, const Point& end, const Rect& mask, int16_t width, const ColorType& color, OpacityType opacity) DrawHorizontalLine() argument 144 DrawWuLine(BufferInfo& gfxDstBuffer, const Point& start, const Point& end, const Rect& mask, int16_t width, const ColorType& color, OpacityType opacity) DrawWuLine() argument 440 DrawThinWuLine(BufferInfo& gfxDstBuffer, const Point& start, const Point& end, const Rect& mask, int16_t width, const ColorType& color, OpacityType opacity) DrawThinWuLine() argument [all...] |
/third_party/mbedtls/tests/src/ |
H A D | test_memory.c | 27 uintptr_t start = (uintptr_t) *p_ptr; in align_for_asan() local 28 uintptr_t end = start + (uintptr_t) *p_size; in align_for_asan() 32 * align start down to an 8-byte boundary, and end up to an 8-byte in align_for_asan() 34 start = start & ~(uintptr_t) 7; in align_for_asan() 36 *p_ptr = (const unsigned char *) start; in align_for_asan() 37 *p_size = end - start; in align_for_asan()
|
/third_party/toybox/scripts/ |
H A D | mktags.c | 24 // by ) at start of line. in main() 40 char *start; in main() local 46 start = ++s; in main() 51 printf("#define %s_%*.*s %d\n", tag, -40, (int)(s-start), start, idx); in main() 52 printf("#define _%s_%*.*s (1%s<<%d)\n", tag, -39, (int)(s-start), start, in main()
|
/third_party/elfutils/libdwfl/ |
H A D | segment.c | 37 __libdwfl_segment_start (Dwfl *dwfl, GElf_Addr start) in __libdwfl_segment_start() argument 40 start &= -dwfl->segment_align; in __libdwfl_segment_start() 41 return start; in __libdwfl_segment_start() 54 insert (Dwfl *dwfl, size_t i, GElf_Addr start, GElf_Addr end, int segndx) in insert() argument 56 bool need_start = (i == 0 || dwfl->lookup_addr[i - 1] != start); in insert() 108 dwfl->lookup_addr[i] = start; in insert() 166 const GElf_Addr start = __libdwfl_segment_start (dwfl, mod->low_addr); in reify_segments() local 170 int idx = lookup (dwfl, start, hint); in reify_segments() 174 if (unlikely (insert (dwfl, 0, start, end, -1))) in reify_segments() 179 else if (dwfl->lookup_addr[idx] > start) in reify_segments() 310 GElf_Addr start = __libdwfl_segment_start (dwfl, bias + phdr->p_vaddr); INTDEF() local [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() 97 if (run.start == run.limit) offsets.start = offsets.limit; in handleTransliterate() 98 else offsets.start = run.start; in handleTransliterate() 108 + ", s: " + offsets.start in toString() 132 * The only time that contextStart != start is for the first run 133 * (the context is the start context of the entire expanse) 157 current.start = current.limit = current.contextLimit = expanse.start; in reset() [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | allocation-tracker.cc | 104 void AddressToTraceMap::AddRange(Address start, int size, in AddRange() argument 106 Address end = start + size; in AddRange() 107 RemoveRange(start, end); in AddRange() 109 RangeStack new_range(start, trace_node_id); in AddRange() 117 if (it->second.start <= addr) { in GetTraceNodeId() 140 PrintF("[%p - %p] => %u\n", reinterpret_cast<void*>(it->second.start), in Print() 147 void AddressToTraceMap::RemoveRange(Address start, Address end) { in RemoveRange() argument 148 RangeMap::iterator it = ranges_.upper_bound(start); in RemoveRange() 154 if (it->second.start < start) { in RemoveRange() 276 UnresolvedLocation(Script script, int start, FunctionInfo* info) UnresolvedLocation() argument [all...] |
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | time_test.cc | 82 DateTime start, end; in TEST() local 83 start.year = 1; in TEST() 84 start.month = 1; in TEST() 85 start.day = 1; in TEST() 86 start.hour = 0; in TEST() 87 start.minute = 0; in TEST() 88 start.second = 0; in TEST() 96 ASSERT_TRUE(DateTimeToSeconds(start, &start_time)); in TEST() 206 DateTime start, end; in TEST() local 207 start in TEST() [all...] |
/third_party/python/Lib/test/ |
H A D | test_slice.py | 42 # Find lower and upper bounds for start and stop. 46 # Compute start. 47 if slice.start is None: 48 start = upper if step < 0 else lower 50 start = evaluate_slice_index(slice.start) 51 start = max(start + length, lower) if start < 0 else min(start, uppe [all...] |