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

  /art/runtime/arch/mips/
instruction_set_features_mips.cc 49 static void GetFlagsFromCppDefined(bool* mips_isa_gte2, bool* r6, bool* fpu_32bit, bool* msa) {
58 *fpu_32bit = false;
61 *fpu_32bit = true;
77 bool fpu_32bit; local
81 GetFlagsFromCppDefined(&mips_isa_gte2, &r6, &fpu_32bit, &msa);
90 fpu_32bit = (variant[kPrefixLength] < '5');
106 return MipsFeaturesUniquePtr(new MipsInstructionSetFeatures(fpu_32bit, mips_isa_gte2, r6, msa));
110 bool fpu_32bit = (bitmap & kFpu32Bitfield) != 0; local
114 return MipsFeaturesUniquePtr(new MipsInstructionSetFeatures(fpu_32bit, mips_isa_gte2, r6, msa));
118 bool fpu_32bit; local
128 bool fpu_32bit; local
213 bool fpu_32bit = fpu_32bit_; local
    [all...]
instruction_set_features_mips.h 93 MipsInstructionSetFeatures(bool fpu_32bit, bool mips_isa_gte2, bool r6, bool msa)
95 fpu_32bit_(fpu_32bit),
102 CHECK(!fpu_32bit);
105 CHECK(fpu_32bit);

Completed in 4158 milliseconds