HomeSort by relevance Sort by last modified time
    Searched defs:vregs (Results 1 - 7 of 7) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Instruction.java 216 String vregs = ""; local
230 vregs = ", v" + invokeFormatInfo.vregG;
233 vregs = ", v" + invokeFormatInfo.vregF + vregs;
236 vregs = ", v" + invokeFormatInfo.vregE + vregs;
239 vregs = ", v" + invokeFormatInfo.vregD + vregs;
242 vregs = "v" + vregC + vregs;
258 String vregs = ""; local
    [all...]
  /bionic/libc/kernel/uapi/asm-arm64/asm/
sigcontext.h 40 __uint128_t vregs[32]; member in struct:fpsimd_context
ptrace.h 57 __uint128_t vregs[32]; member in struct:user_fpsimd_state
  /external/kernel-headers/original/uapi/asm-arm64/asm/
sigcontext.h 77 __uint128_t vregs[32]; member in struct:fpsimd_context
ptrace.h 81 __uint128_t vregs[32]; member in struct:user_fpsimd_state
  /art/compiler/optimizing/
graph_visualizer.cc 616 StringList vregs; local
620 vregs.NewEntryStream() << DataType::TypeId(insn->GetType()) << insn->GetId();
622 vregs.NewEntryStream() << "_";
625 envs.NewEntryStream() << vregs;
    [all...]
instruction_builder.cc 86 const size_t vregs = graph_->GetNumberOfVRegs(); local
87 if (locals->size() == vregs) {
90 return GetLocalsForWithAllocation(block, locals, vregs);
96 const size_t vregs) {
97 DCHECK_NE(locals->size(), vregs);
98 locals->resize(vregs, nullptr);
101 // must therefore eagerly create the phis. Phis for undefined vregs will
104 for (size_t i = 0; i < vregs; ++i) {
    [all...]

Completed in 216 milliseconds