/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
H A D | NumberFormatterApiTest.java | 478 Map<String, String> entry = new HashMap<>(); in notationCompact() 479 entry.put("one", "Kun"); in notationCompact() 480 entry.put("other", "0KK"); in notationCompact() 481 compactCustomData.put("1000", entry); in notationCompact()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_from_nir.cpp | 1367 BasicBlock *entry = new BasicBlock(prog->main); 1369 blocks[nir_start_block(function->impl)->index] = entry; 1370 prog->main->setEntry(entry); 1373 setPosition(entry, true);
|
/third_party/mesa3d/src/gallium/auxiliary/nir/ |
H A D | nir_to_tgsi.c | 125 struct hash_entry *entry = _mesa_hash_table_search(c->blocks, block); in ntt_block_from_nir() local 126 return entry->data; in ntt_block_from_nir() 445 set_foreach(block->predecessors, entry) { in ntt_live_regs() 446 nir_block *pred = (void *)entry->key; in ntt_live_regs()
|
/third_party/spirv-tools/test/val/ |
H A D | val_decoration_test.cpp | 337 "decorated with BuiltIn, consumed per entry-point.")); in TEST_F() 3096 "statically used per shader entry point.")); in TEST_F() 3209 "statically used per shader entry point.")); in TEST_F() 5268 %entry = OpLabel in TEST_F() 5333 %entry = OpLabel in TEST_F() 5360 %entry = OpLabel in TEST_F() 5400 %entry = OpLabel in ShaderWithUniformLikeDecoration() 5780 OpName %entry "entry" in MakeIntegerShader() 5790 %entry in MakeIntegerShader() [all...] |
/third_party/libbpf/src/ |
H A D | libbpf.c | 418 * program. For the entry-point (main) BPF program, this is always 433 * entry-point BPF programs this includes the size of main program 6192 struct hashmap_entry *entry; local 6298 hashmap__for_each_entry(cand_cache, entry, i) { 6299 bpf_core_free_cands(entry->pvalue); 6792 * Algorithm operates as follows. Each entry-point BPF program (referred to as 6793 * main prog) is processed separately. For each subprog (non-entry functions, 6794 * that can be called from either entry progs or other subprogs) gets their 7127 pr_warn(".maps relo #%d: '%s' isn't an entry-point program\n", 7989 pr_warn("failed to read kallsyms entry 11573 struct zip_entry entry; global() local [all...] |
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
H A D | upb.c | 536 const upb_msglayout *entry = layout->submsgs[field->submsg_index]; in decode_tomap() local 540 const upb_msglayout *entry = layout->submsgs[field->submsg_index]; in decode_tomap() local 541 const upb_msglayout_field *key_field = &entry->fields[0]; in decode_tomap() 542 const upb_msglayout_field *val_field = &entry->fields[1]; in decode_tomap() 551 /* Parse map entry. */ in decode_tomap() 554 if (entry->fields[1].descriptortype == UPB_DESCRIPTOR_TYPE_MESSAGE || in decode_tomap() 555 entry->fields[1].descriptortype == UPB_DESCRIPTOR_TYPE_GROUP) { in decode_tomap() 557 ent.v.val.val = (uint64_t)_upb_msg_new(entry->submsgs[0], d->arena); in decode_tomap() 1067 const upb_msglayout *entry = m->submsgs[f->submsg_index]; in upb_encode_map() local 1068 const upb_msglayout_field *key_field = &entry in upb_encode_map() 5250 const upb_msgdef *entry = upb_fielddef_msgsubdef(f); upb_msg_mutable() local [all...] |
/drivers/hdf_core/framework/test/unittest/model/usb/device/src/ |
H A D | usb_device_lite_cdcacm_test.c | 826 DListRemove(&device->object.entry); in RemoveUsbDevice()
|
/third_party/elfio/elfio/ |
H A D | elfio.hpp | 264 ELFIO_HEADER_ACCESS_GET_SET( Elf64_Addr, entry );
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | TransliteratorParser.java | 436 * pos on entry points right after it. Accumulate everything
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | TransliteratorParser.java | 437 * pos on entry points right after it. Accumulate everything
|
/third_party/node/lib/internal/modules/esm/ |
H A D | resolve.js | 135 } resolving the main entry point "${ 624 ' or an object of main entry condition name keys only.'); 1085 return; // Main entry point, so no parent 1181 // This is the initial entry point to the program, and --input-type has 1185 // flag should be (i.e. entry point only, package scope surrounding the 1186 // entry point, etc.).
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | macro-assembler-ia32.h | 625 void JumpToOffHeapInstructionStream(Address entry);
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime.h | 765 // For RUNTIME functions, this is the C++ entry point. 766 // For INLINE functions this is the C++ entry point of the fall back. 767 Address entry; member 803 // Get the intrinsic function with the given function entry address.
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | ir_context.cpp | 109 // The dominator analysis hold the psuedo entry and exit nodes from the CFG. in InvalidateAnalyses() 871 // Collect all of the entry points as the roots. in ProcessEntryPointCallTree() 882 // Add all entry points since they can be reached from outside the module. in ProcessReachableCallTree() 1045 ->Dominates(enclosing_function->entry().get(), &bb); in IsReachable()
|
H A D | merge_return_pass.cpp | 822 // Insert the switch before any code is run. We have to split the entry in CreateSingleCaseSwitch() 823 // block to make sure the OpVariable instructions remain in the entry block. in CreateSingleCaseSwitch() 833 // Add the switch to the end of the entry block. in CreateSingleCaseSwitch() 854 function->entry().get(), in HasNontrivialUnreachableBlocks()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | ir_context.cpp | 109 // The dominator analysis hold the psuedo entry and exit nodes from the CFG. in InvalidateAnalyses() 871 // Collect all of the entry points as the roots. in ProcessEntryPointCallTree() 882 // Add all entry points since they can be reached from outside the module. in ProcessReachableCallTree() 1045 ->Dominates(enclosing_function->entry().get(), &bb); in IsReachable()
|
H A D | merge_return_pass.cpp | 822 // Insert the switch before any code is run. We have to split the entry in CreateSingleCaseSwitch() 823 // block to make sure the OpVariable instructions remain in the entry block. in CreateSingleCaseSwitch() 833 // Add the switch to the end of the entry block. in CreateSingleCaseSwitch() 854 function->entry().get(), in HasNontrivialUnreachableBlocks()
|
/third_party/spirv-tools/source/opt/ |
H A D | merge_return_pass.cpp | 830 // Insert the switch before any code is run. We have to split the entry in CreateSingleCaseSwitch() 831 // block to make sure the OpVariable instructions remain in the entry block. in CreateSingleCaseSwitch() 841 // Add the switch to the end of the entry block. in CreateSingleCaseSwitch() 862 function->entry().get(), in HasNontrivialUnreachableBlocks()
|
/third_party/python/Lib/test/ |
H A D | test_zipfile.py | 3416 for entry in map(str, range(self.HUGE_ZIPFILE_NUM_ENTRIES)): 3417 zf.writestr(entry, entry) 3427 for entry in entries: 3428 entry.joinpath('suffix')
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | function.cc | 42 // nodes, and branches form the directed arcs. The function entry block is 58 // We visit the entry node of the function first. 565 // - the entry block 585 VisitBackward(function_.entry()->id()); in ReverseStructuredPostOrder() 853 auto& entry = statements_stack_[0]; in ast_body() local 854 entry.Finalize(&builder_); in ast_body() 855 return entry.GetStatements(); in ast_body() 884 // and without regard to whether it's an entry point. in Emit() 894 // This is an entry point, and we want to emit it as a wrapper around in Emit() 898 // This is a second entry poin in Emit() [all...] |
/third_party/gn/src/base/ |
H A D | values.cc | 40 for (const auto& entry : list.GetList()) { in CopyListWithoutEmptyChildren() 41 std::unique_ptr<Value> child_copy = CopyWithoutEmptyChildren(entry); in CopyListWithoutEmptyChildren()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | PluralRulesTest.java | 477 for (Entry<String, PluralRules> entry : keywordToRule.entrySet()) { in testUniqueRules() 478 PluralRules rule = entry.getValue(); in testUniqueRules()
|
/third_party/libuv/src/unix/ |
H A D | linux.c | 283 RB_ENTRY(watcher_list) entry; 314 RB_GENERATE_STATIC(watcher_root, watcher_list, entry, compare_watchers) 2244 /* In the case of cgroupv2, we'll only have a single entry. */ in uv__get_cgroup_constrained_memory() 2321 /* In the case of cgroupv2, we'll only have a single entry. */ in uv_get_available_memory()
|
/third_party/libuv/include/ |
H A D | uv.h | 1737 * and makes fs_event report only changes to the directory entry itself. This 1885 UV_EXTERN int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg); 1902 uv_thread_cb entry,
|
/third_party/libuv/include/uv_ndk/ |
H A D | uv.h | 1602 * and makes fs_event report only changes to the directory entry itself. This 1747 UV_EXTERN int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg); 1764 uv_thread_cb entry,
|