/third_party/skia/src/utils/ |
H A D | SkParse.cpp | 271 const char* end = strchr(list, ','); in FindList() local 274 if (end == nullptr) // last entry in FindList() 277 entryLen = end - list; in FindList() 281 if (end == nullptr) in FindList() 284 list = end + 1; // skip the ',' in FindList()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | MipsAnalyzeImmediate.cpp | 28 for (InstSeqLs::iterator Iter = SeqLs.begin(); Iter != SeqLs.end(); ++Iter) in AddInstr() 79 std::make_move_iterator(SeqLsORi.end())); in GetInstSeqLs() 110 InstSeqLs::iterator ShortestSeq = SeqLs.end(); in GetShortestSeq() 114 for (InstSeqLs::iterator S = SeqLs.begin(); S != SeqLs.end(); ++S) { in GetShortestSeq() 125 Insts.append(ShortestSeq->begin(), ShortestSeq->end()); in GetShortestSeq()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | DominanceFrontier.h | 82 iterator end() { return Frontiers.end(); } in end() function in llvm::DominanceFrontierBase 83 const_iterator end() const { return Frontiers.end(); } in end() function in llvm::DominanceFrontierBase 88 assert(find(BB) == end() && "Block already in DominanceFrontier!"); in addBasicBlock() 208 } // end namespace llvm
|
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/ |
H A D | equal_benchmark.cc | 44 const bool same = absl::equal(xs.begin(), xs.end(), ys.begin(), ys.end()); in BM_absl_equal_benchmark() 54 const bool same = std::equal(xs.begin(), xs.end(), ys.begin()); in BM_std_equal_benchmark() 76 const bool same = absl::equal(xs.begin(), xs.end(), xs.begin(), xs.end()); in BM_absl_equal_self_benchmark()
|
/third_party/rust/crates/regex/src/ |
H A D | expand.rs | 35 replacement = &replacement[cap_ref.end..]; in expand_str() 77 replacement = &replacement[cap_ref.end..]; in expand_bytes() 100 end: usize, 156 end: cap_end, 181 end: i + 1, 214 CaptureRef { cap: $name_or_number.into(), end: $pos }
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
H A D | eap_server_gtc.c | 108 const u8 *pos2, *end; in eap_gtc_process() local 117 end = pos + rlen; in eap_gtc_process() 120 while (pos2 < end && *pos2) in eap_gtc_process() 122 if (pos2 == end) { in eap_gtc_process() 161 rlen = end - pos; in eap_gtc_process()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | base64.c | 27 const unsigned char *end, *in; in base64_gen_encode() local 43 end = src + len; in base64_gen_encode() 47 while (end - in >= 3) { in base64_gen_encode() 60 if (end - in) { in base64_gen_encode() 62 if (end - in == 1) { in base64_gen_encode()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
H A D | eap_server_gtc.c | 108 const u8 *pos2, *end; in eap_gtc_process() local 117 end = pos + rlen; in eap_gtc_process() 120 while (pos2 < end && *pos2) in eap_gtc_process() 122 if (pos2 == end) { in eap_gtc_process() 161 rlen = end - pos; in eap_gtc_process()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | base64.c | 30 const unsigned char *end, *in; in base64_gen_encode() local 46 end = src + len; in base64_gen_encode() 50 while (end - in >= 3) { in base64_gen_encode() 63 if (end - in) { in base64_gen_encode() 65 if (end - in == 1) { in base64_gen_encode()
|
/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | full_ime_info_manager_test.cpp | 100 ASSERT_NE(it, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 171 ASSERT_NE(it, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 217 ASSERT_NE(it, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 245 ASSERT_NE(it, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 277 ASSERT_NE(it, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 326 ASSERT_EQ(it, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 328 ASSERT_NE(it1, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 330 ASSERT_NE(it2, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 350 ASSERT_NE(it, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() 379 ASSERT_EQ(it, FullImeInfoManager::GetInstance().fullImeInfos_.end()); in HWTEST_F() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | IntlTestDecimalFormatAPIC.java | 470 * which stores start and end indexes and an attribute this range 477 int end = iterator.getRunLimit(); in findFields() 484 result.add(new FieldContainer(start, end, attribute, value)); in findFields() 485 // System.out.println(start + " " + end + ": " + attribute + ", in findFields() 488 // end +"," + attribute+ "," + value+ "));"); in findFields() 490 iterator.setIndex(end); in findFields() 495 int start, end; field in IntlTestDecimalFormatAPIC.FieldContainer 502 public FieldContainer(int start, int end, in FieldContainer() argument 504 this(start, end, attribute, attribute); in FieldContainer() 508 public FieldContainer(int start, int end, AttributedCharacterIterato argument 513 FieldContainer(int start, int end, AttributedCharacterIterator.Attribute attribute, Object value) FieldContainer() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | IntlTestDecimalFormatAPIC.java | 473 * which stores start and end indexes and an attribute this range 480 int end = iterator.getRunLimit(); in findFields() 487 result.add(new FieldContainer(start, end, attribute, value)); in findFields() 488 // System.out.println(start + " " + end + ": " + attribute + ", in findFields() 491 // end +"," + attribute+ "," + value+ "));"); in findFields() 493 iterator.setIndex(end); in findFields() 498 int start, end; field in IntlTestDecimalFormatAPIC.FieldContainer 505 public FieldContainer(int start, int end, in FieldContainer() argument 507 this(start, end, attribute, attribute); in FieldContainer() 511 public FieldContainer(int start, int end, AttributedCharacterIterato argument 516 FieldContainer(int start, int end, AttributedCharacterIterator.Attribute attribute, Object value) FieldContainer() argument [all...] |
/third_party/lzma/CPP/7zip/Common/ |
H A D | MethodProps.cpp | 70 const wchar_t *end;
in ParseStringToUInt32() local 71 number = ConvertStringToUInt32(start, &end);
in ParseStringToUInt32() 72 return (unsigned)(end - start);
in ParseStringToUInt32() 78 const wchar_t *end;
in ParseStringToUInt64() local 79 number = ConvertStringToUInt64(start, &end);
in ParseStringToUInt64() 80 return (unsigned)(end - start);
in ParseStringToUInt64() 177 const wchar_t *end;
in ParseMtProp2() local 178 v = ConvertStringToUInt32(start, &end);
in ParseMtProp2() 179 if (end == start)
in ParseMtProp2() 183 start = end;
in ParseMtProp2() 219 const wchar_t *end; StringToDictSize() local [all...] |
/third_party/libwebsockets/plugins/deaddrop/ |
H A D | protocol_lws_deaddrop.c | 360 unsigned char *p, *start, *end; in format_result() local 364 end = p + sizeof(pss->result) - LWS_PRE - 1; in format_result() 366 p += lws_snprintf((char *)p, lws_ptr_diff_size_t(end, p), in format_result() 371 p += lws_snprintf((char *)p, lws_ptr_diff_size_t(end, p), "</body></html>"); in format_result() 386 *end = &buf[sizeof(buf) - 1]; in callback_deaddrop() local 508 p += lws_snprintf((char *)p, lws_ptr_diff_size_t(end, p), in callback_deaddrop() 516 p += lws_snprintf((char *)p, lws_ptr_diff_size_t(end, p), in callback_deaddrop() 532 p += lws_snprintf((char *)p, lws_ptr_diff_size_t(end, p), in callback_deaddrop() 616 end = p + sizeof(pss->result) - LWS_PRE - 1; in callback_deaddrop() 623 &p, end)) in callback_deaddrop() [all...] |
/third_party/lwip/src/core/ipv6/ |
H A D | ip6_frag.c | 95 PACK_STRUCT_FIELD(u16_t end); 193 * not end up sending the ICMP response over the wrong link. */ in ip6_reass_free_complete_datagram() 297 u16_t offset, len, start, end; in ip6_reass() local 393 * stored zones end up resolving to a different interface. In that case, we in ip6_reass() 448 end = (u16_t)(start + len); in ip6_reass() 451 /* Iterate through until we either get to the end of the list (append), in ip6_reass() 457 if (end > iprh_tmp->start) { in ip6_reass() 463 if (start < iprh_prev->end) { in ip6_reass() 484 } else if (start < iprh_tmp->end) { in ip6_reass() 492 if (iprh_prev->end ! in ip6_reass() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | utils.h | 211 StackRange(BottomOffset begin, BottomOffset end) : begin_(begin), end_(end) { in StackRange() argument 226 BottomOffset end() const { return end_; } in end() function in v8::internal::torque::StackRange 234 return out << "StackRange{" << range.begin() << ", " << range.end() << "}"; in operator <<() 275 for (auto it = elements_.end() - count; it != elements_.end(); ++it) { in PopMany() 285 DCHECK_LE(range.end(), AboveTop()); in DeleteRange() 287 for (BottomOffset i = range.end(); i < AboveTop(); ++i) { in DeleteRange() 301 T* end() { return begin() + elements_.size(); } in end() function in v8::internal::torque::Stack 303 const T* end() cons in begin() function in v8::internal::torque::Stack [all...] |
/third_party/toybox/toys/pending/ |
H A D | crond.c | 123 static void fillarray(char *dst, int start, int end, int skip) in fillarray() argument 127 if (end < 0) { in fillarray() 137 } while (start++ != end); in fillarray() 151 int start, end, skip = 0; in parse_and_fillarray() local 177 // Get end position. in parse_and_fillarray() 178 if (!ctoken) end = -1; // e.g. N1,N2,N3 in parse_and_fillarray() 181 if ((end = getval(ctoken, min, (min ? max : max-1))) < 0) goto ERROR; in parse_and_fillarray() 182 end = min ? (end-1) : end; in parse_and_fillarray() [all...] |
/third_party/python/Python/ |
H A D | pystrtod.c | 172 const char *end = NULL; /* Silence gcc */ in _PyOS_ascii_strtod() local 234 /* locate end of number */ in _PyOS_ascii_strtod() 244 end = p; in _PyOS_ascii_strtod() 257 copy = (char *)PyMem_Malloc(end - digits_pos + in _PyOS_ascii_strtod() 271 end - (decimal_point_pos + 1)); in _PyOS_ascii_strtod() 272 c += end - (decimal_point_pos + 1); in _PyOS_ascii_strtod() 330 and *endptr will point just past the end of the converted value. 389 char *dup, *end; in _Py_string_to_number_with_underscores() local 402 end = dup; in _Py_string_to_number_with_underscores() 413 *end in _Py_string_to_number_with_underscores() 556 char *old_fraction_end, *new_fraction_end, *end, *p; remove_trailing_zeros() local [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | map_field.cc | 165 iter != map_.end(); ++iter) { in ~DynamicMapField() 177 iter != map->end(); ++iter) { in Clear() 195 return iter != map.end(); in ContainsMapKey() 236 if (iter == map->end()) { in InsertOrLookupMapValue() 251 if (iter == map_.end()) { in DeleteMapValue() 278 if (iter == map_.end()) return; in SetMapIteratorValue() 290 other_it != other_field.map_.end(); ++other_it) { in MergeFrom() 293 if (iter == map->end()) { in MergeFrom() 377 it != map_.end(); ++it) { in SyncRepeatedFieldWithMapNoLock() 454 iter != map->end(); in SyncMapWithRepeatedFieldNoLock() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
H A D | inlined_vector_exception_safety_test.cc | 132 if (vec->begin() > vec->end()) return false; in InlinedVectorInvariants() 133 if ((vec->end() - vec->begin()) != vec->size()) return false; in InlinedVectorInvariants() 134 if (std::distance(vec->begin(), vec->end()) != vec->size()) return false; in InlinedVectorInvariants() 199 testing::TestThrowingCtor<VecT>(arr.begin(), arr.end()); in TYPED_TEST() 201 testing::TestThrowingCtor<VecT>(arr.begin(), arr.end(), allocator_type{}); in TYPED_TEST() 263 vec->assign(arr.begin(), arr.end()); in TYPED_TEST() 305 auto it = vec->end(); in TYPED_TEST() 329 auto it = vec->end(); in TYPED_TEST() 342 auto it = vec->end(); in TYPED_TEST() 349 vec->insert(it, arr.begin(), arr.end()); in TYPED_TEST() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | mesh.c | 549 static int mesh_attr_text(const u8 *ies, size_t ies_len, char *buf, char *end) in mesh_attr_text() argument 568 ret = os_snprintf(pos, end - pos, "mesh_id=%s\n", mesh_id); in mesh_attr_text() 570 if (os_snprintf_error(end - pos, ret)) in mesh_attr_text() 575 ret = os_snprintf(pos, end - pos, in mesh_attr_text() 587 if (os_snprintf_error(end - pos, ret)) in mesh_attr_text() 611 ret = os_snprintf(pos, end - pos, "bss_basic_rate_set=%d", in mesh_attr_text() 613 if (os_snprintf_error(end - pos, ret)) in mesh_attr_text() 618 ret = os_snprintf(pos, end - pos, " %d", in mesh_attr_text() 620 if (os_snprintf_error(end - pos, ret)) in mesh_attr_text() 625 ret = os_snprintf(pos, end in mesh_attr_text() 637 wpas_mesh_scan_result_text(const u8 *ies, size_t ies_len, char *buf, char *end) wpas_mesh_scan_result_text() argument [all...] |
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluDrawUtil.cpp | 220 static OutputIter namedBindingsToProgramLocations (const glw::Functions& gl, deUint32 program, InputIter first, InputIter end, OutputIter out) in namedBindingsToProgramLocations() argument 222 for (InputIter cur = first; cur != end; ++cur) in namedBindingsToProgramLocations() 254 static bool areVertexArrayLocationsValid (BindingIter first, BindingIter end) in areVertexArrayLocationsValid() argument 257 for (BindingIter cur = first; cur != end; ++cur) in areVertexArrayLocationsValid() 264 if (usedLocations.find(binding.location) != usedLocations.end()) in areVertexArrayLocationsValid() 295 static void computeNonStridedBufferLayout (VertexBufferLayout& layout, BindingIter first, BindingIter end) in computeNonStridedBufferLayout() argument 297 for (BindingIter iter = first; iter != end; ++iter) in computeNonStridedBufferLayout() 426 for (std::vector<VertexAttributeDescriptor>::const_iterator vaIter = buffer.attributes.begin(); vaIter != buffer.attributes.end(); ++vaIter) in setVertexBufferAttributes() 434 for (std::vector<VertexArrayBinding>::const_iterator vaIter = bindings.begin(); vaIter != bindings.end(); ++vaIter) in disableVertexArrays() 506 TCU_CHECK(areVertexArrayLocationsValid(bindingsWithLocations.begin(), bindingsWithLocations.end())); in drawFromUserPointers() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | sbgdec.c | 129 char *script, *end; member 182 char *end; in str_to_time() local 189 hours = strtol(cur, &end, 10); in str_to_time() 190 if (end == cur || *end != ':' || end[1] < '0' || end[1] > '9') in str_to_time() 192 cur = end + 1; in str_to_time() 193 minutes = strtol(cur, &end, 10); in str_to_time() 194 if (end in str_to_time() 244 char *end; lex_double() local [all...] |
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_conn.c | 624 const uint8_t *p = src, *end = src + srclen; in nghttp3_conn_read_control() local 637 for (; p != end || busy;) { in nghttp3_conn_read_control() 641 assert(end - p > 0); in nghttp3_conn_read_control() 642 nread = nghttp3_read_varint(rvint, p, (size_t)(end - p), /* fin = */ 0); in nghttp3_conn_read_control() 656 if (p == end) { in nghttp3_conn_read_control() 661 assert(end - p > 0); in nghttp3_conn_read_control() 662 nread = nghttp3_read_varint(rvint, p, (size_t)(end - p), /* fin = */ 0); in nghttp3_conn_read_control() 738 for (; p != end;) { in nghttp3_conn_read_control() 744 len = (size_t)nghttp3_min(rstate->left, (int64_t)(end - p)); in nghttp3_conn_read_control() 795 len = (size_t)nghttp3_min(rstate->left, (int64_t)(end in nghttp3_conn_read_control() 1173 const uint8_t *p = src, *end = src ? src + srclen : src; nghttp3_conn_read_bidi() local [all...] |
/third_party/python/Modules/ |
H A D | _zoneinfo.c | 35 TransitionRuleType *end; member 151 TransitionRuleType *end, _tzrule *out); 808 goto end; in ttinfo_eq() 813 goto end; in ttinfo_eq() 818 goto end; in ttinfo_eq() 820 end: in ttinfo_eq() 1203 // occurrence of `d`", so now we just check if we over-shot the end of the in calendarrule_year_to_timestamp() 1333 /* Calculate the start and end rules for a _tzrule in the given year. */ 1335 tzrule_transitions(_tzrule *rule, int year, int64_t *start, int64_t *end) in tzrule_transitions() argument 1338 assert(rule->end ! in tzrule_transitions() 1358 int64_t start, end; find_tzrule_ttinfo() local 1413 int64_t start, end; find_tzrule_ttinfo_fromutc() local 1470 TransitionRuleType *end = NULL; parse_tz_str() local 1915 build_tzrule(PyObject *std_abbr, PyObject *dst_abbr, long std_offset, long dst_offset, TransitionRuleType *start, TransitionRuleType *end, _tzrule *out) build_tzrule() argument [all...] |