Home
last modified time | relevance | path

Searched refs:end (Results 2301 - 2325 of 10762) sorted by relevance

1...<<919293949596979899100>>...431

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp56 for (MachineFunction::iterator FI = F.begin(), FE = F.end();
93 } // end of anonymous namespace
111 for (MachineBasicBlock::iterator I = MBB.begin(); I != MBB.end(); ) { in runOnMachineBasicBlock()
137 MachineBasicBlock::iterator D = MBB.end(); in runOnMachineBasicBlock()
145 if (D == MBB.end()) in runOnMachineBasicBlock()
154 assert (J != MBB.end() && "MI needs a delay instruction."); in runOnMachineBasicBlock()
176 return MBB.end(); in findDelayInstr()
179 return MBB.end(); in findDelayInstr()
224 return MBB.end(); in findDelayInstr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp154 if (IT != SeenInsts.end()) in seen()
188 std::deque<Instruction*> Worklist(Roots.begin(), Roots.end()); in walkBackwards()
193 if (SeenInsts.find(I) != SeenInsts.end()) in walkBackwards()
302 assert(SeenInsts.find(OI) != SeenInsts.end() && in walkForwards()
358 for (auto It = ECs.begin(), E = ECs.end(); It != E; ++It) { in validateAndTransform()
368 if (SeenI == SeenInsts.end()) in validateAndTransform()
382 if (!UI || SeenInsts.find(UI) == SeenInsts.end()) { in validateAndTransform()
438 if (ConvertedInsts.find(I) != ConvertedInsts.end()) in convert()
/third_party/spirv-tools/source/
H A Dcfa.h114 /// predecessors), and it is therefore at the end of the postorder vector.
198 if (terminal(top.block) || top.iter == end(*successor_func(top.block))) { in DepthFirstTraversal()
239 auto res = std::find_if(std::begin(predecessors), std::end(predecessors), in CalculateDominators()
244 if (res == end(predecessors)) continue; in CalculateDominators()
292 out.begin(), out.end(), in CalculateDominators()
380 augmented_preds.insert(augmented_preds.end(), preds->begin(), preds->end()); in ComputeAugmentedCFG()
390 augmented_succ.insert(augmented_succ.end(), succ->begin(), succ->end()); in ComputeAugmentedCFG()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSparseMultiSet.h266 // end compares equal in operator ==()
286 // If we're at the end, then issue a new find() in operator --()
295 assert(!isEnd() && isKeyed() && "Incrementing an invalid/end iterator"); in operator ++()
318 /// be decremented, but will compare equal to other end iterators.
319 iterator end() { return iterator(this, SMSNode::INVALID, SMSNode::INVALID); } in end() function in llvm::SparseMultiSet
320 const_iterator end() const { in end() function in llvm::SparseMultiSet
352 /// @returns An iterator to the element identified by key, or end().
367 return end(); in findIndex()
373 /// @returns An iterator to the element identified by key, or end().
388 for (const_iterator It = find(Key); It != end();
[all...]
H A DStringMap.h76 /// LookupBucketFor - Look up the bucket that the specified string should end
182 // Allocate a new item with space for the string at the end and a null in Create()
340 iterator end() { in end() function in llvm::StringMap
346 const_iterator end() const { in end() function in llvm::StringMap
352 StringMapKeyIterator<ValueTy>(end())); in keys()
357 if (Bucket == -1) return end(); in find()
363 if (Bucket == -1) return end(); in find()
371 if (it != end()) in lookup()
382 return find(Key) == end() ? 0 : 1; in count()
481 if (I == end()) retur in erase()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DDDG.h153 InstList.insert(InstList.end(), Input.begin(), Input.end()); in appendInstructions()
449 return ChildIteratorType(N->end(), &DDGGetTargetNode); in child_end()
455 static ChildEdgeIteratorType child_edge_end(NodeRef N) { return N->end(); } in child_edge_end()
467 static nodes_iterator nodes_end(DataDependenceGraph *DG) { return DG->end(); } in nodes_end()
489 return ChildIteratorType(N->end(), &DDGGetTargetNode); in child_end()
495 static ChildEdgeIteratorType child_edge_end(NodeRef N) { return N->end(); } in child_edge_end()
509 return DG->end(); in nodes_end()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h184 /// "must alias", meaning that the SUnits at either end of the edge have a
300 unsigned BotReadyCycle = 0; ///< Cycle relative to end when node is ready.
529 E = Nodes.end(); I != E; ++I) in push_all()
644 static SUnitIterator end (SUnit *N) { in end() function in llvm::SUnit::SUnitIterator
671 return SUnitIterator::end(N); in child_end()
681 return nodes_iterator(G->SUnits.end()); in nodes_end()
765 iterator end() { return Index2Node.end(); } in end() function in llvm::SUnit::ScheduleDAGTopologicalSort
766 const_iterator end() const { return Index2Node.end(); } in end() function in llvm::SUnit::ScheduleDAGTopologicalSort
[all...]
/third_party/toybox/lib/
H A Dargs.c38 * toys.optargs[1] = NULL (end of list)
80 // At the end: [groups] of previously seen options
91 // -- force end of arguments
96 // Hangs off getoptflagstate, freed at end of option parsing.
110 // linked list of long options. (Hangs off getoptflagstate, free at end of
273 char *end; in parse_optflaglist() local
276 // Find the end of the longopt in parse_optflaglist()
277 for (end = ++options; *end && *end ! in parse_optflaglist()
[all...]
/third_party/vixl/test/
H A Dtest-invalset.cc216 // Ensure that set.begin() == set.end() for the empty set. in TEST()
217 VIXL_CHECK(set.begin() == set.end()); in TEST()
228 for (InvalSetIterator<TestSet> it = set.begin(); it != set.end(); ++it) { in TEST()
244 for (InvalSetIterator<TestSet> it = set.begin(); it != set.end(); ++it) { in TEST()
273 for (InvalSetIterator<TestSet> it = set.begin(); it != set.end(); ++it) { in TEST()
381 VIXL_CHECK(set1.begin() != set1.end()); in TEST()
382 VIXL_CHECK(set2.begin() != set2.end()); in TEST()
384 VIXL_CHECK(set1.end() != set2.end()); in TEST()
/third_party/protobuf/objectivec/
H A DGPBArray.h211 @end
383 @end
555 @end
727 @end
899 @end
1071 @end
1243 @end
1537 @end
1643 //%@end
1805 //%@end
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
H A Dparse.cc352 // append a single ArgList at the end of the input_args.
422 // the value of FLAGS_flagfile to that value at the end of the parsing. in HandleGeneratorFlags()
427 flagfile_value.insert(flagfile_value.end(), flagfiles.begin(), in HandleGeneratorFlags()
428 flagfiles.end()); in HandleGeneratorFlags()
581 if (std::find(undefok.begin(), undefok.end(), flag_name) != undefok.end()) { in CanIgnoreUndefinedFlag()
586 std::find(undefok.begin(), undefok.end(), flag_name) != undefok.end()) { in CanIgnoreUndefinedFlag()
602 return std::binary_search(specified_flags->begin(), specified_flags->end(), in WasPresentOnCommandLine()
806 std::sort(specified_flags->begin(), specified_flags->end(), in ParseCommandLineImpl()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Dbenchmarks.cc68 PrecompiledSeedSeq(Iterator begin, Iterator end) {} in PrecompiledSeedSeq() argument
74 void generate(OutIterator begin, OutIterator end) { in generate() argument
76 for (; begin != end; begin++) { in generate()
88 std::copy(std::begin(kSeedData), std::end(kSeedData), out); in param()
107 SSeq seq(std::begin(kSeedData), std::end(kSeedData)); in make_engine()
145 std::generate(std::begin(v), std::end(v), rng); in BM_Generate()
155 std::shuffle(std::begin(v), std::end(v), rng); in BM_Shuffle()
165 std::shuffle(std::begin(v), std::end(v), rng); in BM_ShuffleReuse()
/third_party/rust/crates/regex/regex-syntax/src/
H A Dunicode.rs119 /// This function panics if `end < start`.
124 end: char, in contains_simple_case_mapping()
132 fn imp(start: char, end: char) -> FoldResult<bool> { in contains_simple_case_mapping()
136 assert!(start <= end); in contains_simple_case_mapping()
139 if start <= c && c <= end { in contains_simple_case_mapping()
141 } else if c > end { in contains_simple_case_mapping()
150 imp(start, end) in contains_simple_case_mapping()
416 .binary_search_by(|&(start, end)| { in is_word_character()
417 if start <= c && c <= end { in is_word_character()
895 fn contains_case_map(start: char, end
[all...]
/third_party/spirv-tools/source/opt/
H A Dlocal_access_chain_convert_pass.cpp198 if (supported_ref_ptrs_.find(ptrId) != supported_ref_ptrs_.end()) return true; in HasOnlySupportedRefs()
222 for (auto bi = func->begin(); bi != func->end(); ++bi) { in FindTargetVars()
223 for (auto ii = bi->begin(); ii != bi->end(); ++ii) { in FindTargetVars()
272 for (auto bi = func->begin(); bi != func->end(); ++bi) { in ConvertLocalAccessChains()
274 for (auto ii = bi->begin(); ii != bi->end(); ++ii) { in ConvertLocalAccessChains()
319 auto i = std::find(dead_instructions.begin(), dead_instructions.end(), in ConvertLocalAccessChains()
321 if (i != dead_instructions.end()) { in ConvertLocalAccessChains()
352 if (extensions_allowlist_.find(extName) == extensions_allowlist_.end()) in AllExtensionsSupported()
/third_party/spirv-tools/source/util/
H A Dsmall_vector.h71 insert(end(), first, last); in SmallVector()
88 for (auto it = init_list.begin(); it != init_list.end(); ++it) { in SmallVector()
177 for (auto lit = lhs.begin(); lit != lhs.end(); ++lit, ++rit) { in operator ==()
242 iterator end() { in end() function in spvtools::utils::SmallVector
250 const_iterator end() const { in end() function in spvtools::utils::SmallVector
258 const_iterator cend() const { return end(); } in cend()
284 iterator e = end(); in erase()
364 // places. We start at the end and work backwards, to make sure we do not in insert()
366 for (iterator i = begin() + new_size - 1, j = end() - 1; j >= pos; in insert()
/third_party/spirv-tools/source/val/
H A Dvalidate_function.cpp40 if (std::find(dec_a.begin(), dec_a.end(), dec) == dec_a.end()) { in DoPointeesLogicallyMatch()
92 if (std::find(acceptable.begin(), acceptable.end(), use->opcode()) == in ValidateFunction()
93 acceptable.end() && in ValidateFunction()
167 decorations.begin(), decorations.end(), [](const Decoration& d) { in ValidateFunctionParameter()
172 decorations.begin(), decorations.end(), [](const Decoration& d) { in ValidateFunctionParameter()
199 decorations.begin(), decorations.end(), [](const Decoration& d) { in ValidateFunctionParameter()
204 decorations.begin(), decorations.end(), [](const Decoration& d) { in ValidateFunctionParameter()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fImplementationLimitTests.cpp300 for (vector<GLint>::const_iterator fmt = formats.begin(); fmt != formats.end(); fmt++) in iterate()
305 set<GLint> formatSet(formats.begin(), formats.end()); in iterate()
310 const bool found = formatSet.find(fmt) != formatSet.end(); in iterate()
369 set<string> extsInB(b.begin(), b.end()); in compareExtensionLists()
371 for (vector<string>::const_iterator i = a.begin(); i != a.end(); ++i) in compareExtensionLists()
373 if (extsInB.find(*i) == extsInB.end()) in compareExtensionLists()
396 for (vector<string>::const_iterator ext = indexedExts.begin(); ext != indexedExts.end(); ++ext) in iterate()
402 for (vector<string>::const_iterator ext = nonIndexedExts.begin(); ext != nonIndexedExts.end(); ++ext) in iterate()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
H A Deap_tnc.c207 const u8 *pos, *end; in eap_tnc_process() local
228 end = pos + len; in eap_tnc_process()
243 if (end - pos < 4) { in eap_tnc_process()
251 if (message_length < (u32) (end - pos) || in eap_tnc_process()
255 message_length, (long) (end - pos)); in eap_tnc_process()
276 if (data->in_buf && eap_tnc_process_cont(data, pos, end - pos) < 0) { in eap_tnc_process()
284 end - pos); in eap_tnc_process()
289 wpabuf_set(&tmpbuf, pos, end - pos); in eap_tnc_process()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
H A Deap_server_tnc.c450 const u8 *pos, *end; in eap_tnc_process() local
460 end = pos + len; in eap_tnc_process()
475 if (end - pos < 4) { in eap_tnc_process()
483 if (message_length < (u32) (end - pos) || in eap_tnc_process()
487 message_length, (long) (end - pos)); in eap_tnc_process()
507 if (data->in_buf && eap_tnc_process_cont(data, pos, end - pos) < 0) { in eap_tnc_process()
514 pos, end - pos) < 0) in eap_tnc_process()
526 wpabuf_set(&tmpbuf, pos, end - pos); in eap_tnc_process()
/third_party/vk-gl-cts/modules/egl/
H A DteglCreateSurfaceTests.cpp70 if (!de::contains(extensions.begin(), extensions.end(), "EGL_EXT_platform_base")) in checkEGLPlatformSupport()
363 for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init()
378 for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init()
393 for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init()
408 for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init()
423 for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init()
438 for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init()
453 for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++) in init()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
H A Deap_tnc.c207 const u8 *pos, *end; in eap_tnc_process() local
228 end = pos + len; in eap_tnc_process()
243 if (end - pos < 4) { in eap_tnc_process()
251 if (message_length < (u32) (end - pos) || in eap_tnc_process()
255 message_length, (long) (end - pos)); in eap_tnc_process()
276 if (data->in_buf && eap_tnc_process_cont(data, pos, end - pos) < 0) { in eap_tnc_process()
284 end - pos); in eap_tnc_process()
289 wpabuf_set(&tmpbuf, pos, end - pos); in eap_tnc_process()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
H A Deap_server_tnc.c450 const u8 *pos, *end; in eap_tnc_process() local
460 end = pos + len; in eap_tnc_process()
475 if (end - pos < 4) { in eap_tnc_process()
483 if (message_length < (u32) (end - pos) || in eap_tnc_process()
487 message_length, (long) (end - pos)); in eap_tnc_process()
507 if (data->in_buf && eap_tnc_process_cont(data, pos, end - pos) < 0) { in eap_tnc_process()
514 pos, end - pos) < 0) in eap_tnc_process()
526 wpabuf_set(&tmpbuf, pos, end - pos); in eap_tnc_process()
/third_party/glslang/glslang/MachineIndependent/
H A DlinkValidate.cpp105 auto end = std::remove_if(unitLinkerObjects.begin(), unitLinkerObjects.end(), in mergeUniformObjects() local
108 unitLinkerObjects.resize(end - unitLinkerObjects.begin()); in mergeUniformObjects()
128 auto end = std::remove_if(linkerObjects.begin(), linkerObjects.end(), in checkStageIO() local
130 linkerObjects.resize(end - linkerObjects.begin()); in checkStageIO()
133 auto unitEnd = std::remove_if(unitLinkerObjects.begin(), unitLinkerObjects.end(), in checkStageIO()
155 callGraph.insert(callGraph.end(), unit.callGraph.begin(), unit.callGraph.end()); in mergeCallGraphs()
181 requestedExtensions.insert(unit.requestedExtensions.begin(), unit.requestedExtensions.end()); in mergeModes()
[all...]
/third_party/python/Python/
H A Dcompile.c137 /* target block when exception is raised, should not be set by front-end. */
332 int u_end_lineno; /* the end line of the current stmt */
333 int u_end_col_offset; /* the end offset of the current stmt */
376 // i items off of the stack. The end result looks like this (with each block
1010 /* -1 at end of iterator, 1 if continue iterating. */ in stack_effect()
2436 // (Note that in theory we could end up here even for an argument in compiler_visit_argannotation()
2923 basicblock *end, *next2; in compiler_jump_if() local
2924 end = compiler_new_block(c); in compiler_jump_if()
2925 if (end == NULL) in compiler_jump_if()
2934 ADDOP_JUMP_NOLINE(c, JUMP, end); in compiler_jump_if()
2963 basicblock *end = compiler_new_block(c); compiler_jump_if() local
2992 basicblock *end, *next; compiler_ifexp() local
3071 basicblock *end, *next; compiler_if() local
3102 basicblock *start, *body, *cleanup, *end; compiler_for() local
3137 basicblock *start, *except, *end; compiler_async_for() local
3193 basicblock *loop, *body, *end, *anchor = NULL; compiler_while() local
3351 basicblock *body, *end, *exit, *cleanup; compiler_try_finally() local
3400 basicblock *end = compiler_new_block(c); compiler_try_star_finally() local
3480 basicblock *body, *except, *end, *cleanup; compiler_try_except() local
3675 basicblock *end = compiler_new_block(c); compiler_try_star_except() local
4021 basicblock *end; compiler_assert() local
4348 basicblock *end; compiler_boolop() local
4541 are_all_items_const(asdl_expr_seq *seq, Py_ssize_t begin, Py_ssize_t end) are_all_items_const() argument
4553 compiler_subdict(struct compiler *c, expr_ty e, Py_ssize_t begin, Py_ssize_t end) compiler_subdict() argument
4680 basicblock *end = compiler_new_block(c); compiler_compare() local
5027 compiler_subkwargs(struct compiler *c, asdl_keyword_seq *keywords, Py_ssize_t begin, Py_ssize_t end) compiler_subkwargs() argument
6762 basicblock *end; compiler_pattern_or() local
7024 basicblock *end; compiler_match_inner() local
7475 assemble_emit_exception_table_entry(struct assembler *a, int start, int end, basicblock *handler) assemble_emit_exception_table_entry() argument
[all...]
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dparse.rs207 /// started using `#` and continue until the end of the line.
467 /// If the end of the input has been reached, then `false` is returned.
611 /// and end of the span are set.
642 concat.span.end = self.pos(); in push_alternate()
747 group_concat.span.end = self.pos(); in pop_group()
749 group.span.end = self.pos(); in pop_group()
752 alt.span.end = group_concat.span.end; in pop_group()
769 /// This assumes that the parser has advanced to the end.
772 concat.span.end in pop_group_end()
[all...]

Completed in 31 milliseconds

1...<<919293949596979899100>>...431