HomeSort by relevance Sort by last modified time
    Searched refs:FprOuts (Results 1 - 2 of 2) sorted by null

  /art/compiler/utils/mips/
assembler_mips.cc     [all...]
assembler_mips.h 107 inline InOutRegMasks& FprOuts(FRegister reg) { fpr_outs_ |= (1u << reg); return *this; }
108 inline InOutRegMasks& FprOuts(VectorRegister reg) { return FprOuts(static_cast<FRegister>(reg)); }
110 inline InOutRegMasks& FprOuts(T one, Ts... more) { FprOuts(one); FprOuts(more...); return *this; }
117 inline InOutRegMasks& FprInOuts(FRegister reg) { FprIns(reg); FprOuts(reg); return *this; }
    [all...]

Completed in 70 milliseconds