Home
last modified time | relevance | path

Searched refs:set (Results 2201 - 2225 of 10113) sorted by relevance

1...<<81828384858687888990>>...405

/third_party/mesa3d/src/amd/compiler/
H A Daco_lower_to_cssa.cpp60 Temp equal_anc_in = Temp(); /* within the same merge set */
61 Temp equal_anc_out = Temp(); /* from a different set */
68 std::vector<merge_set> merge_sets; /* each vector is one (ordered) merge set */
95 merge_set set; in collect_parallelcopies() local
122 /* place the new operands in the same merge set */ in collect_parallelcopies()
123 set.emplace_back(tmp); in collect_parallelcopies()
134 if (set.empty()) in collect_parallelcopies()
140 set.emplace(std::next(set.begin()), def.getTemp()); in collect_parallelcopies()
142 set in collect_parallelcopies()
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_bank_conflicts.cpp96 set(vector_type &v, unsigned i, scalar_type x) in set() function
204 set(vector_type &v, unsigned i, scalar_type x)
323 set(weight_vector_type &v, unsigned i, unsigned p, scalar_type x)
325 set(v.v[(2 * i + p) / vector_width], (2 * i + p) % vector_width, x);
346 set(v, i, p, get(v, j, q));
347 set(v, j, q, tmp);
528 * Return the set of GRF atoms that should be left untouched at their
687 set(conflicts[r], s, p, w); in shader_conflict_weight_matrix()
688 set(conflicts[s], r, p, w); in shader_conflict_weight_matrix()
697 * Return the set o
[all...]
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dudbgutil.cpp607 #include <set>
622 std::map < std::string, std::set < std::string > > > fTable;
657 fTable[ticket] = std::map < std::string, std::set < std::string > >(); in add()
665 fTable[ticket][where] = std::set < std::string >(); in add()
681 fTable[ticket] = std::map < std::string, std::set < std::string > >(); in add()
689 fTable[ticket][where] = std::set < std::string >(); in add()
707 std::map < std::string, std::set < std::string > > >::iterator i = fTable.begin(); in print()
718 for( std::map< std::string, std::set < std::string > >::iterator ii = (*i).second.begin(); in print()
722 for ( std::set < std::string >::iterator iii = (*ii).second.begin(); in print()
/third_party/rust/crates/aho-corasick/src/
H A Dnfa.rs25 /// up a prefix trie of a given set of patterns, and then wiring up failure
65 /// A set of equivalence classes in terms of bytes. We compute this while
70 /// A set of states. Each state defines its own transitions, a fail
71 /// transition and a set of indices corresponding to matches.
909 // set to the dead state for ALL states following a match, not in fill_failure_transitions()
941 /// Returns a set that tracked queued states.
945 /// returns an inert set that nevers adds anything and always reports
1040 /// A set of state identifiers used to avoid revisiting the same state multiple
1043 /// This set has an "inert" and an "active" mode. When inert, the set neve
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dxml_consistency.py54 # We could make this an (extension name, api name) set to be more specific.
115 extension_cmds = set()
123 names = set()
155 """Return a set of "support=" attribute strings that should not be included in the database.
159 return set(())
199 # Some return codes are related in that only one of a set
203 # set(("XR_ERROR_SESSION_NOT_RUNNING", "XR_ERROR_SESSION_RUNNING")),
219 self.allowedStructs = set((
233 self.nestedStructs = set((
243 self.requiredStructs = set((
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidation_state.h20 #include <set>
231 /// Returns the set of entry points that root call graphs that contain
233 const std::set<uint32_t>& recursive_entry_points() const { in recursive_entry_points()
251 const std::set<SpvExecutionModel>* GetExecutionModels( in GetExecutionModels()
263 const std::set<SpvExecutionMode>* GetExecutionModes( in GetExecutionModes()
287 std::set<uint32_t> EntryPointReferences(uint32_t id) const;
289 /// Inserts an <id> to the set of functions that are target of OpFunctionCall.
323 /// Returns a reference to the set of capabilities in the module.
335 /// is an empty set.
339 /// is an empty set
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidation_state.h20 #include <set>
231 /// Returns the set of entry points that root call graphs that contain
233 const std::set<uint32_t>& recursive_entry_points() const { in recursive_entry_points()
251 const std::set<SpvExecutionModel>* GetExecutionModels( in GetExecutionModels()
263 const std::set<SpvExecutionMode>* GetExecutionModes( in GetExecutionModes()
287 std::set<uint32_t> EntryPointReferences(uint32_t id) const;
289 /// Inserts an <id> to the set of functions that are target of OpFunctionCall.
323 /// Returns a reference to the set of capabilities in the module.
335 /// is an empty set.
339 /// is an empty set
[all...]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dudbgutil.cpp604 #include <set>
619 std::map < std::string, std::set < std::string > > > fTable;
654 fTable[ticket] = std::map < std::string, std::set < std::string > >(); in add()
662 fTable[ticket][where] = std::set < std::string >(); in add()
678 fTable[ticket] = std::map < std::string, std::set < std::string > >(); in add()
686 fTable[ticket][where] = std::set < std::string >(); in add()
704 std::map < std::string, std::set < std::string > > >::iterator i = fTable.begin(); in print()
715 for( std::map< std::string, std::set < std::string > >::iterator ii = (*i).second.begin(); in print()
719 for ( std::set < std::string >::iterator iii = (*ii).second.begin(); in print()
/third_party/skia/include/core/
H A DSkMatrix.h135 /** Returns SkMatrix set to scale and translate src to dst. ScaleToFit selects
138 empty, returns SkMatrix set to:
193 false positives. For example, when kPerspective_Mask is set, all
194 other bits are set.
481 SkMatrix& set(int index, SkScalar value) { in set() function in SkMatrix
492 SkMatrix& setScaleX(SkScalar v) { return this->set(kMScaleX, v); } in setScaleX()
498 SkMatrix& setScaleY(SkScalar v) { return this->set(kMScaleY, v); } in setScaleY()
504 SkMatrix& setSkewY(SkScalar v) { return this->set(kMSkewY, v); } in setSkewY()
510 SkMatrix& setSkewX(SkScalar v) { return this->set(kMSkewX, v); } in setSkewX()
516 SkMatrix& setTranslateX(SkScalar v) { return this->set(kMTrans
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A Dlocalintermediate.h49 #include <set>
122 // An IO range is a 3-D rectangle; the set of (location, component, index) triples all lying
138 // An offset range is a 2-D rectangle; the set of (binding, offset) pairs all lying
163 // Track a set of strings describing how the module was processed.
229 // Currently we will keep status set by explicitly declared layout or variable decl.
232 AstRefTypeVar, // Status set by variable decl
233 AstRefTypeFunc, // Status set by function decl
234 AstRefTypeLayout, // Status set by layout decl
442 const std::set<std::string>& getRequestedExtensions() const { return requestedExtensions; }
564 // If a type is provided, the node's type will be set t
[all...]
/third_party/curl/lib/
H A Dimap.c774 if(data->set.mimepost.kind != MIMEKIND_NONE) { in imap_perform_append()
776 data->set.mimepost.flags &= ~MIME_BODY_ONLY; in imap_perform_append()
779 curl_mime_headers(&data->set.mimepost, data->set.headers, 0); in imap_perform_append()
780 result = Curl_mime_prepare_headers(data, &data->set.mimepost, NULL, in imap_perform_append()
785 result = Curl_mime_add_header(&data->set.mimepost.curlheaders, in imap_perform_append()
790 result = Curl_mime_rewind(&data->set.mimepost); in imap_perform_append()
795 data->state.infilesize = Curl_mime_size(&data->set.mimepost); in imap_perform_append()
799 data->state.in = (void *) &data->set.mimepost; in imap_perform_append()
955 else if(data->set in imap_state_capability_resp()
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationDataBuilder.java84 trie.set(c, Collation.FALLBACK_CE32); in initForTailoring()
88 // Always set the Hangul tag to help performance. in initForTailoring()
94 // Copy the set contents but don't copy/clone the set as a whole because in initForTailoring()
192 trie.set(c, oldCE32); in addCE32()
198 trie.set(c, ce32); in addCE32()
211 trie.set(c, contextCE32); in addCE32()
270 void optimize(UnicodeSet set) { in optimize() argument
271 if(set.isEmpty()) { return; } in optimize()
272 UnicodeSetIterator iter = new UnicodeSetIterator(set); in optimize()
285 suppressContractions(UnicodeSet set) suppressContractions() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollationDataBuilder.java85 trie.set(c, Collation.FALLBACK_CE32); in initForTailoring()
89 // Always set the Hangul tag to help performance. in initForTailoring()
95 // Copy the set contents but don't copy/clone the set as a whole because in initForTailoring()
193 trie.set(c, oldCE32); in addCE32()
199 trie.set(c, ce32); in addCE32()
212 trie.set(c, contextCE32); in addCE32()
271 void optimize(UnicodeSet set) { in optimize() argument
272 if(set.isEmpty()) { return; } in optimize()
273 UnicodeSetIterator iter = new UnicodeSetIterator(set); in optimize()
286 suppressContractions(UnicodeSet set) suppressContractions() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducase.cpp36 /* set of property starts for UnicodeSet ------------------------------------ */
42 sa->add(sa->set, start); in _enumPropertyStartsRange()
214 sa->add(sa->set, c+delta); in ucase_addCaseClosure()
235 sa->add(sa->set, 0x69); in ucase_addCaseClosure()
240 sa->addString(sa->set, iDot, 2); in ucase_addCaseClosure()
244 sa->add(sa->set, 0x49); in ucase_addCaseClosure()
257 sa->add(sa->set, mapping); in ucase_addCaseClosure()
264 sa->add(sa->set, (excWord&UCASE_EXC_DELTA_IS_NEGATIVE)==0 ? c+delta : c-delta); in ucase_addCaseClosure()
298 sa->addString(sa->set, (const char16_t *)pe, length); in ucase_addCaseClosure()
315 sa->add(sa->set, mappin in ucase_addCaseClosure()
[all...]
/third_party/python/Lib/re/
H A D_parser.py486 # check if the branch can be replaced by a character set
487 set = []
493 set.append((op, av))
495 set.extend(av)
499 # we can store this as a character set instead of a
501 subpattern.append((IN, _uniq(set)))
547 # character set
548 set = []
549 setappend = set.append
555 'Possible nested set a
[all...]
/third_party/skia/src/gpu/ops/
H A DStrokeRectOp.cpp67 verts[0].set(rect.fLeft + rad, rect.fTop + rad); in init_nonaa_stroke_rect_strip()
68 verts[1].set(rect.fLeft - rad, rect.fTop - rad); in init_nonaa_stroke_rect_strip()
69 verts[2].set(rect.fRight - rad, rect.fTop + rad); in init_nonaa_stroke_rect_strip()
70 verts[3].set(rect.fRight + rad, rect.fTop - rad); in init_nonaa_stroke_rect_strip()
71 verts[4].set(rect.fRight - rad, rect.fBottom - rad); in init_nonaa_stroke_rect_strip()
72 verts[5].set(rect.fRight + rad, rect.fBottom + rad); in init_nonaa_stroke_rect_strip()
73 verts[6].set(rect.fLeft + rad, rect.fBottom - rad); in init_nonaa_stroke_rect_strip()
74 verts[7].set(rect.fLeft - rad, rect.fBottom + rad); in init_nonaa_stroke_rect_strip()
230 vertex[0].set(fRect.fLeft, fRect.fTop);
231 vertex[1].set(fRec
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp118 #include <set>
209 void updateLiveness(std::set<unsigned> &RegSet, bool Recalc,
217 bool split(MachineInstr &MI, std::set<unsigned> &UpdRegs);
227 std::set<unsigned> &UpdRegs);
231 bool predicate(MachineInstr &TfrI, bool Cond, std::set<unsigned> &UpdRegs);
233 std::set<unsigned> &UpdRegs);
239 std::set<unsigned> &UpdRegs);
326 // Only set the kill flag on the first encountered use of Reg in this in updateKillFlags()
469 std::set<RegisterRef> DefRegs; in updateDeadsInRange()
493 // Construct the set o in updateDeadsInRange()
[all...]
/third_party/python/Modules/_sre/
H A Dsre_lib.h104 SRE(charset)(SRE_STATE* state, const SRE_CODE* set, SRE_CODE ch) in charset() argument
106 /* check if character is a member of the given set */ in charset()
111 switch (*set++) { in charset()
118 if (ch == set[0]) in charset()
120 set++; in charset()
125 if (sre_category(set[0], (int) ch)) in charset()
127 set++; in charset()
133 (set[ch/SRE_CODE_BITS] & (1u << (ch & (SRE_CODE_BITS-1))))) in charset()
135 set += 256/SRE_CODE_BITS; in charset()
140 if (set[ in charset()
191 charset_loc_ignore(SRE_STATE* state, const SRE_CODE* set, SRE_CODE ch) charset_loc_ignore() argument
[all...]
/kernel/linux/linux-5.10/arch/xtensa/variants/fsf/include/variant/
H A Dtie-asm.h43 .set .Lxchal_ofs_, .Lxchal_ofs_ + 4
58 .set .Lxchal_ofs_, .Lxchal_ofs_ + 4
/kernel/linux/linux-5.10/arch/mips/include/asm/mach-ralink/
H A Dralink_regs.h45 static inline void rt_sysc_m32(u32 clr, u32 set, unsigned reg) in rt_sysc_m32() argument
49 __raw_writel(val | set, rt_sysc_membase + reg); in rt_sysc_m32()
/kernel/linux/linux-5.10/arch/alpha/lib/
H A Dstrlen.S16 .set noreorder
17 .set noat
H A Dev67-strcat.S33 mov $16, $0 # E : set up return value
41 cmpbge $31, $1, $2 # E : bits set iff byte == 0
H A Dev67-strlen.S22 .set noreorder
23 .set noat
/kernel/linux/linux-6.6/arch/mips/include/asm/mach-ralink/
H A Dralink_regs.h45 static inline void rt_sysc_m32(u32 clr, u32 set, unsigned reg) in rt_sysc_m32() argument
49 __raw_writel(val | set, rt_sysc_membase + reg); in rt_sysc_m32()
/kernel/linux/linux-6.6/arch/alpha/lib/
H A Dev67-strcat.S33 mov $16, $0 # E : set up return value
41 cmpbge $31, $1, $2 # E : bits set iff byte == 0

Completed in 23 milliseconds

1...<<81828384858687888990>>...405