Home
last modified time | relevance | path

Searched refs:entry1 (Results 1 – 16 of 16) sorted by relevance

/third_party/vk-gl-cts/external/amber/src/src/
Dpipeline_test.cc423 Pipeline::ShaderInfo::DescriptorMapEntry entry1; in TEST_F() local
424 entry1.kind = Pipeline::ShaderInfo::DescriptorMapEntry::Kind::SSBO; in TEST_F()
425 entry1.descriptor_set = 4; in TEST_F()
426 entry1.binding = 5; in TEST_F()
427 entry1.arg_name = "arg_a"; in TEST_F()
428 entry1.arg_ordinal = 0; in TEST_F()
429 p.GetShaders()[0].AddDescriptorEntry("my_main", std::move(entry1)); in TEST_F()
468 Pipeline::ShaderInfo::DescriptorMapEntry entry1; in TEST_F() local
469 entry1.kind = Pipeline::ShaderInfo::DescriptorMapEntry::Kind::SSBO; in TEST_F()
470 entry1.descriptor_set = 4; in TEST_F()
[all …]
/third_party/mesa3d/src/util/tests/hash_table/
Dcollision.c47 struct hash_entry *entry1, *entry2; in main() local
63 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1); in main()
64 assert(entry1->key == str1); in main()
70 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1); in main()
71 assert(entry1->key == str1); in main()
74 _mesa_hash_table_remove(ht, entry1); in main()
94 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1); in main()
95 assert(entry1->key == str1); in main()
/third_party/node/deps/v8/src/codegen/
Dsafepoint-table.cc276 auto is_identical_except_for_pc = [](const EntryBuilder& entry1, in RemoveDuplicates()
278 if (entry1.deopt_index != entry2.deopt_index) return false; in RemoveDuplicates()
279 DCHECK_EQ(entry1.trampoline, entry2.trampoline); in RemoveDuplicates()
280 return entry1.register_indexes == entry2.register_indexes && in RemoveDuplicates()
281 entry1.stack_indexes->Equals(*entry2.stack_indexes); in RemoveDuplicates()
/third_party/node/deps/cares/src/lib/
Dares_qcache.c170 const ares__qcache_entry_t *entry1 = arg1; in ares__qcache_entry_sort_cb() local
173 if (entry1->expire_ts > entry2->expire_ts) { in ares__qcache_entry_sort_cb()
177 if (entry1->expire_ts < entry2->expire_ts) { in ares__qcache_entry_sort_cb()
/third_party/node/lib/internal/source_map/
Dsource_map.js361 function compareSourceMapEntry(entry1, entry2) { argument
362 const { 0: lineNumber1, 1: columnNumber1 } = entry1;
/third_party/node/src/
Dsourcemap.def341 * @param {Array} entry1 source map entry [lineNumber, columnNumber, sourceURL,
346 function compareSourceMapEntry(entry1, entry2) {
347 const { 0: lineNumber1, 1: columnNumber1 } = entry1;
/third_party/littlefs/
Dlfs.c5551 lfs1_entry_t entry1; local
5552 err = lfs1_dir_next(lfs, &dir1, &entry1);
5562 if (entry1.d.type & 0x80) {
5563 int moved = lfs1_moved(lfs, &entry1.d.u);
5573 entry1.d.type &= ~0x80;
5580 entry1.off + 4+entry1.d.elen+entry1.d.alen,
5581 name, entry1.d.nlen);
5586 bool isdir = (entry1.d.type == LFS1_TYPE_DIR);
5601 lfs1_entry_tole32(&entry1.d);
5605 LFS_TYPE_DIR, id, entry1.d.nlen,
[all …]
/third_party/node/test/parallel/
Dtest-fs-cp.mjs960 for (const entry1 of dir1Entries) {
962 return entry.name === entry1.name;
965 if (entry1.isFile()) {
967 } else if (entry1.isDirectory()) {
969 } else if (entry1.isSymbolicLink()) {
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DPluralRulesTest.java1083 … for (Entry<Set<StandardPluralCategories>, Set<PluralRules>> entry1 : setsToRules.keyValuesSet()) {
1084 Set<StandardPluralCategories> set = entry1.getKey();
1085 Set<PluralRules> rules = entry1.getValue();
/third_party/node/deps/v8/src/compiler/
Dscheduler.cc1175 auto entry1 = common_dominator_cache_.find(b1->id().ToInt()); in GetCommonDominatorIfCached() local
1176 if (entry1 == common_dominator_cache_.end()) return nullptr; in GetCommonDominatorIfCached()
1177 auto entry2 = entry1->second->find(b2->id().ToInt()); in GetCommonDominatorIfCached()
1178 if (entry2 == entry1->second->end()) return nullptr; in GetCommonDominatorIfCached()
/third_party/protobuf/src/google/protobuf/
Dmap_test.cc1906 Message* entry1 = reflection->AddMessage(message.get(), field); in TEST_F() local
1909 const Reflection* entry_reflection = entry1->GetReflection(); in TEST_F()
1911 entry1->GetDescriptor()->FindFieldByName("key"); in TEST_F()
1912 entry_reflection->SetInt32(entry1, key_field, 1); in TEST_F()
1927 Message* entry1 = reflection->AddMessage(&message, field); in TEST_F() local
1930 const Reflection* entry_reflection = entry1->GetReflection(); in TEST_F()
1932 entry1->GetDescriptor()->FindFieldByName("key"); in TEST_F()
1933 entry_reflection->SetInt32(entry1, key_field, 1); in TEST_F()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DPluralRulesTest.java1520 … for (Entry<Set<StandardPluralCategories>, Set<PluralRules>> entry1 : setsToRules.keyValuesSet()) {
1521 Set<StandardPluralCategories> set = entry1.getKey();
1522 Set<PluralRules> rules = entry1.getValue();
/third_party/python/Lib/test/
Dtest_array.py204 def assertEntryEqual(self, entry1, entry2): argument
205 self.assertEqual(entry1, entry2)
1416 def assertEntryEqual(self, entry1, entry2): argument
1417 self.assertAlmostEqual(entry1, entry2)
/third_party/node/deps/v8/src/objects/
Dhash-table.h268 void Swap(InternalIndex entry1, InternalIndex entry2, WriteBarrierMode mode); in EXPORT_TEMPLATE_DECLARE()
Dobjects.cc5779 void HashTable<Derived, Shape>::Swap(InternalIndex entry1, InternalIndex entry2, in Swap() argument
5781 int index1 = EntryToIndex(entry1); in Swap()
/third_party/typescript/src/services/
DfindAllReferences.ts803 … references: reference.references.concat(entry.references).sort((entry1, entry2) => {
804 const entry1File = getSourceFileIndexOfEntry(program, entry1);
810 const entry1Span = getTextSpanOfEntry(entry1);