HomeSort by relevance Sort by last modified time
    Searched defs:uses (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /art/compiler/optimizing/
prepare_for_register_allocation.cc 47 // Replace the uses with the actual guarded instruction.
114 const HUseList<HInstruction*>& uses = check->GetUses(); local
115 for (auto it = uses.begin(), end = uses.end(); it != end; /* ++it below */) {
117 // All other uses must be dominated.
instruction_simplifier_arm.cc 54 * This simplifier uses a special-purpose BB visitor.
154 // Merge a bitfield move instruction into its uses if it can be merged in all of them.
162 const HUseList<HInstruction*>& uses = bitfield_op->GetUses(); local
165 for (const HUseListNode<HInstruction*>& use : uses) {
175 // Merge the instruction into its uses.
176 for (auto it = uses.begin(), end = uses.end(); it != end; /* ++it below */) {
instruction_simplifier_arm64.cc 56 * This simplifier uses a special-purpose BB visitor.
158 // Merge a bitfield move instruction into its uses if it can be merged in all of them.
166 const HUseList<HInstruction*>& uses = bitfield_op->GetUses(); local
169 for (const HUseListNode<HInstruction*>& use : uses) {
179 // Merge the instruction into its uses.
180 for (auto it = uses.begin(), end = uses.end(); it != end; /* ++it below */) {
dead_code_elimination.cc 181 // Scan all uses of obj and find null check under control dependence.
183 const HUseList<HInstruction*>& uses = obj->GetUses(); local
184 for (auto it = uses.begin(), end = uses.end(); it != end;) {
superblock_cloner.cc 39 // Returns whether instruction has any uses (regular or environmental) outside the region,
42 auto& uses = instr->GetUses(); local
43 for (auto use_node = uses.begin(), e = uses.end(); use_node != e; ++use_node) {
581 // TODO: Improve this by accepting graph with such uses but only one exit.
689 // uses. The property of the reducible graphs "if 'A' dom 'B' then rpo_num('A') >= rpo_num('B')"
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/openssl/
CertificateTrustBlock.java 20 private ASN1Sequence uses; field in class:CertificateTrustBlock
24 public CertificateTrustBlock(Set<ASN1ObjectIdentifier> uses)
26 this(null, uses, null);
29 public CertificateTrustBlock(String alias, Set<ASN1ObjectIdentifier> uses)
31 this(alias, uses, null);
34 public CertificateTrustBlock(String alias, Set<ASN1ObjectIdentifier> uses, Set<ASN1ObjectIdentifier> prohibitions)
37 this.uses = toSequence(uses);
51 this.uses = ASN1Sequence.getInstance(obj);
71 return toSet(uses);
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_blitter_rectlist.c 199 ilo_blitter_set_uses(struct ilo_blitter *blitter, uint32_t uses)
201 blitter->uses = uses;
347 uint32_t uses, clear_value; local
427 uses = ILO_BLITTER_USE_DSA;
429 uses |= ILO_BLITTER_USE_VIEWPORT | ILO_BLITTER_USE_FB_DEPTH;
431 uses |= ILO_BLITTER_USE_CC | ILO_BLITTER_USE_FB_STENCIL;
432 ilo_blitter_set_uses(blitter, uses);
ilo_blitter.h 56 uint32_t uses; member in struct:ilo_blitter
  /external/tensorflow/tensorflow/compiler/xla/service/
liveness_util.cc 52 // Return false if any uses are detected at 'index', returns true otherwise.
66 // Return true: found no uses of 'operand' at 'index' in 'user'.
83 // Iterate through all users of all uses of the fusion parameter value.
84 // Return false if any uses are detected, returns true otherwise.
86 return value.uses().empty();
91 for (const HloUse& use : value->uses()) {
104 // Returns all uses of all aliases of 'instruction' at 'index' in 'uses'.
105 // Each use in 'uses' is a pair (HloInstruction* user, int64 operand_index)
112 std::vector<std::pair<HloInstruction*, int64>> uses; local
352 const auto& uses = local
    [all...]
hlo_value.h 125 // uses. Should be called once and only once. The defining position should not
155 // Return all uses of the HloValue.
156 const std::vector<HloUse>& uses() const { return uses_; } function in class:xla::HloValue
180 // The set of uses of this HloValue.
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
block_merge_pass.cpp 33 const analysis::UseList* uses = def_use_mgr_->GetUses(labId); local
35 for (const auto u : *uses) {
49 analysis::UseList* uses = def_use_mgr_->GetUses(id); local
50 if (uses != nullptr)
51 for (auto u : *uses)
70 // Happily any such candidate blocks will have >1 uses due to their
def_use_manager.cpp 89 const auto* uses = GetUses(id); local
90 if (!uses) return annos;
91 for (const auto& c : *uses) {
165 id_to_uses_.erase(inst->result_id()); // Remove all uses of this id.
173 // uses of them.
179 auto& uses = uses_iter->second; local
180 for (auto it = uses.begin(); it != uses.end();) {
182 it = uses.erase(it);
187 if (uses.empty()) id_to_uses_.erase(use_id)
    [all...]
aggressive_dead_code_elim_pass.cpp 47 const analysis::UseList* uses = def_use_mgr_->GetUses(ptrId); local
48 if (uses == nullptr)
50 for (const auto u : *uses) {
mem_pass.cpp 162 analysis::UseList* uses = def_use_mgr_->GetUses(id); local
163 if (uses == nullptr)
167 for (auto u : *uses) {
180 analysis::UseList* uses = def_use_mgr_->GetUses(id);
181 if (uses == nullptr)
184 for (auto u : *uses) {
201 analysis::UseList* uses = def_use_mgr_->GetUses(varId); local
202 if (uses == nullptr)
204 for (auto u : *uses) {
242 analysis::UseList* uses = def_use_mgr_->GetUses(ptr_id) local
    [all...]
dead_branch_elim_pass.cpp 178 analysis::UseList* uses = def_use_mgr_->GetUses(labelId); local
179 if (uses == nullptr)
181 for (auto u : *uses)
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
instruction.h 59 const std::vector<std::pair<const Instruction*, uint32_t>>& uses() const { function in class:libspirv::Instruction
  /external/elfutils/backends/
common-reloc.c 49 #define RELOC_TYPE(type, uses) \
56 #define RELOC_TYPE(type, uses) R_NAME (type),
64 #define RELOC_TYPE(type, uses) \
77 #define RELOC_TYPE(type, uses) [R_TYPE (type)] = uses,
112 uint8_t uses; local
123 uses = EBLHOOK(reloc_valid)[reloc];
124 return type > ET_NONE && type < ET_CORE && (uses & (1 << (type - 1)));
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_combine_constants.cpp 106 * The instruction generating the immediate value, if all uses are contained
115 exec_list *uses; member in struct:imm
230 imm->uses->push_tail(link(const_ctx, &inst->src[i]));
238 imm->uses = new(const_ctx) exec_list();
239 imm->uses->push_tail(link(const_ctx, &inst->src[i]));
249 /* Remove constants from the table that don't have enough uses to make them
295 foreach_list_typed(reg_link, link, link, table.imm[i].uses) {
311 printf("%.3fF - block %3d, reg %3d sub %2d, Uses: (%2d, %2d), "
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
ComputeThresholdAction.java 81 Map<String, Set<String>> uses = new HashMap<String, Set<String>>(); local
84 updateClassUse(d.getPackageName(), uses, getBootClassPathClasses(d.getDumpData())); local
88 Set<String> result = fromThreshold(uses, blacklist, threshold);
  /external/swiftshader/src/Reactor/
Optimizer.cpp 54 struct Uses : std::vector<Ice::Inst*>
64 std::unordered_map<Ice::Operand*, Uses> uses; member in class:__anon35658::Optimizer
126 const auto &addressEntry = uses.find(address);
140 for(Ice::Inst *use : uses[loadData])
153 uses.erase(loadData);
159 uses.erase(addressEntry);
181 const auto &addressEntry = uses.find(address);
239 uses.erase(address);
241 auto &valueUses = uses[storeValue]
659 auto &uses = *this; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantsContext.h 381 static unsigned uses(const std::vector<T, Alloc>& v) { function in struct:llvm::ConstantTraits
388 static unsigned uses(Constant * const & v) { function in struct:llvm::ConstantTraits
396 return new(ConstantTraits<ValType>::uses(V)) ConstantClass(Ty, V);
  /external/v8/src/asmjs/
asm-js.cc 200 wasm::AsmTyper::StdlibSet uses = builder.typer()->StdlibUses(); local
202 info->isolate()->factory()->NewFixedArray(static_cast<int>(uses.size()));
204 for (auto i : uses) {
245 i::Handle<i::FixedArray> uses(
247 for (int i = 0; i < uses->length(); ++i) {
249 uses->GetValueChecked<i::Object>(isolate, i))) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
term_entry.h 62 uses[MAX_USES]; member in struct:entry
  /system/bt/stack/mcap/
mca_csm.cc 144 * It uses the state and action function tables to execute
314 bool uses = false; local
322 uses = true;
327 return uses;
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_pass.h 163 void process_phi(container_node *c, bool defs, bool uses);
239 nuc_map uses; member in class:r600_sb::gcm
266 ready(), op_map(), uses(), nuc_stk(1), ucs_level(),

Completed in 778 milliseconds

1 2 3 4 5 6 7 8