Home
last modified time | relevance | path

Searched refs:renames (Results 1 – 25 of 66) sorted by relevance

123

/external/gfxstream-protocols/registry/vulkan/xml/
Dgenerate-core-block.rb8 renames = {}
74 renames[old_name] = new_name
86 renames.each_pair do |old, new|
95 renames.each_pair do |old, new|
103 def rename_text_files(dir, renames, extension_name) argument
110 renames.each_pair do |old, new|
120 rename_text_files(subdir, renames, extension_name)
124 rename_text_files('../chapters', renames, extension_name)
125 rename_text_files('../appendices', renames, extension_name)
/external/tensorflow/tensorflow/tools/compatibility/update/
Dgenerate_v2_renames_map.py97 renames = set()
118 renames.add((name, get_canonical_name(api_names_v2, name)))
119 return renames
130 renames = set()
140 renames.add((name, get_canonical_name(api_names_v2, name)))
151 renames = set((name, new_name) for name, new_name in renames
153 return renames
/external/mesa3d/src/amd/compiler/
Daco_spill.cpp52 std::vector<std::map<Temp, Temp>> renames; member
69 register_demand(std::move(register_demand)), renames(program->blocks.size()), in spill_ctx()
748 std::map<Temp, Temp>::iterator it = ctx.renames[pred_idx].find(live.first); in add_coupling_code()
749 if (it != ctx.renames[pred_idx].end()) in add_coupling_code()
750 ctx.renames[block_idx].insert(*it); in add_coupling_code()
759 ctx.renames[block_idx][live.first] = new_name; in add_coupling_code()
780 std::map<Temp, Temp>::iterator it = ctx.renames[pred_idx].find(live.first); in add_coupling_code()
781 if (it != ctx.renames[pred_idx].end()) in add_coupling_code()
782 ctx.renames[block_idx].insert(*it); in add_coupling_code()
791 ctx.renames[block_idx][live.first] = new_name; in add_coupling_code()
[all …]
Daco_opt_value_numbering.cpp336 std::map<uint32_t, Temp> renames; member
377 auto it = ctx.renames.find(op.tempId()); in process_block()
378 if (it != ctx.renames.end()) in process_block()
396 ctx.renames[instr->definitions[0].tempId()] = instr->operands[0].getTemp(); in process_block()
413 ctx.renames[instr->definitions[i].tempId()] = orig_instr->definitions[i].getTemp(); in process_block()
436 void rename_phi_operands(Block& block, std::map<uint32_t, Temp>& renames) in rename_phi_operands() argument
445 auto it = renames.find(op.tempId()); in rename_phi_operands()
446 if (it != renames.end()) in rename_phi_operands()
475 rename_phi_operands(block, ctx.renames); in value_numbering()
491 rename_phi_operands(block, ctx.renames); in value_numbering()
Daco_register_allocation.cpp66 std::vector<std::unordered_map<unsigned, Temp>> renames; member
82 renames(program->blocks.size()), in ra_ctx()
1576 std::unordered_map<unsigned, Temp>::iterator it = ctx.renames[block_idx].find(val.id()); in read_variable()
1577 if (it == ctx.renames[block_idx].end()) in read_variable()
1653 ctx.renames[block->index][val.id()] = new_val; in handle_live_in()
1711 auto it = ctx.renames[i].find(orig_var); in try_remove_trivial_phi()
1712 if (it != ctx.renames[i].end() && it->second == def.getTemp()) in try_remove_trivial_phi()
1713 ctx.renames[i][orig_var] = same; in try_remove_trivial_phi()
1963 ctx.renames[block.index][orig.id()] = pc.second.getTemp(); in register_allocation()
2289 ctx.renames[block.index][orig.id()] = pc->definitions[i].getTemp(); in register_allocation()
/external/deqp/scripts/
Dcaselist_diff.py141 renames = []
154 renames.append((case, renamed))
163 return (renamedCases, renames)
/external/jarjar/src/main/com/tonicsystems/jarjar/
DMainProcessor.java33 private final Map<String, String> renames = new HashMap<String, String>(); field in MainProcessor
105 String renamed = renames.get(name); in getExcludes()
123 renames.put(name, struct.name); in process()
/external/tensorflow/tensorflow/tools/compatibility/
Drenames_v2.py24 renames = { variable
Dall_renames_v2.py561 symbol_renames = renames_v2.renames
/external/llvm/test/Linker/
DLinkOnce.ll1 ; This fails because the linker renames the non-opaque type not the opaque
D2003-01-30-LinkerTypeRename.ll1 ; This fails because the linker renames the non-opaque type not the opaque
/external/python/setuptools/setuptools/
Dwheel.py37 os.renames(src, dst)
44 os.renames(src, dst)
/external/e2fsprogs/lib/ext2fs/tdb/patches/
Dext2tdb-rename9 +/* ext2fs tdb renames */
/external/python/cpython2/Doc/library/
D2to3.rst272 Handles module renames in the standard library.
276 Handles other modules renames in the standard library. It is separate from
332 :func:`next` function. It also renames :meth:`~iterator.next` methods to
366 .. 2to3fixer:: renames
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi.cpp376 void rename_temp_registers(struct rename_reg_pair *renames);
4944 rename_temp_handle_src(struct rename_reg_pair *renames, st_src_reg *src) in rename_temp_handle_src() argument
4948 if (renames[old_idx].valid) in rename_temp_handle_src()
4949 src->index = renames[old_idx].new_reg; in rename_temp_handle_src()
4955 glsl_to_tgsi_visitor::rename_temp_registers(struct rename_reg_pair *renames) in rename_temp_registers() argument
4960 rename_temp_handle_src(renames, &inst->src[j]); in rename_temp_registers()
4961 rename_temp_handle_src(renames, inst->src[j].reladdr); in rename_temp_registers()
4962 rename_temp_handle_src(renames, inst->src[j].reladdr2); in rename_temp_registers()
4966 rename_temp_handle_src(renames, &inst->tex_offsets[j]); in rename_temp_registers()
4967 rename_temp_handle_src(renames, inst->tex_offsets[j].reladdr); in rename_temp_registers()
[all …]
/external/pigweed/pw_arduino_build/
Ddocs.rst22 around this the Pigweed Arduino target renames ``main()`` to ``ArduinoMain()``
/external/python/cpython2/Lib/plat-mac/
Dpimp.py188 renames=[], argument
191 if renames and not self._can_rename:
194 self._renames = renames
832 unpacker = unpackerClass(arg, dir="/", renames=install_renames)
/external/python/cpython3/Doc/library/
D2to3.rst270 Handles module renames in the standard library.
274 Handles other modules renames in the standard library. It is separate from
331 :func:`next` function. It also renames :meth:`next` methods to
389 .. 2to3fixer:: renames
/external/icing/
Dbuild.gradle95 // only renames the java classes. Remove them here since they are unused.
/external/curl/docs/cmdline-opts/
Dquote.d67 The rename command renames the file or directory named by the source
/external/python/parse_type/tasks/_vendor/
Dpath.py1190 def renames(self, new): member in Path
1192 os.renames(self, new)
/external/selinux/python/sepolgen/src/sepolgen/
Dlex.py191 …for (pat, func), retext, renames in zip(lre, self.lexstateretext[statename], self.lexstaterenames[…
192 titem.append((retext, _funcs_to_names(func, renames)))
/external/ply/ply/ply/
Dlex.py191 …for (pat, func), retext, renames in zip(lre, self.lexstateretext[statename], self.lexstaterenames[…
192 titem.append((retext, _funcs_to_names(func, renames)))
/external/python/pycparser/pycparser/ply/
Dlex.py191 …for (pat, func), retext, renames in zip(lre, self.lexstateretext[statename], self.lexstaterenames[…
192 titem.append((retext, _funcs_to_names(func, renames)))
/external/python/cpython2/Lib/
Dos.py181 def renames(old, new): function

123