/third_party/mesa3d/src/gtest/include/gtest/ |
H A D | gtest-param-test.h | 208 // Range(start, end) 209 // - returns a generator producing a sequence of values {start, start+1, 210 // start+2, ..., }. 211 // Range(start, end, step) 212 // - returns a generator producing a sequence of values {start, start+step, 213 // start+step+step, ..., }. 218 // * start and end must have the same type. That type may be any integral or 225 // * Condition start < en 229 Range(T start, T end, IncrementT step) Range() argument 235 Range(T start, T end) Range() argument [all...] |
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | enums2names.py | 125 self.start = 0 146 self.start = self.nline 154 self.name, self.enums[self.name]["start"], self.enums[self.name]["end"], 155 self.start, self.nline)) 159 "start": self.start,
|
/third_party/rust/crates/cxx/src/ |
H A D | sip.rs | 86 /// Unsafe because: unchecked indexing at start..start+len 87 unsafe fn u8to64_le(buf: &[u8], start: usize, len: usize) -> u64 { in u8to64_le() 93 // that the index start..start+len is in bounds. in u8to64_le() 94 out = unsafe { load_int_le!(buf, start + i, u32) } as u64; in u8to64_le() 99 out |= (unsafe { load_int_le!(buf, start + i, u16) } as u64) << (i * 8); in u8to64_le() 104 out |= (unsafe { *buf.get_unchecked(start + i) } as u64) << (i * 8); in u8to64_le()
|
/third_party/python/Lib/multiprocessing/ |
H A D | sharedctypes.py | 229 def __getslice__(self, start, stop): 231 return self._obj[start:stop] 233 def __setslice__(self, start, stop, values): 235 self._obj[start:stop] = values
|
/third_party/skia/samplecode/ |
H A D | SampleCusp.cpp | 28 SkMSec start = 0; variable 163 std::string timeStr = std::to_string((float) (curTime - start) / 1000.f); 169 if (!start) { 170 start = curTime;
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-utils.h | 229 return Vector<T>(start() + from, to - from); in SubVector() 238 // Returns the pointer to the start of the data in the vector. 239 T* start() const { return start_; } 322 DOUBLE_CONVERSION_ASSERT(strlen(buffer_.start()) == static_cast<size_t>(position_)); 325 return buffer_.start();
|
H A D | formattedval_impl.h | 110 * Sorts the fields: start index first, length second. 124 int32_t start; member 178 * start: the start position within the string of the span. -1 if unknown. 181 void appendSpanInfo(UFieldCategory category, int32_t spanValue, int32_t start, int32_t length, UErrorCode& status); 182 void prependSpanInfo(UFieldCategory category, int32_t spanValue, int32_t start, int32_t length, UErrorCode& status); 194 int32_t trimFront(int32_t start) const;
|
H A D | formattedvalue.cpp | 59 int32_t start, in setState() 63 fStart = start; in setState() 178 int32_t start, in ucfpos_setState() 185 impl->fImpl.setState(category, field, start, limit); in ucfpos_setState() 56 setState( int32_t category, int32_t field, int32_t start, int32_t limit) setState() argument 174 ucfpos_setState( UConstrainedFieldPosition* ptr, int32_t category, int32_t field, int32_t start, int32_t limit, UErrorCode* ec) ucfpos_setState() argument
|
H A D | strmatch.cpp | 28 int32_t start, in StringMatcher() 37 theString.extractBetween(start, limit, pattern); in StringMatcher() 117 // forward start, limit, and only if a prior match does not in matches() 221 int32_t start, in replace() 238 text.handleReplaceBetween(start, limit, UnicodeString()); // delete original text in replace() 27 StringMatcher(const UnicodeString& theString, int32_t start, int32_t limit, int32_t segmentNum, const TransliterationRuleData& theData) StringMatcher() argument 220 replace(Replaceable& text, int32_t start, int32_t limit, int32_t& ) replace() argument
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff2-interp-cs.hh | 240 unsigned int start = env.argStack.get_count () - ((k+1) * n); in process_blend() local 242 if (unlikely (start > env.argStack.get_count ())) in process_blend() 249 const hb_array_t<const blend_arg_t> blends = env.argStack.get_subarray (start + n + (i * k)); in process_blend() 250 env.argStack[start + i].set_blends (n, i, k, blends); in process_blend()
|
H A D | hb-ot-map.hh | 149 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0; in get_stage_lookups() local 151 *plookups = end == start ? nullptr : &lookups[table_index][start]; in get_stage_lookups() 152 *lookup_count = end - start; in get_stage_lookups()
|
H A D | hb-repacker.hh | 49 start (0), in vertex_t() 62 unsigned start; member 213 char* start = c->allocate_size <char> (size); in serialize() local 214 if (!start) return; in serialize() 216 memcpy (start, vertices_[i].obj.head, size); in serialize() 219 serialize_link (link, start, c); in serialize() 768 * compute the serialized start and end positions for each vertex. 778 v.start = current_pos; in update_positions() 863 offset = child.start - parent.start; brea in compute_offset() [all...] |
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/lexer/ |
H A D | lexer.go | 74 start := l.loc 78 return fmt.Errorf("%v unterminated string", start) 154 start := l.loc 159 src := tok.Source{S: start, E: end}
|
/third_party/typescript/tests/baselines/reference/ |
H A D | stringLiteralTypeIsSubtypeOfString.js | 54 slice(start?: number, end?: number): string { return null; } 56 substring(start: number, end?: number): string { return null; } 134 C.prototype.slice = function (start, end) { return null; };
136 C.prototype.substring = function (start, end) { return null; };
|
/third_party/toybox/lib/ |
H A D | linestack.c | 22 // New size rounded up to next multiple of 64, allocate and copy start. in linestack_addstack() 95 char *start, *end; in crunch_str() local 98 for (end = start = *str; *end; columns += col, end += bytes) { in crunch_str() 152 // Write width chars at start of string to strdout with standard escapes 154 int draw_str(char *start, int width) in draw_str() argument 156 return crunch_str(&start, width, stdout, 0, crunch_rev_escape); in draw_str()
|
/third_party/python/Objects/clinic/ |
H A D | listobject.c.h | 3 [clinic start generated code]*/ 219 "index($self, value, start=0, stop=sys.maxsize, /)\n" 230 list_index_impl(PyListObject *self, PyObject *value, Py_ssize_t start, 238 Py_ssize_t start = 0; in list_index() local 248 if (!_PyEval_SliceIndexNotNone(args[1], &start)) { in list_index() 258 return_value = list_index_impl(self, value, start, stop); in list_index()
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
H A D | TimeUtil.java | 291 public static Timestamp add(Timestamp start, Duration length) { in add() argument 292 return Timestamps.add(start, length); in add() 301 public static Timestamp subtract(Timestamp start, Duration length) { in subtract() argument 302 return Timestamps.subtract(start, length); in subtract()
|
/third_party/python/Lib/test/ |
H A D | test_threadsignals.py | 197 self.start = None 209 self.start = time.monotonic() 226 self.assertLess(self.end - self.start, 2.0) 227 self.assertGreater(self.end - self.start, 0.3)
|
H A D | test_threading_local.py | 40 t.start() 104 t.start() 152 t1.start() 155 t2.start()
|
/third_party/skia/experimental/sktext/include/ |
H A D | Types.h | 78 Range(T start, T end) : fStart(start) , fEnd(end) { } in Range() argument 101 // For RTL ranges start >= end 144 DirTextRange(TextIndex start, TextIndex end, bool leftToRight) in DirTextRange() 145 : TextRange(start, end) in DirTextRange()
|
/third_party/skia/experimental/sktext/src/ |
H A D | Paint.cpp | 91 TextIndex start = 0; in findDecoratedBlock() local 93 if (start + block.charCount <= textRange.fStart) { in findDecoratedBlock() 94 start += block.charCount; in findDecoratedBlock() 96 } else if (start >= textRange.fEnd) { in findDecoratedBlock()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_query.c | 82 /** Have the start/end snapshots landed? */ 86 uint64_t start; member 295 q->result = q->map->end != q->map->start; in calculate_result_on_cpu() 300 q->result = intel_device_info_timebase_scale(devinfo, q->map->start); in calculate_result_on_cpu() 304 q->result = iris_raw_timestamp_delta(q->map->start, q->map->end); in calculate_result_on_cpu() 317 q->result = q->map->end - q->map->start; in calculate_result_on_cpu() 327 q->result = q->map->end - q->map->start; in calculate_result_on_cpu() 394 query_mem64(q, offsetof(struct iris_query_snapshots, start)); in calculate_result_on_gpu() 538 offsetof(struct iris_query_snapshots, start)); in iris_begin_query() 794 struct mi_value start in set_predicate_for_result() local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pt_fetch_shade_pipeline_llvm.c | 613 start_or_maxelt = fetch_info->start; in llvm_pipeline_generic() 806 fetch_info.start = 0; in llvm_middle_end_run() 811 prim_info.start = 0; in llvm_middle_end_run() 825 unsigned start, in llvm_middle_end_linear_run() 834 fetch_info.start = start; in llvm_middle_end_linear_run() 839 prim_info.start = 0; in llvm_middle_end_linear_run() 853 unsigned start, in llvm_middle_end_linear_run_elts() 864 fetch_info.start = start; in llvm_middle_end_linear_run_elts() 824 llvm_middle_end_linear_run(struct draw_pt_middle_end *middle, unsigned start, unsigned count, unsigned prim_flags) llvm_middle_end_linear_run() argument 852 llvm_middle_end_linear_run_elts(struct draw_pt_middle_end *middle, unsigned start, unsigned count, const ushort *draw_elts, unsigned draw_count, unsigned prim_flags) llvm_middle_end_linear_run_elts() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/conf/ |
H A D | conf_def.c | 47 static void trim_ws(CONF *conf, char *start); 222 char *start, *psection, *pname; in def_load_bio() local 359 start = eat_ws(conf, s); in def_load_bio() 360 ss = start; in def_load_bio() 373 if (!str_copy(conf, NULL, §ion, start)) in def_load_bio() 536 start = eat_ws(conf, p); in def_load_bio() 537 trim_ws(conf, start); in def_load_bio() 549 if (!str_copy(conf, psection, &(v->value), start)) in def_load_bio() 755 * np which is the start of the name string which is in str_copy() 757 * cp which is the start o in str_copy() 935 trim_ws(CONF *conf, char *start) trim_ws() argument [all...] |
/third_party/openssl/crypto/conf/ |
H A D | conf_def.c | 47 static void trim_ws(CONF *conf, char *start); 222 char *start, *psection, *pname; in def_load_bio() local 359 start = eat_ws(conf, s); in def_load_bio() 360 ss = start; in def_load_bio() 373 if (!str_copy(conf, NULL, §ion, start)) in def_load_bio() 536 start = eat_ws(conf, p); in def_load_bio() 537 trim_ws(conf, start); in def_load_bio() 549 if (!str_copy(conf, psection, &(v->value), start)) in def_load_bio() 755 * np which is the start of the name string which is in str_copy() 757 * cp which is the start o in str_copy() 935 trim_ws(CONF *conf, char *start) trim_ws() argument [all...] |