/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse.c | 105 off_t start; member 2461 lock->start <= l->end && l->start <= lock->end && in locks_conflict() 2487 if (lock->type != F_UNLCK || lock->start != 0 || lock->end != OFFSET_MAX) { in locks_insert() 2504 if (l->end < lock->start - 1) in locks_insert() 2506 if (lock->end < l->start - 1) in locks_insert() 2508 if (l->start <= lock->start && lock->end <= l->end) in locks_insert() 2510 if (l->start < lock->start) in locks_insert() [all...] |
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | CollationRuleParser.java | 314 setParseError("in 'prefix|str', prefix and str must each start with an NFC boundary"); in parseRelationStrings() 356 setParseError("range without start in starred-relation string"); in parseStarredCharacters() 366 setParseError("range start greater than end in starred-relation string"); in parseStarredCharacters() 867 int start = ruleIndex - (U_PARSE_CONTEXT_LEN - 1); in appendErrorContext() 868 if(start < 0) { in appendErrorContext() 869 start = 0; in appendErrorContext() 870 } else if(start > 0 && Character.isLowSurrogate(rules.charAt(start))) { in appendErrorContext() 871 ++start; in appendErrorContext() 873 msg.append(rules, start, ruleInde in appendErrorContext() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
H A D | RBBIMonkeyTest.java | 99 "(^|(?<=;))" + // Start either at start of line, or just after a ';' (look-behind for ';') in BreakRules() 561 fExpectedBreaks[0] = true; // Force an expected break before the start of the text. in set() 565 boolean initialMatch = true; // True at start of text, and immediately after each boundary, in set() 649 // @return m.start("BreakPosition), 652 // TODO: this becomes m.start("BreakPosition") with Java 8. 664 return m.start(groupNum); in BreakGroupStart() 676 int start; in dump() 680 start = 0; in dump() 685 start = fString.offsetByCodePoints(around, -30); in dump() 687 start in dump() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
H A D | RBBIMonkeyTest.java | 96 "(^|(?<=;))" + // Start either at start of line, or just after a ';' (look-behind for ';') in BreakRules() 560 fExpectedBreaks[0] = true; // Force an expected break before the start of the text. in set() 564 boolean initialMatch = true; // True at start of text, and immediately after each boundary, in set() 653 // @return m.start("BreakPosition), 656 // TODO: this becomes m.start("BreakPosition") with Java 8. 668 return m.start(groupNum); in BreakGroupStart() 680 int start; in dump() 684 start = 0; in dump() 689 start = fString.offsetByCodePoints(around, -30); in dump() 691 start in dump() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/ |
H A D | CollationRuleParser.java | 318 setParseError("in 'prefix|str', prefix and str must each start with an NFC boundary"); in parseRelationStrings() 360 setParseError("range without start in starred-relation string"); in parseStarredCharacters() 370 setParseError("range start greater than end in starred-relation string"); in parseStarredCharacters() 871 int start = ruleIndex - (U_PARSE_CONTEXT_LEN - 1); in appendErrorContext() 872 if(start < 0) { in appendErrorContext() 873 start = 0; in appendErrorContext() 874 } else if(start > 0 && Character.isLowSurrogate(rules.charAt(start))) { in appendErrorContext() 875 ++start; in appendErrorContext() 877 msg.append(rules, start, ruleInde in appendErrorContext() [all...] |
/third_party/node/lib/ |
H A D | assert.js | 254 let start; 257 start = token.start; 258 if (start > offset) { 264 node = parseExpressionAt(code, start, { ecmaVersion: 'latest' }); 269 node.node.start, 271 node.node.start, node.node.end),
|
/third_party/node/lib/internal/test_runner/ |
H A D | test.js | 167 return subtest.start(); 384 const start = this.waitingOn; 385 const end = start + this.readySubtests.size; 387 for (let i = start; i < end; i++) { 528 start() { 679 // be earlier than the start time. Correct that here. 830 this.reporter.start(this.nesting, this.loc, this.name); 946 const promise = SafePromiseAll(subtests, (subtests) => subtests.start());
|
/third_party/node/deps/v8/src/heap/ |
H A D | read-only-spaces.cc | 373 Address start = chunk->HighWaterMark(); in RepairFreeSpacesAfterDeserialization() local 377 if (start < end) { in RepairFreeSpacesAfterDeserialization() 378 heap()->CreateFillerObjectAt(start, static_cast<int>(end - start), in RepairFreeSpacesAfterDeserialization() 496 void VerifyPointers(HeapObject host, MaybeObjectSlot start, 501 VerifyPointersVisitor::VerifyPointers(host, start, end); 503 for (MaybeObjectSlot current = start; current < end; ++current) {
|
H A D | heap.h | 201 FullObjectSlot start; member in v8::internal::final 325 Address start; member 475 // Executes generational and/or marking write barrier for a [start, end) range 478 V8_EXPORT_PRIVATE void WriteBarrierForRange(HeapObject object, TSlot start, 494 // Notifies the heap that is ok to start marking or other activities that 542 // start and hence is only valid if there is only a single reference to it. 916 StrongRootsEntry* RegisterStrongRoots(const char* label, FullObjectSlot start, 919 void UpdateStrongRoots(StrongRootsEntry* entry, FullObjectSlot start, 1050 void ClearRecordedSlotRange(Address start, Address end); 1055 void VerifySlotRangeHasNoRecordedSlots(Address start, Addres [all...] |
/third_party/python/Lib/ |
H A D | dis.py | 271 "start end target depth lasti") 285 offset - start index of operation within bytecode sequence 317 # Column: Instruction offset from start of code sequence 409 start = _parse_varint(iterator)*2 411 end = start + length 416 entries.append(_ExceptionTableEntry(start, end, target, depth, lasti)) 439 for start, end, target, _, _ in exception_entries: 440 for i in range(start, end): 580 print(f" {entry.start} to {end} -> {entry.target} [{entry.depth}]{lasti}", file=file) 640 """Find the offsets in a byte code which are start o [all...] |
/third_party/skia/src/core/ |
H A D | SkPathBuilder.cpp | 217 const uint8_t* start = path.fPathRef->verbsBegin(); in make() local 219 if (start < stop) { in make() 268 // Return the unit vectors pointing at the start/stop points for the given start/sweep angles 308 static int build_arc_conics(const SkRect& oval, const SkVector& start, const SkVector& stop, in build_arc_conics() argument 316 int count = SkConic::BuildUnitArc(start, stop, dir, &matrix, conics); in build_arc_conics() 423 SkPoint start = fPts.back(); in arcTo() local 427 befored.set({p1.fX - start.fX, p1.fY - start.fY}).normalize(); in arcTo() 563 Computing the arc width introduces rounding errors that cause arcs to start in arcTo() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | collationfastlatinbuilder.cpp | 67 int32_t start = 0; in binarySearch() local 69 int32_t i = (start + limit) / 2; in binarySearch() 74 if (i == start) { in binarySearch() 75 return ~start; // insert ce before i in binarySearch() 79 if (i == start) { in binarySearch() 80 return ~(start + 1); // insert ce after i in binarySearch() 82 start = i; in binarySearch()
|
H A D | timezone.cpp | 187 int32_t start = 0; in findInStringArray() local 194 U_DEBUG_TZ_MSG(("fisa: Looking for %s, between %d and %d\n", U_DEBUG_TZ_STR(UnicodeString(id).getTerminatedBuffer()), start, limit)); in findInStringArray() 197 mid = (int32_t)((start + limit) / 2); in findInStringArray() 206 U_DEBUG_TZ_MSG(("tz: compare to %s, %d .. [%d] .. %d\n", U_DEBUG_TZ_STR(u), start, mid, limit)); in findInStringArray() 215 start = mid; in findInStringArray() 1385 int32_t start = pos.getIndex(); in parseCustomID() local 1388 if (pos.getIndex() == start) { in parseCustomID() 1395 if (pos.getIndex() - start > 2 in parseCustomID() 1438 int32_t length = pos.getIndex() - start; in parseCustomID() 1630 const UChar *start in getWindowsID() local [all...] |
/third_party/skia/src/pathops/ |
H A D | SkPathOpsTSect.cpp | 171 bool* start, bool* oppStart) { in hullCheck() 176 if (onlyEndPointsInCommon(opp, start, oppStart, &ptsInCommon)) { in hullCheck() 199 bool* start, bool* oppStart) { in hullsIntersect() 203 int hullSect = this->hullCheck(opp, start, oppStart); in hullsIntersect() 207 hullSect = opp->hullCheck(this, oppStart, start); in hullsIntersect() 262 int start = 0, end = fPart->pointLast(); // the outside points are usually the extremes in linearIntersects() local 272 start = outer; in linearIntersects() 278 double origX = (*fPart)[start].fX; in linearIntersects() 279 double origY = (*fPart)[start].fY; in linearIntersects() 307 bool* start, boo in onlyEndPointsInCommon() 170 hullCheck(const SkTSpan* opp, bool* start, bool* oppStart) hullCheck() argument 198 hullsIntersect(SkTSpan* opp, bool* start, bool* oppStart) hullsIntersect() argument 306 onlyEndPointsInCommon(const SkTSpan* opp, bool* start, bool* oppStart, bool* ptsInCommon) onlyEndPointsInCommon() argument 1149 double start = thisRayI[0][oppCloseIndex]; linesIntersect() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_convolve.c | 194 int start = (n * jobnr) / nb_jobs; in fft_horizontal() local 198 for (y = start; y < end; y++) { in fft_horizontal() 381 int start = (n * jobnr) / nb_jobs; in fft_vertical() local 385 for (y = start; y < end; y++) { in fft_vertical() 406 int start = (n * jobnr) / nb_jobs; in ifft_vertical() local 410 for (y = start; y < end; y++) { in ifft_vertical() 430 int start = (n * jobnr) / nb_jobs; in ifft_horizontal() local 434 for (y = start; y < end; y++) { in ifft_horizontal() 523 int start = (n * jobnr) / nb_jobs; in complex_multiply() local 527 for (y = start; in complex_multiply() 553 int start = (n * jobnr) / nb_jobs; complex_xcorrelate() local 583 int start = (n * jobnr) / nb_jobs; complex_divide() local [all...] |
/third_party/icu/tools/colprobe/ |
H A D | sortedlines.cpp | 825 // we will start from strength between the expansion in getExpansionLine() 914 int32_t i = expansionIndex, k = resetIndex+1, n = 0, m = 0, start = 0; in gooseUp() local 965 start = k; in gooseUp() 973 k = start; in gooseUp() 993 if(k > start) { in gooseUp() 1113 // we will start from strength between the expansion in detectExpansions() 1980 SortedLines::calculateCumulativeStrengths(Line *start, Line *end) { in calculateCumulativeStrengths() argument 1981 // start is a reset - end may be NULL in calculateCumulativeStrengths() 1982 start = start in calculateCumulativeStrengths() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/ |
H A D | IBMCalendarTest.java | 1487 public long start; in TestFieldDifference() 1500 start = st; in TestFieldDifference() 1512 // timezobe locale start target prog yDf MDf dDf HDf mDf sDf in TestFieldDifference() 1550 ucal.setTimeInMillis(tfdItem.start); in TestFieldDifference() 1558 errln("Fail: for locale \"" + tfdItem.locale + "\", start " + tfdItem.start + ", target " + tfdItem.target + ", expected y-M-d-H-m-s progressive diffs " + in TestFieldDifference() 1563 ucal.setTimeInMillis(tfdItem.start); in TestFieldDifference() 1565 ucal.setTimeInMillis(tfdItem.start); in TestFieldDifference() 1567 ucal.setTimeInMillis(tfdItem.start); in TestFieldDifference() 1569 ucal.setTimeInMillis(tfdItem.start); in TestFieldDifference() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | timezone.cpp | 187 int32_t start = 0; in findInStringArray() local 194 U_DEBUG_TZ_MSG(("fisa: Looking for %s, between %d and %d\n", U_DEBUG_TZ_STR(UnicodeString(id).getTerminatedBuffer()), start, limit)); in findInStringArray() 197 mid = (int32_t)((start + limit) / 2); in findInStringArray() 206 U_DEBUG_TZ_MSG(("tz: compare to %s, %d .. [%d] .. %d\n", U_DEBUG_TZ_STR(u), start, mid, limit)); in findInStringArray() 215 start = mid; in findInStringArray() 1403 int32_t start = pos.getIndex(); in parseCustomID() local 1406 if (pos.getIndex() == start) { in parseCustomID() 1413 if (pos.getIndex() - start > 2 in parseCustomID() 1456 int32_t length = pos.getIndex() - start; in parseCustomID() 1648 const UChar *start in getWindowsID() local [all...] |
/third_party/mbedtls/tests/src/test_helpers/ |
H A D | ssl_helpers.c | 157 if (buf->start + buf->content_length < buf->capacity) { in mbedtls_test_ssl_buffer_put() 161 if (buf->start + buf->content_length + input_len in mbedtls_test_ssl_buffer_put() 163 overflow = (buf->start + buf->content_length + input_len) in mbedtls_test_ssl_buffer_put() 167 memcpy(buf->buffer + buf->start + buf->content_length, input, in mbedtls_test_ssl_buffer_put() 173 memcpy(buf->buffer + buf->start + buf->content_length - buf->capacity, in mbedtls_test_ssl_buffer_put() 200 if (buf->start + output_len > buf->capacity) { in mbedtls_test_ssl_buffer_get() 201 overflow = (buf->start + output_len) % buf->capacity; in mbedtls_test_ssl_buffer_get() 205 memcpy(output, buf->buffer + buf->start, output_len - overflow); in mbedtls_test_ssl_buffer_get() 210 buf->start = (buf->start in mbedtls_test_ssl_buffer_get() 2476 mbedtls_test_ticket_write( void *p_ticket, const mbedtls_ssl_session *session, unsigned char *start, const unsigned char *end, size_t *tlen, uint32_t *lifetime) mbedtls_test_ticket_write() argument [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | timezone.cpp | 187 int32_t start = 0; in findInStringArray() local 194 U_DEBUG_TZ_MSG(("fisa: Looking for %s, between %d and %d\n", U_DEBUG_TZ_STR(UnicodeString(id).getTerminatedBuffer()), start, limit)); in findInStringArray() 197 mid = (int32_t)((start + limit) / 2); in findInStringArray() 206 U_DEBUG_TZ_MSG(("tz: compare to %s, %d .. [%d] .. %d\n", U_DEBUG_TZ_STR(u), start, mid, limit)); in findInStringArray() 215 start = mid; in findInStringArray() 1403 int32_t start = pos.getIndex(); in parseCustomID() local 1406 if (pos.getIndex() == start) { in parseCustomID() 1413 if (pos.getIndex() - start > 2 in parseCustomID() 1456 int32_t length = pos.getIndex() - start; in parseCustomID() 1664 const char16_t *start in getWindowsID() local [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cldrtest.c | 36 UChar32 start, end; in createFlattenSet() local 46 &start, &end, in createFlattenSet() 57 uset_addRange(newSet, start, end); in createFlattenSet() 594 int32_t start, int32_t end) in compareArrays() 608 for (idx = start; idx <= end; idx++) { in compareArrays() 837 UChar32 start = 0; in findSetMatch() local 842 strCapacity = uset_getItem(exemplarSet, i, &start, &end, str, strCapacity, &status); in findSetMatch() 848 if(uset_containsRange(scripts[j], start, end) == true){ in findSetMatch() 858 log_err("uset_indexOf(\\u%04X)=%i uset_indexOf(\\u%04X)=%i\n", start, uset_indexOf(scripts[0], start), en in findSetMatch() 591 compareArrays(const char *keyName, UResourceBundle *fromArray, const char *fromLocale, UResourceBundle *toArray, const char *toLocale, int32_t start, int32_t end) compareArrays() argument 1174 UChar32 start, end; TestExemplarSet() local [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | scheduler.cc | 78 SchedulerData def = {schedule_->start(), 0, kUnknown}; in DefaultSchedulerData() 98 // Parameters and OSR values are always fixed to the start block. in InitializePlacement() 334 FixNode(schedule_->start(), node); in BuildBlocks() 649 // is being spanned by the graph's start and end nodes. in BuildCFG() 689 // that is for the graph spanned between the schedule's start and end blocks. 693 ComputeAndInsertSpecialRPO(schedule_->start(), schedule_->end()); in ComputeSpecialRPO() 754 BasicBlock* start; member 801 CHECK_EQ(kBlockUnvisited1, schedule_->start()->loop_number()); in ComputeAndInsertSpecialRPO() 802 CHECK_EQ(kBlockUnvisited1, schedule_->start()->rpo_number()); in ComputeAndInsertSpecialRPO() 876 loop->start in ComputeAndInsertSpecialRPO() [all...] |
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-regexp.cc | 128 // If tag <= 0 then it is the negation of a start index of a substring of 177 // Let the next substring start with the second "$". 672 int start = current_match[0]; in StringReplaceGlobalRegExpWithString() local 675 if (prev < start) { in StringReplaceGlobalRegExpWithString() 676 builder.AddSubjectSlice(prev, start); in StringReplaceGlobalRegExpWithString() 682 compiled_replacement.Apply(&builder, start, end, current_match); in StringReplaceGlobalRegExpWithString() 728 int start = current_match[0]; in StringReplaceGlobalRegExpWithEmptyString() local 733 int new_length = subject_length - (end - start); in StringReplaceGlobalRegExpWithEmptyString() 750 start = current_match[0]; in StringReplaceGlobalRegExpWithEmptyString() 752 if (prev < start) { in StringReplaceGlobalRegExpWithEmptyString() 1277 int start = current_match[i * 2]; SearchRegExpMultiple() local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | tr_context.c | 481 unsigned start, in trace_context_bind_sampler_states() 488 /* remove this when we have pipe->bind_sampler_states(..., start, ...) */ in trace_context_bind_sampler_states() 489 assert(start == 0); in trace_context_bind_sampler_states() 495 trace_dump_arg(uint, start); in trace_context_bind_sampler_states() 499 pipe->bind_sampler_states(pipe, shader, start, num_states, states); in trace_context_bind_sampler_states() 1195 unsigned start, in trace_context_set_sampler_views() 1207 /* remove this when we have pipe->set_sampler_views(..., start, ...) */ in trace_context_set_sampler_views() 1208 assert(start == 0); in trace_context_set_sampler_views() 1227 trace_dump_arg(uint, start); in trace_context_set_sampler_views() 1233 pipe->set_sampler_views(pipe, shader, start, nu in trace_context_set_sampler_views() 479 trace_context_bind_sampler_states(struct pipe_context *_pipe, enum pipe_shader_type shader, unsigned start, unsigned num_states, void **states) trace_context_bind_sampler_states() argument 1193 trace_context_set_sampler_views(struct pipe_context *_pipe, enum pipe_shader_type shader, unsigned start, unsigned num, unsigned unbind_num_trailing_slots, bool take_ownership, struct pipe_sampler_view **views) trace_context_set_sampler_views() argument 2109 trace_context_set_shader_buffers(struct pipe_context *_context, enum pipe_shader_type shader, unsigned start, unsigned nr, const struct pipe_shader_buffer *buffers, unsigned writable_bitmask) trace_context_set_shader_buffers() argument 2132 trace_context_set_shader_images(struct pipe_context *_context, enum pipe_shader_type shader, unsigned start, unsigned nr, unsigned unbind_num_trailing_slots, const struct pipe_image_view *images) trace_context_set_shader_images() argument [all...] |
/third_party/python/Lib/collections/ |
H A D | __init__.py | 402 raise ValueError('Field names cannot start with an underscore: ' 1429 def count(self, sub, start=0, end=_sys.maxsize): 1432 return self.data.count(sub, start, end) 1449 def endswith(self, suffix, start=0, end=_sys.maxsize): 1450 return self.data.endswith(suffix, start, end) 1455 def find(self, sub, start=0, end=_sys.maxsize): 1458 return self.data.find(sub, start, end) 1466 def index(self, sub, start=0, end=_sys.maxsize): 1467 return self.data.index(sub, start, end) 1529 def rfind(self, sub, start [all...] |