Lines Matching refs:without_pc

297                       bool without_pc,  in TemplateHelper()  argument
299 std::vector<arm::Register*> registers = without_pc ? GetRegistersWithoutPC() : GetRegisters(); in TemplateHelper()
316 bool without_pc ATTRIBUTE_UNUSED, std::string fmt, std::ostringstream& oss) { in TemplateHelper()
331 bool without_pc ATTRIBUTE_UNUSED, std::string fmt, std::ostringstream& oss) { in TemplateHelper()
345 void TemplateHelper(std::function<void(arm::Register, Args...)> f, int depth, bool without_pc, in TemplateHelper() argument
347 std::vector<arm::Register*> registers = without_pc ? GetRegistersWithoutPC() : GetRegisters(); in TemplateHelper()
360 TemplateHelper(std::function<void(Args...)>(lambda), depth + 1, without_pc, in TemplateHelper()
367 bool without_pc, std::string fmt, std::ostringstream& oss) { in TemplateHelper() argument
378 TemplateHelper(std::function<void(Args...)>(lambda), depth, without_pc, in TemplateHelper()
384 void TemplateHelper(std::function<void(arm::Condition, Args...)> f, int depth, bool without_pc, in TemplateHelper() argument
395 TemplateHelper(std::function<void(Args...)>(lambda), depth, without_pc, in TemplateHelper()
423 void GenericTemplateHelper(std::function<void(Args...)> f, bool without_pc, in GenericTemplateHelper() argument
426 WarnOnCombinations(CountHelper<Args...>(without_pc)); in GenericTemplateHelper()
430 TemplateHelper(f, 0, without_pc, fmt, oss); in GenericTemplateHelper()
438 void T2Helper(void (arm::Arm32Assembler::*f)(Args...), bool without_pc, std::string fmt, in T2Helper() argument
440 GenericTemplateHelper(GetBoundFunction2(f), without_pc, fmt, test_name); in T2Helper()
444 void T3Helper(void (arm::Arm32Assembler::*f)(Args...), bool without_pc, std::string fmt, in T3Helper() argument
446 GenericTemplateHelper(GetBoundFunction3(f), without_pc, fmt, test_name); in T3Helper()
450 void T4Helper(void (arm::Arm32Assembler::*f)(Args...), bool without_pc, std::string fmt, in T4Helper() argument
452 GenericTemplateHelper(GetBoundFunction4(f), without_pc, fmt, test_name); in T4Helper()
456 void T5Helper(void (arm::Arm32Assembler::*f)(Args...), bool without_pc, std::string fmt, in T5Helper() argument
458 GenericTemplateHelper(GetBoundFunction5(f), without_pc, fmt, test_name); in T5Helper()
463 size_t CountHelper(bool without_pc) { in CountHelper() argument
467 if (without_pc) { in CountHelper()
482 size_t CountHelper(bool without_pc) { in CountHelper() argument
486 if (without_pc) { in CountHelper()
497 size_t rec = CountHelper<T2, Args...>(without_pc); in CountHelper()