Home
last modified time | relevance | path

Searched refs:set (Results 5126 - 5150 of 7870) sorted by relevance

1...<<201202203204205206207208209210>>...315

/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dextensionmetadocgenerator.py64 # This is a set containing names of extensions (if any) promoted
68 self.promotedFrom = set()
315 interacts = set()
514 SPV_deps[name] = set()
H A DgenRef.py152 refs = set(())
1006 # Only extensions with a supported="..." attribute in this set
1008 ext_names = set(k for k, v in registry.extdict.items()
1011 desired_extensions = ext_names.intersection(set(results.extension))
/third_party/openssl/crypto/
H A Dsparccpuid.S53 ! "negative" and "borrow" bits set in both %icc and %xcc.
486 set 0,%g4 ! diff
526 set 0,%g4 ! diff
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dtransformation_flatten_conditional_branch.cpp69 std::set<uint32_t> used_fresh_ids; in IsApplicable()
85 // Use a set to keep track of the instructions that require fresh ids. in IsApplicable()
86 std::set<opt::Instruction*> instructions_that_need_ids; in IsApplicable()
313 // need to set |wrapper_info.instruction|, as it will not be used. in Apply()
437 std::set<opt::Instruction*>* instructions_that_need_ids) { in GetProblematicInstructionsIfConditionalCanBeFlattened()
552 // |instructions_that_need_ids| set. in GetProblematicInstructionsIfConditionalCanBeFlattened()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dtransformation_flatten_conditional_branch.cpp69 std::set<uint32_t> used_fresh_ids; in IsApplicable()
85 // Use a set to keep track of the instructions that require fresh ids. in IsApplicable()
86 std::set<opt::Instruction*> instructions_that_need_ids; in IsApplicable()
313 // need to set |wrapper_info.instruction|, as it will not be used. in Apply()
437 std::set<opt::Instruction*>* instructions_that_need_ids) { in GetProblematicInstructionsIfConditionalCanBeFlattened()
552 // |instructions_that_need_ids| set. in GetProblematicInstructionsIfConditionalCanBeFlattened()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ducal.cpp440 ((Calendar*)cal)->set(year, month, date); in ucal_setDate()
456 ((Calendar*)cal)->set(year, month, date, hour, minute, second); in ucal_setDateTime()
508 ((Calendar*)cal)->set(field, value); in ucal_set()
/third_party/python/Lib/test/
H A Dtest_genericalias.py91 generic_types = [type, tuple, list, dict, set, frozenset, enumerate,
150 for t in tuple, list, dict, set, frozenset, defaultdict, deque:
403 dir_of_gen_alias = set(dir(list[int]))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMLowOverheadLoops.cpp104 // Is the given instruction part of the predicate set controlling the entry
228 return MachineFunctionProperties().set(
229 MachineFunctionProperties::Property::NoVRegs).set(
328 assert(VCTP && "VCTP instruction expected but is not set"); in ValidateTailPredicate()
564 MF->getProperties().set(MachineFunctionProperties::Property::TracksLiveness); in runOnMachineFunction()
611 // with potentially multiple set.loop.iterations, so we need to enable this. in ProcessLoop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DRDFGraph.h211 // set r0, 1 ; r0 = 1
212 // set r1, 1 ; r1 = 1
216 // s1: set [d2<r0>(,,u9):]
217 // s3: set [d4<r1>(,,u10):]
236 #include <set>
412 using RegisterSet = std::set<RegisterRef>;
513 using NodeSet = std::set<NodeId>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp345 // The set of visited expressions. in collectFlatAddressExpressions()
936 U.set(NewV); in rewriteWithNewAddressSpaces()
1007 U.set(new AddrSpaceCastInst(NewV, V->getType(), "", &*InsertPos)); in rewriteWithNewAddressSpaces()
1009 U.set(ConstantExpr::getAddrSpaceCast(cast<Constant>(NewV), in rewriteWithNewAddressSpaces()
/third_party/skia/third_party/externals/icu/source/common/
H A Dnormalizer2impl.h37 // (with this constant set to 0),
203 * It is set to after the last known character with cc<=1,
254 void addLcccChars(UnicodeSet &set) const;
393 UBool getCanonStartSet(UChar32 c, UnicodeSet &set) const;
672 void addComposites(const uint16_t *list, UnicodeSet &set) const;
731 const uint8_t *smallFCD; // [0x100] one bit per 32 BMP code points, set if any FCD!=0
901 * This is a bit set to help speed up FCD value lookups in the absence of a full
904 * Each smallFCD bit is set if any of the corresponding 32 BMP code points
907 * A bit for 32 lead surrogates is set if any of the 32k corresponding
910 * This bit set i
[all...]
/third_party/python/Lib/
H A Dtraceback.py415 fnames = set()
617 self.seen = set()
686 _seen = set()
/third_party/python/Modules/
H A Dfaulthandler.c617 sigset_t set; in faulthandler_thread() local
620 sigfillset(&set); in faulthandler_thread()
621 pthread_sigmask(SIG_SETMASK, &set, NULL); in faulthandler_thread()
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_config.py511 # Conflict with key set, should be disable to ''
514 conf.defaultCfg['extensions'].set('Foobar', 'enable', 'True')
515 conf.defaultCfg['extensions'].set('Foobar_cfgBindings', 'newfoo', '<Key-F3>')
790 config._warned = set()
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dproto_writer.cc272 // Given a google::protobuf::Type, returns the set of all required fields.
273 std::set<const google::protobuf::Field*> GetRequiredFields( in GetRequiredFields()
275 std::set<const google::protobuf::Field*> required; in GetRequiredFields()
350 for (std::set<const google::protobuf::Field*>::iterator it = in pop()
470 // already been set. in StartObject()
571 "' is already set. Cannot set '", unnormalized_name, "'")); in ValidOneof()
/third_party/rust/crates/nix/src/sys/socket/
H A Dsockopt.rs39 /// * `$flag:path`: a flag name to set. Some examples: `libc::SO_REUSEADDR`, `libc::TCP_NODELAY`,
42 /// * Type of the value that you are going to set.
50 fn set(&self, fd: RawFd, val: &$ty) -> Result<()> { in set() functions
84 /// * A flag to set. Some examples: `libc::SO_REUSEADDR`, `libc::TCP_NODELAY`,
137 /// * `$flag:path`: a flag name to set. Some examples: `libc::SO_REUSEADDR`, `libc::TCP_NODELAY`,
140 /// * `$ty:ty`: type of the value that will be get/set.
768 /// This option allows the caller to set the TCP congestion control
1011 fn set(&self, fd: RawFd, val: &usize) -> Result<()> { in set() functions
1045 fn set(&self, fd: RawFd, val: &T) -> Result<()> { in set() functions
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dx509.rs299 set: c_int, in X509_NAME_add_entry()
492 set: c_int, in X509_NAME_add_entry_by_NID()
507 set: c_int, in X509_NAME_add_entry_by_txt()
/third_party/spirv-tools/source/fuzz/
H A Dtransformation_flatten_conditional_branch.cpp69 std::set<uint32_t> used_fresh_ids; in IsApplicable()
85 // Use a set to keep track of the instructions that require fresh ids. in IsApplicable()
86 std::set<opt::Instruction*> instructions_that_need_ids; in IsApplicable()
313 // need to set |wrapper_info.instruction|, as it will not be used. in Apply()
437 std::set<opt::Instruction*>* instructions_that_need_ids) { in GetProblematicInstructionsIfConditionalCanBeFlattened()
552 // |instructions_that_need_ids| set. in GetProblematicInstructionsIfConditionalCanBeFlattened()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassSampleReadTests.cpp691 Move<VkDescriptorSet> set (allocateDescriptorSet(vkd, device, &allocateInfo)); in createSubpassDescriptorSet()
705 *set, in createSubpassDescriptorSet()
717 return set; in createSubpassDescriptorSet()
959 "layout(input_attachment_index = 0, set = 0, binding = 0) uniform highp usubpassInputMS i_color;\n" in init()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H A DvktSpvAsmUtils.cpp43 return "set_" + de::toString(set) + "_binding_" + de::toString(binding); in toString()
48 return "Set " + de::toString(set) + " and Binding " + de::toString(binding); in toDescription()
191 // if all flags are set to false then no float control features are actualy requested by the test in isFloatControlsFeaturesSupported()
710 "OpDecorate %unused_buffer DescriptorSet " + de::toString(location.set) + "\n" in getUnusedDecorations()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
H A Dhlr_auc_gw.c89 int set; member
170 m->set = 1; in get_milenage_cb()
221 if (!db_tmp_milenage.set) in db_get_milenage()
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
H A Dhlr_auc_gw.c89 int set; member
170 m->set = 1; in get_milenage_cb()
221 if (!db_tmp_milenage.set) in db_get_milenage()
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/
H A Ddata_ability_helper_test.cpp719 std::shared_ptr<NativeRdb::AbsSharedResultSet> set = nullptr; in HWTEST_F()
720 return set; in HWTEST_F()
752 std::shared_ptr<NativeRdb::AbsSharedResultSet> set = nullptr; in HWTEST_F()
753 return set; in HWTEST_F()
788 std::shared_ptr<NativeRdb::AbsSharedResultSet> set = nullptr; in HWTEST_F()
789 return set; in HWTEST_F()
825 std::shared_ptr<NativeRdb::AbsSharedResultSet> set = nullptr; in HWTEST_F()
826 return set; in HWTEST_F()
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/interrupt/
H A Daudio_interrupt_service.cpp646 // If there is an event of (interrupt + set scene), ActivateAudioInterrupt and DeactivateAudioInterrupt may in ActivateAudioInterrupt()
712 int32_t AudioInterruptService::CreateAudioInterruptZone(const int32_t zoneId, const std::set<int32_t> &pids) in CreateAudioInterruptZone()
743 int32_t AudioInterruptService::AddAudioInterruptZonePids(const int32_t zoneId, const std::set<int32_t> &pids) in AddAudioInterruptZonePids()
769 std::pair<set<int32_t>::iterator, bool> ret = audioInterruptZone->pids.insert(pid); in AddAudioInterruptZonePids()
785 int32_t AudioInterruptService::RemoveAudioInterruptZonePids(const int32_t zoneId, const std::set<int32_t> &pids) in RemoveAudioInterruptZonePids()
1671 int32_t AudioInterruptService::CreateAudioInterruptZoneInternal(const int32_t zoneId, const std::set<int32_t> &pids) in CreateAudioInterruptZoneInternal()
1689 int32_t AudioInterruptService::HitZoneId(const std::set<int32_t> &pids, in HitZoneId()
1709 int32_t AudioInterruptService::HitZoneIdHaveTheSamePidsZone(const std::set<int32_t> &pids, in HitZoneIdHaveTheSamePidsZone()
1758 const std::set<int32_t> &pids, const int32_t &zoneId) in NewAudioInterruptZoneByPids()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Ddistributeddb_cloud_syncer_download_assets_test.cpp201 const string sql = "update " + tableName + " set assets=?;"; in UpdateLocalData()
214 const string sql = "update " + tableName + " set assets=? " + "where id>=" + std::to_string(begin) + in UpdateLocalData()
378 const string sql = "update " + ASSETS_TABLE_NAME + " set assets=? where id = " + std::to_string(id); in UpdateAssetsForLocal()
418 const std::set<int> &failIndex);
494 const std::string &expectAssetId, const std::set<int> &failIndex) in CheckLocaLAssets()
585 sql = "update " + ASSETS_TABLE_NAME + " set age='666' where id in (4);"; in InitDataStatusTest()
711 std::string sql = "update " + ASSETS_TABLE_NAME + " set name='x' WHERE id=0"; in DataStatusTest005()
745 std::string sql = "update " + ASSETS_TABLE_NAME + " set name='x' WHERE id=0"; in DataStatusTest006()
1029 std::set<int> index; in HWTEST_F()
1165 * @tc.steps:step1. set exten in HWTEST_F()
[all...]

Completed in 42 milliseconds

1...<<201202203204205206207208209210>>...315