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

  /art/runtime/arch/mips64/
instruction_set_features_mips64.cc 33 bool msa = true; local
37 return Mips64FeaturesUniquePtr(new Mips64InstructionSetFeatures(msa));
41 bool msa = (bitmap & kMsaBitfield) != 0; local
42 return Mips64FeaturesUniquePtr(new Mips64InstructionSetFeatures(msa));
47 const bool msa = true; local
49 const bool msa = false;
51 return Mips64FeaturesUniquePtr(new Mips64InstructionSetFeatures(msa));
57 bool msa = false; local
68 if (line.find("msa") != std::string::npos) {
69 msa = true
116 bool msa = msa_; local
    [all...]
  /art/runtime/arch/mips/
instruction_set_features_mips.cc 49 static void GetFlagsFromCppDefined(bool* mips_isa_gte2, bool* r6, bool* fpu_32bit, bool* msa) {
59 *msa = true;
62 *msa = false;
80 bool msa; local
81 GetFlagsFromCppDefined(&mips_isa_gte2, &r6, &fpu_32bit, &msa);
92 msa = (variant[kPrefixLength] >= '5');
106 return MipsFeaturesUniquePtr(new MipsInstructionSetFeatures(fpu_32bit, mips_isa_gte2, r6, msa));
113 bool msa = (bitmap & kMsaBitfield) != 0; local
114 return MipsFeaturesUniquePtr(new MipsInstructionSetFeatures(fpu_32bit, mips_isa_gte2, r6, msa));
121 bool msa; local
131 bool msa; local
216 bool msa = msa_; local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regexec.c 339 #define MATCH_ARG_INIT(msa, arg_option, arg_region, arg_start) do {\
340 (msa).stack_p = (void* )0;\
341 (msa).options = (arg_option);\
342 (msa).region = (arg_region);\
343 (msa).start = (arg_start);\
344 (msa).best_len = ONIG_MISMATCH;\
347 #define MATCH_ARG_INIT(msa, arg_option, arg_region, arg_start) do {\
348 (msa).stack_p = (void* )0;\
349 (msa).options = (arg_option);\
350 (msa).region = (arg_region);\
3067 OnigMatchArg msa; local
3368 OnigMatchArg msa; local
    [all...]

Completed in 94 milliseconds