Home
last modified time | relevance | path

Searched refs:set (Results 3676 - 3700 of 14106) sorted by relevance

1...<<141142143144145146147148149150>>...565

/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...]
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/executor/
H A Dworker.rs100 CURRENT_WORKER.with(|ctx| ctx.set(self.0)); in drop()
101 CURRENT_HANDLE.with(|handle| handle.set(self.1)); in drop()
107 cur.set((&cur_context as *const WorkerContext).cast::<()>());
111 handle.set((&cur_handle as *const WorkerHandle).cast::<()>());
/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/
H A Dzip_file.h21 #include <set>
133 // This descriptor MUST exist if bit 3 of the general purpose bit flag is set (see below).
199 void GetChildNames(const std::string &srcPath, std::set<std::string> &fileSet);
292 void GetChildNamesCache(const std::string &srcPath, std::set<std::string> &fileSet);
296 void GetChildNamesNormal(const std::string &srcPath, std::set<std::string> &fileSet);
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/display_sync/
H A Dui_display_sync_manager.cpp195 std::set<int32_t> UIDisplaySyncManager::FindRefreshRateFactors(int32_t refreshRate) in FindRefreshRateFactors()
197 std::set<int32_t> refreshRateFactors; in FindRefreshRateFactors()
222 std::set<int32_t> allFactors; in FindAllRefreshRateFactors()
224 std::set<int32_t> factors = FindRefreshRateFactors(refreshRate); in FindAllRefreshRateFactors()
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Dimage_painter_utils.cpp41 radii[SkRRect::kUpperLeft_Corner].set( in ToSkRadius()
44 radii[SkRRect::kUpperRight_Corner].set( in ToSkRadius()
47 radii[SkRRect::kLowerLeft_Corner].set( in ToSkRadius()
50 radii[SkRRect::kLowerRight_Corner].set( in ToSkRadius()
H A Dgraphic_modifier.cpp54 radii[SkRRect::kUpperLeft_Corner].set(radius_->Get().x_, radius_->Get().x_), in MakeRRect()
55 radii[SkRRect::kUpperRight_Corner].set(radius_->Get().y_, radius_->Get().y_); in MakeRRect()
56 radii[SkRRect::kLowerRight_Corner].set(radius_->Get().z_, radius_->Get().z_); in MakeRRect()
57 radii[SkRRect::kLowerLeft_Corner].set(radius_->Get().w_, radius_->Get().w_); in MakeRRect()
/foundation/multimedia/camera_framework/services/camera_service/include/
H A Dhcamera_device_manager.h20 #include <set>
108 sptr<HCameraDevice> device, uint32_t accessTokenId, int32_t cost, const std::set<std::string> &conflicting) in HCameraDeviceHolder()
157 inline std::set<std::string> GetConflicting() const { return conflicting_; } in GetConflicting()
168 std::set<std::string> conflicting_;
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_service_regional_test/
H A Dnet_conn_service_regional_test.cpp82 std::set<std::string> permissions; in HWTEST_F()
89 std::set<std::string> permissions; in HWTEST_F()
96 std::set<std::string> permissions; in HWTEST_F()
103 std::set<std::string> permissions; in HWTEST_F()
/foundation/communication/netmanager_base/services/netconnmanager/include/stub/
H A Dnet_conn_service_stub.h36 using NetConnServiceFuncPer = std::pair<NetConnServiceFunc, std::set<std::string>>;
46 bool CheckPermission(const std::set<std::string> &permissions);
47 bool CheckPermissionWithCache(const std::set<std::string> &permissions);
48 int32_t OnRequestCheck(uint32_t code, const std::set<std::string> &permissions);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include/
H A Dquery_expression.h20 #include <set>
140 const std::set<Key> &GetKeys() const;
141 void InKeys(const std::set<Key> &keys);
176 std::set<Key> keys_;
/foundation/distributedhardware/distributed_input/services/sink/sinkmanager/include/
H A Ddistributed_input_sink_manager.h20 #include <set>
181 std::set<sptr<IGetSinkScreenInfosCallback>> getSinkScreenInfosCallbacks_;
190 std::set<std::string> sharingDhIds_;
191 std::map<int32_t, std::set<std::string>> sharingDhIdsMap_;
/foundation/communication/dsoftbus/adapter/common/include/
H A Dsoftbus_adapter_socket.h150 void SoftBusSocketFdZero(SoftBusFdSet *set);
151 void SoftBusSocketFdSet(int32_t socketFd, SoftBusFdSet *set);
152 void SoftBusSocketFdClr(int32_t socketFd, SoftBusFdSet *set);
153 int32_t SoftBusSocketFdIsset(int32_t socketFd, SoftBusFdSet *set);
/kernel/linux/linux-5.10/drivers/clk/
H A Dclk-gate.c46 * set2dis = 1 -> clear bit -> set = 0
47 * set2dis = 0 -> set bit -> set = 1
50 * set2dis = 1 -> set bit -> set = 1
51 * set2dis = 0 -> clear bit -> set = 0
58 int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0; in clk_gate_endisable() local
62 set ^= enable; in clk_gate_endisable()
71 if (set) in clk_gate_endisable()
76 if (set) in clk_gate_endisable()
[all...]
/kernel/linux/linux-5.10/arch/mips/kernel/
H A Dmcount.S19 .set noreorder
20 .set noat
219 .set at
220 .set reorder
/kernel/linux/linux-6.6/arch/mips/kernel/
H A Dmcount.S19 .set noreorder
20 .set noat
219 .set at
220 .set reorder
/kernel/linux/linux-6.6/arch/x86/boot/compressed/
H A Dident_map_64.c4 * demand by building up a new set of page tables (or appending to the
155 * New page-table is set up - map the kernel image, boot_params and the in initialize_identity_maps()
256 pteval_t set, pteval_t clr) in set_clr_page_flags()
298 if ((set | clr) & _PAGE_ENC) { in set_clr_page_flags()
311 pte = pte_set_flags(pte, set); in set_clr_page_flags()
316 * If the encryption attribute is being set, then change the page state to in set_clr_page_flags()
320 if (set & _PAGE_ENC) in set_clr_page_flags()
375 * - Reserved bits set in do_boot_page_fault()
254 set_clr_page_flags(struct x86_mapping_info *info, unsigned long address, pteval_t set, pteval_t clr) set_clr_page_flags() argument
/kernel/linux/linux-5.10/include/linux/
H A Dsysctl.h14 ** any numbers within any one set of values. If you have to
78 * Register a set of sysctl names by calling register_sysctl_table
81 * set up by the registration and need not be initialised in advance.
153 struct ctl_table_set *set; member
191 extern void retire_sysctl_set(struct ctl_table_set *set);
194 struct ctl_table_set *set,
197 struct ctl_table_set *set,
/kernel/linux/linux-5.10/drivers/media/platform/xilinx/
H A Dxilinx-vip.c144 * format are set to the given media bus format. The new format size is stored
158 * xvip_clr_or_set - Clear or set the register with a bitmask
161 * @mask: bitmask to be set or cleared
162 * @set: boolean flag indicating whether to set or clear
164 * Clear or set the register at address @addr with a bitmask @mask depending on
165 * the boolean flag @set. When the flag @set is true, the bitmask is set in
167 * when the flag @set i
174 xvip_clr_or_set(struct xvip_device *xvip, u32 addr, u32 mask, bool set) xvip_clr_or_set() argument
194 xvip_clr_and_set(struct xvip_device *xvip, u32 addr, u32 clr, u32 set) xvip_clr_and_set() argument
[all...]

Completed in 20 milliseconds

1...<<141142143144145146147148149150>>...565