/third_party/vk-gl-cts/external/vulkan-docs/src/xml/ |
H A D | generate-core-block.rb | 71 old_name = element.attribute('name').content 72 new_name = old_name.sub('_' + extension_suffix,'').sub(extension_suffix,'') 73 alias_block << "\t"*4 + '<alias name="' + old_name + '" value="' + new_name + '"/>' + "\n" 74 renames[old_name] = new_name 75 core_block.gsub!(old_name,new_name)
|
/third_party/libfuse/example/ |
H A D | notify_inval_entry.c | 257 char *old_name; in update_fs_loop() local 261 old_name = strdup(file_name); in update_fs_loop() 267 (se, FUSE_ROOT_ID, old_name, strlen(old_name)); in update_fs_loop() 286 (se, FUSE_ROOT_ID, old_name, strlen(old_name)) == 0); in update_fs_loop() 289 free(old_name); in update_fs_loop()
|
/third_party/mesa3d/src/vulkan/registry/ |
H A D | update-aliases.py | 71 for old_name, alias_for in get_aliases(VK_XML): 72 old_name = prepare_identifier(old_name) 74 aliases[old_name] = alias_for
|
/third_party/node/deps/uvwasi/src/ |
H A D | wasi_serdes.c | 165 #define WRITE_ALIAS(new_name, old_name) \ 169 uvwasi_serdes_write_##old_name(ptr, offset, value); \ 172 #define READ_ALIAS(new_name, old_name) \ 175 return uvwasi_serdes_read_##old_name(ptr, offset); \
|
/third_party/gn/src/gn/ |
H A D | create_bundle_target_generator.cc | 23 // Retrieves value from `scope` named `name` or `old_name`. If the value comes 24 // from the `old_name` a warning is emitted to inform the name is obsolete. 27 std::string_view old_name) { in GetValueFromScope() 32 value = scope->GetValue(old_name, true); in GetValueFromScope() 40 std::string(old_name).c_str(), std::string(name).c_str())); in GetValueFromScope() 25 GetValueFromScope(Scope* scope, std::string_view name, std::string_view old_name) GetValueFromScope() argument
|
/third_party/node/deps/v8/src/ic/ |
H A D | stub-cache.cc | 98 Name old_name = in Set() local 100 int secondary_offset = SecondaryOffset(old_name, old_map); in Set()
|
/third_party/ltp/testcases/kernel/syscalls/fanotify/ |
H A D | fanotify16.c | 53 char *old_name; member 382 event_set[tst_count].old_name = event_set[tst_count].name; in do_test() 491 event_set[tst_count].old_name = event_set[tst_count].name; in do_test() 563 info_type = expected->old_name ? in do_test()
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 701 old_name = operand_kind["kind"] 702 new_name = prefix + old_name 704 old_to_new[old_name] = new_name
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | generate_grammar_tables.py | 701 old_name = operand_kind["kind"] 702 new_name = prefix + old_name 704 old_to_new[old_name] = new_name
|
/third_party/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 723 old_name = operand_kind["kind"] 724 new_name = prefix + old_name 726 old_to_new[old_name] = new_name
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | main.cpp | 691 string old_name; member 1185 compiler->rename_entry_point(rename.old_name, rename.new_name, rename.execution_model); in compile_iteration() 1594 auto old_name = parser.next_string(); in main_inner() 1597 args.entry_point_rename.push_back({ old_name, new_name, move(model) }); in main_inner()
|
H A D | spirv_cross.hpp | 338 // Renames an entry point from old_name to new_name. 339 // If old_name is currently selected as the current entry point, it will continue to be the current entry point, 342 void rename_entry_point(const std::string &old_name, const std::string &new_name,
|
H A D | spirv_cross_c.h | 876 SPVC_PUBLIC_API spvc_result spvc_compiler_rename_entry_point(spvc_compiler compiler, const char *old_name,
|
H A D | spirv_cross_c.cpp | 1970 spvc_result spvc_compiler_rename_entry_point(spvc_compiler compiler, const char *old_name, const char *new_name, in spvc_compiler_rename_entry_point() argument 1975 compiler->compiler->rename_entry_point(old_name, new_name, static_cast<spv::ExecutionModel>(model)); in spvc_compiler_rename_entry_point()
|
H A D | spirv_cross.cpp | 2263 void Compiler::rename_entry_point(const std::string &old_name, const std::string &new_name, spv::ExecutionModel model) in rename_entry_point() argument 2265 auto &entry = get_entry_point(old_name, model); in rename_entry_point()
|
/third_party/libbpf/src/ |
H A D | btf_dump.c | 1635 char *old_name, *new_name; in btf_dump_name_dups() local 1646 err = hashmap__set(name_map, new_name, dup_cnt, &old_name, NULL); in btf_dump_name_dups() 1650 free(old_name); in btf_dump_name_dups()
|
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | api.js | [all...] |