Home
last modified time | relevance | path

Searched refs:start (Results 1376 - 1400 of 7061) sorted by relevance

1...<<51525354555657585960>>...283

/third_party/node/deps/icu-small/source/i18n/
H A Dname2uni.cpp48 _set_addRange(USet *set, UChar32 start, UChar32 end) {
49 ((UnicodeSet *)set)->add(start, end);
118 offsets.start = offsets.limit; in handleTransliterate()
126 offsets.start = offsets.limit; in handleTransliterate()
133 int32_t cursor = offsets.start; in handleTransliterate()
252 offsets.start = (isIncremental && openPos >= 0) ? openPos : cursor; in handleTransliterate()
/third_party/libdrm/tests/
H A Ddrmsl.c67 struct timeval start, stop; in do_time() local
89 gettimeofday(&start, NULL); in do_time()
99 - start.tv_sec * 1000000 - start.tv_usec) / (size * iter); in do_time()
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-custom-headers/
H A Dminimal-http-server-custom-headers.c39 uint8_t buf[LWS_PRE + 2048], *start = &buf[LWS_PRE], *p = start, in callback_http() local
81 if (lws_finalize_write_http_header(wsi, start, &p, end)) in callback_http()
91 strcpy((char *)start, "hello"); in callback_http()
/third_party/ltp/testcases/realtime/func/sched_football/
H A Dsched_football.c134 struct timeval start, now; in referee() local
139 gettimeofday(&start, NULL); in referee()
140 now = start; in referee()
146 while ((now.tv_sec - start.tv_sec) < game_length) { in referee()
189 /* Wait for the offense threads to start */ in main()
200 /* Wait for the defense threads to start */ in main()
/third_party/node/deps/v8/src/compiler/
H A Dgraph.h41 // the original start and end nodes of the graph, and resets them when you
46 : graph_(graph), start_(graph->start()), end_(graph->end()) {} in SubgraphScope()
84 Node* start() const { return start_; } in start() function in v8::internal::compiler::final
87 void SetStart(Node* start) { start_ = start; } in SetStart() argument
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-openbsd.cc55 uintptr_t start, end; in GetSharedLibraryAddresses() local
58 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break; in GetSharedLibraryAddresses()
84 "%08" V8PRIxPTR "-%08" V8PRIxPTR, start, end); in GetSharedLibraryAddresses()
86 result.push_back(SharedLibraryAddress(lib_name, start, end)); in GetSharedLibraryAddresses()
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbi_validate.c33 * set is empty at the start of the program). TODO: Strengthen */
58 * the start block, and that preloads are unique. This ensures RA can coalesce
64 bool start = true; in bi_validate_preload() local
75 /* Preloads are register moves at the start */ in bi_validate_preload()
77 start && I->op == BI_OPCODE_MOV_I32 && in bi_validate_preload()
81 start &= is_preload; in bi_validate_preload()
101 start = false; in bi_validate_preload()
/third_party/musl/libc-test/src/functional/
H A Dsem_init.c12 static void *start(void *arg) in start() function
32 T2(r,pthread_create(t, 0, start, s)); in many_waiters()
33 T2(r,pthread_create(t+1, 0, start, s)); in many_waiters()
34 T2(r,pthread_create(t+2, 0, start, s)); in many_waiters()
/third_party/rust/crates/aho-corasick/src/
H A Dclasses.rs165 pub fn set_range(&mut self, start: u8, end: u8) { in set_range()
166 debug_assert!(start <= end); in set_range()
167 if start > 0 { in set_range()
168 self.0[start as usize - 1] = true; in set_range()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
H A DVertexDataManager.h99 GLint start,
112 GLint start,
142 GLint start,
149 GLint start,
/third_party/skia/samplecode/
H A DSampleTiming.cpp42 auto start = std::chrono::steady_clock::now(); variable
47 auto elapsed = std::chrono::steady_clock::now() - start;
74 auto start = std::chrono::steady_clock::now(); variable
81 auto elapsed = std::chrono::steady_clock::now() - start;
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dname2uni.cpp48 _set_addRange(USet *set, UChar32 start, UChar32 end) {
49 ((UnicodeSet *)set)->add(start, end);
118 offsets.start = offsets.limit; in handleTransliterate()
126 offsets.start = offsets.limit; in handleTransliterate()
133 int32_t cursor = offsets.start; in handleTransliterate()
252 offsets.start = (isIncremental && openPos >= 0) ? openPos : cursor; in handleTransliterate()
H A Dutf16collationiterator.h39 start(s), pos(p), limit(lim) {} in UTF16CollationIterator()
53 start = pos = s; in setText()
65 start(NULL), pos(NULL), limit(NULL) {} in UTF16CollationIterator()
79 const UChar *start, *pos, *limit; member in UTF16CollationIterator
134 * To be called when checkDir > 0 || (checkDir == 0 && pos == start).
135 * Returns with checkDir < 0 || (checkDir == 0 && pos != start).
141 * To be called when checkDir < 0 && pos != start.
142 * @return true if success, checkDir == 0 and pos != start
160 // segmentStart is undefined, start == rawStart.
167 // and segmentStart==start<
[all...]
/third_party/skia/third_party/externals/brotli/c/common/
H A Dconstants.h150 uint32_t start; in BrotliCalculateDistanceCodeLimit() local
151 /* Remove postfix and "head-start". */ in BrotliCalculateDistanceCodeLimit()
176 /* Calculate region start. NB: ndistbits >= 1. */ in BrotliCalculateDistanceCodeLimit()
177 start = (1u << (ndistbits + 1)) - 4; in BrotliCalculateDistanceCodeLimit()
179 start += (group & 1) << ndistbits; in BrotliCalculateDistanceCodeLimit()
184 result.max_distance = ((start + extra) << npostfix) + postfix + ndirect + 1; in BrotliCalculateDistanceCodeLimit()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dcmap_iterator_test.cc67 BitSet* GenerateCMapEntries(int32_t start, int32_t count);
89 BitSet* CMapIteratorTests::GenerateCMapEntries(int32_t start, int32_t count) { in GenerateCMapEntries() argument
91 for (int32_t c = start; c < start + count; ++c) { in GenerateCMapEntries()
/third_party/python/Lib/turtledemo/
H A Dforest.py55 def start(t,x,y): function
67 start(pen, 20, -208)
73 start(pen, -135, -130)
79 start(pen, 190, -90)
/third_party/toybox/toys/other/
H A Dpmap.c35 long long start, end, pss, tpss = 0, dirty, tdirty = 0, swap, tswap = 0, in pmap_main() local
65 &start, &end, toybuf, &off); in pmap_main()
70 total += end = (end-start)/1024; in pmap_main()
71 printf("%0*llx % *lld%s ", (int)(2*sizeof(long)), start, in pmap_main()
/third_party/python/Lib/test/
H A Dtest_syslog.py56 start = threading.Event()
59 start.wait(10)
65 start.wait(10)
75 start.set()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_join.h245 std::string StrJoin(Iterator start, Iterator end, absl::string_view sep, in StrJoin() argument
247 return strings_internal::JoinAlgorithm(start, end, sep, fmt); in StrJoin()
269 std::string StrJoin(Iterator start, Iterator end, absl::string_view separator) { in StrJoin() argument
270 return strings_internal::JoinRange(start, end, separator); in StrJoin()
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
H A Dper_thread_sem_test.cc157 const absl::Time start = absl::Now(); in TEST_F() local
158 EXPECT_FALSE(Wait(start + delay)); in TEST_F()
159 const absl::Duration elapsed = absl::Now() - start; in TEST_F()
165 << " early (with " << slop << " slop), start time was " << start; in TEST_F()
/third_party/skia/modules/particles/include/
H A DSkParticleEffect.h133 void start(double now, bool looping, SkPoint position, SkVector heading, float scale,
137 void start(double now, bool looping) { in start() function in SkParticleEffect
138 this->start(now, looping, in start()
198 void runParticleScript(EntryPoint entryPoint, int start, int count);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/
H A Dtext_pattern.h89 SelectionInfo GetSpansInfo(int32_t start, int32_t end, GetSpansMethod method);
90 std::list<ResultObject> GetSpansInfoInStyledString(int32_t start, int32_t end);
371 std::string GetSelectedSpanText(std::wstring value, int32_t start, int32_t end) const;
376 ResultObject GetTextResultObject(RefPtr<UINode> uinode, int32_t index, int32_t start, int32_t end);
378 ResultObject GetSymbolSpanResultObject(RefPtr<UINode> uinode, int32_t index, int32_t start, int32_t end);
379 ResultObject GetImageResultObject(RefPtr<UINode> uinode, int32_t index, int32_t start, int32_t end);
540 void HandleSelectionChange(int32_t start, int32_t end);
564 std::string GetSelectedText(int32_t start, int32_t end) const;
657 std::vector<ParagraphManager::TextBox> GetRectsForRange(int32_t start, int32_t end,
827 void OnTextGestureSelectionUpdate(int32_t start, int32_
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRuleBasedNumberFormat.java1297 // parsePosition tells us where to start parsing. We copy the in parse()
1704 // start by stripping the trailing whitespace from all the rules in init()
1748 int start = 0; in init()
1751 p = descBuf.indexOf(";%", start); in init()
1755 ruleSetDescriptions[curRuleSet] = descBuf.substring(start, p + 1); in init()
1771 start = p + 1; in init()
1894 int start = 0; in stripWhitespace()
1895 while (start < descriptionLength) { in stripWhitespace()
1897 while (start < descriptionLength in stripWhitespace()
1898 && PatternProps.isWhiteSpace(description.charAt(start))) in stripWhitespace()
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dutransts.c101 static void Xreplace(UReplaceable* rep, int32_t start, int32_t limit, in Xreplace() argument
104 int32_t newLen = Xlength(rep) + limit - start + textLength; in Xreplace()
106 u_strncpy(newText, x->text, start); in Xreplace()
107 u_strncpy(newText + start, text, textLength); in Xreplace()
108 u_strcpy(newText + start + textLength, x->text + limit); in Xreplace()
114 static void Xcopy(UReplaceable* rep, int32_t start, int32_t limit, int32_t dest) { in Xcopy() argument
116 int32_t newLen = Xlength(rep) + limit - start; in Xcopy()
119 u_strncpy(newText + dest, x->text + start, limit - start); in Xcopy()
120 u_strcpy(newText + dest + limit - start, in Xcopy()
126 Xextract(UReplaceable* rep, int32_t start, int32_t limit, UChar* dst) Xextract() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DRuleBasedNumberFormat.java1268 // parsePosition tells us where to start parsing. We copy the in parse()
1665 // start by stripping the trailing whitespace from all the rules in init()
1709 int start = 0; in init()
1712 p = descBuf.indexOf(";%", start); in init()
1716 ruleSetDescriptions[curRuleSet] = descBuf.substring(start, p + 1); in init()
1732 start = p + 1; in init()
1855 int start = 0; in stripWhitespace()
1856 while (start < descriptionLength) { in stripWhitespace()
1858 while (start < descriptionLength in stripWhitespace()
1859 && PatternProps.isWhiteSpace(description.charAt(start))) in stripWhitespace()
[all...]

Completed in 18 milliseconds

1...<<51525354555657585960>>...283