Home
last modified time | relevance | path

Searched refs:func_ptr (Results 1 – 2 of 2) sorted by relevance

/frameworks/libs/binary_translation/backend/x86_64/
Dmachine_ir_exec_test.cc186 auto* func_ptr = +[](uint64_t arg0, in TEST() local
205 auto* call = builder.GenCallImm(bit_cast<uintptr_t>(func_ptr), flag_register, args); in TEST()
232 auto* func_ptr = +[](uint64_t arg0, uint64_t arg1, uint64_t arg2, uint64_t arg3, uint64_t arg4) { in TEST() local
249 builder.GenCallImm(bit_cast<uintptr_t>(func_ptr), flag_register, args); in TEST()
276 auto* func_ptr = +[](double arg0, in TEST() local
301 auto* call = builder.GenCallImm(bit_cast<uintptr_t>(func_ptr), flag_register, args); in TEST()
/frameworks/native/cmds/dumpstate/
Ddumpstate.cpp218 #define RUN_SLOW_FUNCTION_WITH_CONSENT_CHECK(func_ptr, ...) \ argument
220 func_ptr(__VA_ARGS__); \
224 #define RUN_SLOW_FUNCTION_AND_LOG(log_title, func_ptr, ...) \ argument
227 func_ptr(__VA_ARGS__); \
232 #define RUN_SLOW_FUNCTION_WITH_CONSENT_CHECK_AND_LOG(log_title, func_ptr, ...) \ argument
234 RUN_SLOW_FUNCTION_AND_LOG(log_title, func_ptr, __VA_ARGS__); \