Home
last modified time | relevance | path

Searched refs:end (Results 1276 - 1300 of 10884) sorted by relevance

1...<<51525354555657585960>>...436

/third_party/glslang/SPIRV/
H A DSPVRemapper.cpp150 if (tid_it == idTypeSizeMap.end()) { in idTypeSizeInWords()
171 for (it = stripWhiteList.begin(); it < stripWhiteList.end(); it++) in isStripOp()
403 if (idPosR.find(asId(start+1)) == idPosR.end()) in stripDeadRefs()
482 error("function end without function start"); in buildLocalMaps()
697 spirvbin_t& spirvbin_t::process(instfn_t instFn, idfn_t idFn, unsigned begin, unsigned end) in process() argument
702 // If begin or end == 0, use defaults in process()
704 end = (end == 0 ? unsigned(spv.size()) : end); in process()
709 for (unsigned word = begin; word < end; wor in process()
[all...]
/third_party/mesa3d/src/imagination/csbgen/
H A Dgen_pack_header.py409 __slots__ = ["start", "end", "type", "default", "shift", "_defines"]
412 end: int
418 def __init__(self, parent: Node, name: str, start: int, end: int, ty: str, *,
423 self.end = end
430 if self.start > self.end:
431 raise ValueError("Start cannot be after end. Start: %d, End: %d, Field: '%s'"
432 % (self.start, self.end, self.name))
434 if self.type == "bool" and self.end != self.start:
485 if self.end
[all...]
/third_party/nghttp2/src/
H A Dshrpx_client_handler.cc516 p = std::copy(std::begin(ipaddr), std::end(ipaddr), p); in init_forwarded_for()
893 std::begin(affinity_hash), std::end(affinity_hash), hash, in get_downstream_addr()
896 if (it == std::end(affinity_hash)) { in get_downstream_addr()
968 if (it != std::end(shared_addr->affinity_hash_map)) { in get_downstream_addr_strict_affinity()
987 std::begin(affinity_hash), std::end(affinity_hash), h, in get_downstream_addr_strict_affinity()
990 if (it == std::end(affinity_hash)) { in get_downstream_addr_strict_affinity()
1344 auto end = in proxy_protocol_read() local
1345 std::find_first_of(rb_.pos(), bufend, std::begin(chrs), std::end(chrs)); in proxy_protocol_read()
1347 if (end == bufend || *end in proxy_protocol_read()
[all...]
/third_party/libabigail/src/
H A Dabg-leaf-reporter.cc88 i != sorted_diffs.end(); in report_diffs()
304 i != d.priv_->sorted_subtype_changed_parms_.end(); in report()
332 dif != d.changed_types().end(); in report()
350 dif != d.changed_decls().end (); in report()
369 i != d.priv_->deleted_types_.end(); in report()
381 i != d.priv_->deleted_decls_.end(); in report()
395 i != d.priv_->inserted_types_.end(); in report()
415 i != d.priv_->inserted_decls_.end(); in report()
517 i != d.get_priv()->deleted_member_functions_.end(); in report()
538 i != d.get_priv()->inserted_member_functions_.end(); in report()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dloop_dependence.cpp99 nodes.insert(nodes.end(), child_nodes.begin(), child_nodes.end()); in GetAllTopLevelRecurrences()
117 nodes.insert(nodes.end(), child_nodes.begin(), child_nodes.end()); in GetAllTopLevelConstants()
263 std::begin(sets_of_subscripts), std::end(sets_of_subscripts), in GetDependence()
351 for (auto it = first_coupled; it < std::end(sets_of_subscripts); ++it) { in GetDependence()
373 std::all_of(std::begin(loops), std::end(loops), in GetDependence()
1138 current_partition.begin(), current_partition.end(), in PartitionSubscripts()
1148 source_recurrences.insert(source_recurrences.end(), in PartitionSubscripts()
1150 destination_recurrences.end()); in PartitionSubscripts()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dloop_dependence.cpp99 nodes.insert(nodes.end(), child_nodes.begin(), child_nodes.end()); in GetAllTopLevelRecurrences()
117 nodes.insert(nodes.end(), child_nodes.begin(), child_nodes.end()); in GetAllTopLevelConstants()
263 std::begin(sets_of_subscripts), std::end(sets_of_subscripts), in GetDependence()
351 for (auto it = first_coupled; it < std::end(sets_of_subscripts); ++it) { in GetDependence()
373 std::all_of(std::begin(loops), std::end(loops), in GetDependence()
1138 current_partition.begin(), current_partition.end(), in PartitionSubscripts()
1148 source_recurrences.insert(source_recurrences.end(), in PartitionSubscripts()
1150 destination_recurrences.end()); in PartitionSubscripts()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dbtree_container.h96 iterator end() { return tree_.end(); } in end() function in absl::container_internal::btree_container
97 const_iterator end() const { return tree_.end(); } in end() function in absl::container_internal::btree_container
98 const_iterator cend() const { return tree_.end(); } in cend()
122 return find(key) != end(); in contains()
154 // (i.e. not equal to end()). Return an iterator pointing to the node after
155 // the one that was erased (or end() if none exists).
191 return std::equal(x.begin(), x.end(), y.begin()); in operator ==()
199 return std::lexicographical_compare(x.begin(), x.end(), in operator <()
[all...]
/third_party/rust/crates/regex/src/
H A Dcompile.rs232 /// expression, e, we would end up with a situation that looked like:
288 let (s, e) = (r.start() as char, r.end() as char); in c()
445 self.push_hole(InstHole::Bytes { start: b, end: b }); in c_char()
465 ranges.iter().map(|r| (r.start(), r.end())).collect(); in c_class()
494 self.byte_classes.set_range(r.start(), r.end()); in c_class_bytes()
497 end: r.end(), in c_class_bytes()
503 self.byte_classes.set_range(r.start(), r.end()); in c_class_bytes()
505 self.push_hole(InstHole::Bytes { start: r.start(), end: r.end() }), in c_class_bytes()
[all...]
/third_party/spirv-tools/source/opt/
H A Dloop_dependence.cpp97 nodes.insert(nodes.end(), child_nodes.begin(), child_nodes.end()); in GetAllTopLevelRecurrences()
115 nodes.insert(nodes.end(), child_nodes.begin(), child_nodes.end()); in GetAllTopLevelConstants()
262 std::begin(sets_of_subscripts), std::end(sets_of_subscripts), in GetDependence()
350 for (auto it = first_coupled; it < std::end(sets_of_subscripts); ++it) { in GetDependence()
372 std::all_of(std::begin(loops), std::end(loops), in GetDependence()
1137 current_partition.begin(), current_partition.end(), in PartitionSubscripts()
1147 source_recurrences.insert(source_recurrences.end(), in PartitionSubscripts()
1149 destination_recurrences.end()); in PartitionSubscripts()
[all...]
/third_party/spirv-tools/test/
H A Denum_set_test.cpp290 std::vector<TestEnum> enumerateValuesFromToWithStep(size_t start, size_t end, in enumerateValuesFromToWithStep() argument
292 assert(end > start && "end > start"); in enumerateValuesFromToWithStep()
294 for (size_t i = start; i < end; i += step) { in enumerateValuesFromToWithStep()
304 std::shuffle(shuffledValues.begin(), shuffledValues.end(), rng); in createSetUnorderedInsertion()
615 auto it = set.insert(set.end(), spv::Capability::Shader); in TEST()
678 auto end = set.end(); in TEST() local
679 ASSERT_EQ(begin, end); in TEST()
687 auto end in TEST() local
699 auto end = set.end(); TEST() local
717 auto end = set.end(); TEST() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dhs20_supplicant.c862 const u8 *end = pos + len; in hs20_osu_add_prov() local
885 if (end - pos < 2) { in hs20_osu_add_prov()
892 if (len2 > end - pos) { in hs20_osu_add_prov()
914 if (end - pos < 1) { in hs20_osu_add_prov()
920 if (uri_len > end - pos) { in hs20_osu_add_prov()
929 if (end - pos < 1) { in hs20_osu_add_prov()
935 if (osu_method_len > end - pos - 1) { in hs20_osu_add_prov()
949 if (end - pos < 2) { in hs20_osu_add_prov()
956 if (len2 > end - pos) { in hs20_osu_add_prov()
1007 if (end in hs20_osu_add_prov()
1062 const u8 *pos, *end; hs20_osu_icon_fetch() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dhs20_supplicant.c877 const u8 *end = pos + len; in hs20_osu_add_prov() local
900 if (end - pos < 2) { in hs20_osu_add_prov()
907 if (len2 > end - pos) { in hs20_osu_add_prov()
940 if (end - pos < 1) { in hs20_osu_add_prov()
946 if (uri_len > end - pos) { in hs20_osu_add_prov()
955 if (end - pos < 1) { in hs20_osu_add_prov()
961 if (osu_method_len > end - pos - 1) { in hs20_osu_add_prov()
975 if (end - pos < 2) { in hs20_osu_add_prov()
982 if (len2 > end - pos) { in hs20_osu_add_prov()
1033 if (end in hs20_osu_add_prov()
1088 const u8 *pos, *end; hs20_osu_icon_fetch() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmovtextdec.c63 uint16_t end; member
293 style->end = bytestream_get_be16(&tsmb); in decode_styl()
294 if (style->end < style->start || in decode_styl()
295 (i && style->start < m->s[i - 1].end)) { in decode_styl()
299 if (style->start == style->end) { in decode_styl()
313 } else if (i && style->start == style[-1].end && in decode_styl()
316 style[-1].end = style->end; in decode_styl()
371 if (text_pos == style->end) { in text_to_ass()
481 const char *ptr = avpkt->data, *end; in mov_text_decode_frame() local
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvaf_spectrumsynth.c65 int start, end; member
284 int end = h * (s->channels - ch - 1); in read_fft_data() local
292 for (y = start, f = 0; y >= end; y--, f++) { in read_fft_data()
299 for (y = start, f = 0; y >= end; y--, f++) { in read_fft_data()
309 for (y = end, f = 0; y <= start; y++, f++) { in read_fft_data()
316 for (y = end, f = 0; y <= start; y++, f++) { in read_fft_data()
355 int start, end; in try_push_frame() local
365 end = s->end; in try_push_frame()
366 k = end; in try_push_frame()
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ir.cpp58 dst.insert(dst.end(), p->dst.begin(), p->dst.end()); in init_args()
59 src.insert(src.end(), p->src.begin(), p->src.end()); in init_args()
65 for (vvec::iterator I = dst.begin(), E = dst.end(); I != E; ++I) { in init_args()
312 for (node_iterator I = begin(), E = end(); I != E; ++I) in get_slot_mask()
335 for (vvec::iterator I2 = dst.begin(), E2 = dst.end(); in update_packed_items()
346 for (vvec::iterator I2 = dst.begin(), E2 = dst.end(); in update_packed_items()
352 for (node_iterator I = begin(), E = end(); I != E; ++I) { in update_packed_items()
356 for (vvec::iterator I2 = n->src.begin(), E2 = n->src.end(); in update_packed_items()
[all...]
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_util.h93 virtual bool end() const = 0; // if true, get will return 0
144 for (DLList::Iterator it = (list)->iterator(); !(it).end(); (it).next())
194 virtual void next() { if (!end()) pos = rev ? pos->prev : pos->next; } in next()
196 virtual bool end() const { return pos == term; } in end() function in nv50_ir::DLList::Iterator
198 // caution: if you're at end-2 and erase it, then do next, you're at end
393 bool end() const { return pos >= size; }
431 inline int end() const { checkTail(); return tail ? tail->end : -1; }
436 inline int extent() const { return end()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidation_state.h208 /// function end instruction
254 if (it == entry_point_to_execution_models_.end()) { in GetExecutionModels()
266 if (it == entry_point_to_execution_modes_.end()) { in GetExecutionModes()
297 return (function_call_targets_.find(id) != function_call_targets_.end()); in IsFunctionCallTarget()
301 return (id_to_function_.find(id) != id_to_function_.end()); in IsFunctionCallDefined()
315 /// Register a function end instruction
380 auto lb = std::find(dec_list.begin(), dec_list.end(), dec); in RegisterDecorationForId()
381 if (lb == dec_list.end()) { in RegisterDecorationForId()
388 void RegisterDecorationsForId(uint32_t id, InputIt begin, InputIt end) { in RegisterDecorationsForId() argument
390 cur_decs.insert(cur_decs.end(), begi in RegisterDecorationsForId()
396 RegisterDecorationsForStructMember(uint32_t struct_id, uint32_t member_index, InputIt begin, InputIt end) RegisterDecorationsForStructMember() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidation_state.h208 /// function end instruction
254 if (it == entry_point_to_execution_models_.end()) { in GetExecutionModels()
266 if (it == entry_point_to_execution_modes_.end()) { in GetExecutionModes()
297 return (function_call_targets_.find(id) != function_call_targets_.end()); in IsFunctionCallTarget()
301 return (id_to_function_.find(id) != id_to_function_.end()); in IsFunctionCallDefined()
315 /// Register a function end instruction
380 auto lb = std::find(dec_list.begin(), dec_list.end(), dec); in RegisterDecorationForId()
381 if (lb == dec_list.end()) { in RegisterDecorationForId()
388 void RegisterDecorationsForId(uint32_t id, InputIt begin, InputIt end) { in RegisterDecorationsForId() argument
390 cur_decs.insert(cur_decs.end(), begi in RegisterDecorationsForId()
396 RegisterDecorationsForStructMember(uint32_t struct_id, uint32_t member_index, InputIt begin, InputIt end) RegisterDecorationsForStructMember() argument
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
H A Dfont.cc65 return tables_.find(tag) != tables_.end(); in HasTable()
131 table_headers->end(), in SerializeHeader()
132 std::inserter(sorted_headers, sorted_headers.end())); in SerializeHeader()
135 record_end = sorted_headers.end(); in SerializeHeader()
179 for (TableMap::iterator table = tables_.begin(), table_end = tables_.end(); in GenerateTableOrdering()
184 tag_end = default_table_ordering->end(); in GenerateTableOrdering()
192 table_end = tables_in_font.end(); in GenerateTableOrdering()
249 table_builder_end = table_builders_.end(); in ReadyToBuild()
282 return (table_builders_.find(tag) != table_builders_.end()); in HasTableBuilder()
352 record_end = table_data->end(); in BuildAllTableBuilders()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DAliasSetTracker.cpp91 UnknownInsts.insert(UnknownInsts.end(), AS.UnknownInsts.begin(), AS.UnknownInsts.end()); in mergeSetIn()
161 // Add it to the end of the list... in addPointer()
219 for (iterator I = begin(), E = end(); I != E; ++I) in aliasesPointer()
256 for (iterator I = begin(), E = end(); I != E; ++I) in aliasesUnknownInst()
268 if (begin() != end()) { in getUniqueInstruction()
272 if (std::next(begin()) != end()) in getUniqueInstruction()
291 for (PointerMapType::iterator I = PointerMap.begin(), E = PointerMap.end(); in clear()
311 for (iterator I = begin(), E = end(); I != E;) { in mergeAliasSetsForPointer()
338 for (iterator I = begin(), E = end(); in findAliasSetForUnknownInst()
[all...]
/third_party/python/Lib/
H A Dtokenize.py46 class TokenInfo(collections.namedtuple('TokenInfo', 'type string start end line')):
49 return ('TokenInfo(type=%s, string=%r, start=%r, end=%r, line=%r)' %
107 # Tail end of ' string.
109 # Tail end of " string.
111 # Tail end of ''' string.
113 # Tail end of """ string.
177 raise ValueError("start ({},{}) precedes previous end ({},{})"
195 tok_type, token, start, end, line = t
206 self.prev_row, self.prev_col = end
218 self.prev_row, self.prev_col = end
[all...]
/third_party/rust/crates/proc-macro2/tests/
H A Dtest.rs319 assert_eq!(positive.span().end().column, 3); in literal_span()
321 assert_eq!(negative.span().end().column, 4); in literal_span()
439 let end = Span::call_site().end(); in default_span()
440 assert_eq!(end.line, 1); in default_span()
441 assert_eq!(end.column, 0); in default_span()
473 let end = joined1.unwrap().end(); in span_join()
476 assert_eq!(end.line, 2); in span_join()
477 assert_eq!(end in span_join()
[all...]
/third_party/spirv-tools/source/val/
H A Dvalidation_state.h207 /// function end instruction
254 if (it == entry_point_to_execution_models_.end()) { in GetExecutionModels()
266 if (it == entry_point_to_execution_modes_.end()) { in GetExecutionModes()
297 return (function_call_targets_.find(id) != function_call_targets_.end()); in IsFunctionCallTarget()
301 return (id_to_function_.find(id) != id_to_function_.end()); in IsFunctionCallDefined()
315 /// Register a function end instruction
399 void RegisterDecorationsForId(uint32_t id, InputIt begin, InputIt end) { in RegisterDecorationsForId() argument
401 cur_decs.insert(begin, end); in RegisterDecorationsForId()
409 InputIt end) { in RegisterDecorationsForStructMember()
411 for (InputIt iter = begin; iter != end; in RegisterDecorationsForStructMember()
407 RegisterDecorationsForStructMember(uint32_t struct_id, uint32_t member_index, InputIt begin, InputIt end) RegisterDecorationsForStructMember() argument
428 std::set<Decoration>::const_iterator end; global() member
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/
H A Dikev2_common.c119 u8 iter, *pos, *end; in ikev2_prf_plus() local
138 end = out + out_len; in ikev2_prf_plus()
140 while (pos < end) { in ikev2_prf_plus()
151 if ((int) clen > end - pos) in ikev2_prf_plus()
152 clen = end - pos; in ikev2_prf_plus()
246 u8 next_payload, const u8 *pos, const u8 *end) in ikev2_parse_payloads()
257 if (end < pos) in ikev2_parse_payloads()
259 left = end - pos; in ikev2_parse_payloads()
263 (long) (end - pos)); in ikev2_parse_payloads()
345 pos + plen == end) { in ikev2_parse_payloads()
245 ikev2_parse_payloads(struct ikev2_payloads *payloads, u8 next_payload, const u8 *pos, const u8 *end) ikev2_parse_payloads() argument
435 const u8 *pos, *end, *iv, *integ; ikev2_decrypt_payload() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
H A Dikev2_common.c119 u8 iter, *pos, *end; in ikev2_prf_plus() local
138 end = out + out_len; in ikev2_prf_plus()
140 while (pos < end) { in ikev2_prf_plus()
151 if ((int) clen > end - pos) in ikev2_prf_plus()
152 clen = end - pos; in ikev2_prf_plus()
246 u8 next_payload, const u8 *pos, const u8 *end) in ikev2_parse_payloads()
257 if (end < pos) in ikev2_parse_payloads()
259 left = end - pos; in ikev2_parse_payloads()
263 (long) (end - pos)); in ikev2_parse_payloads()
345 pos + plen == end) { in ikev2_parse_payloads()
245 ikev2_parse_payloads(struct ikev2_payloads *payloads, u8 next_payload, const u8 *pos, const u8 *end) ikev2_parse_payloads() argument
435 const u8 *pos, *end, *iv, *integ; ikev2_decrypt_payload() local
[all...]

Completed in 41 milliseconds

1...<<51525354555657585960>>...436