Home | History | Annotate | Download | only in micro_bench

Lines Matching full:void_func_t

71 typedef void *(*void_func_t)();
81 int (*ptr)(const char *, const command_data_t &, void_func_t func);
82 void_func_t func;
381 int benchmarkSleep(const char* /*name*/, const command_data_t &cmd_data, void_func_t /*func*/) {
393 int benchmarkMemset(const char *name, const command_data_t &cmd_data, void_func_t func) {
400 int benchmarkMemsetCold(const char *name, const command_data_t &cmd_data, void_func_t func) {
407 int benchmarkMemcpy(const char *name, const command_data_t &cmd_data, void_func_t func) {
418 int benchmarkMemcpyCold(const char *name, const command_data_t &cmd_data, void_func_t func) {
429 int benchmarkMemmoveBackwards(const char *name, const command_data_t &cmd_data, void_func_t func) {
445 int benchmarkMemread(const char *name, const command_data_t &cmd_data, void_func_t /*func*/) {
463 int benchmarkStrcmp(const char *name, const command_data_t &cmd_data, void_func_t func) {
476 int benchmarkStrcmpCold(const char *name, const command_data_t &cmd_data, void_func_t func) {
493 int benchmarkStrlen(const char *name, const command_data_t &cmd_data, void_func_t func) {
507 int benchmarkStrlenCold(const char *name, const command_data_t &cmd_data, void_func_t func) {
523 int benchmarkStrcat(const char *name, const command_data_t &cmd_data, void_func_t func) {
540 int benchmarkStrcatCold(const char *name, const command_data_t &cmd_data, void_func_t func) {
562 int benchmarkStrcpy(const char *name, const command_data_t &cmd_data, void_func_t func) {
573 int benchmarkStrcpyCold(const char *name, const command_data_t &cmd_data, void_func_t func) {
589 { "memcpy", benchmarkMemcpy, reinterpret_cast<void_func_t>(memcpy) },
590 { "memcpy_cold", benchmarkMemcpyCold, reinterpret_cast<void_func_t>(memcpy) },
591 { "memmove_forward", benchmarkMemcpy, reinterpret_cast<void_func_t>(memmove) },
592 { "memmove_backward", benchmarkMemmoveBackwards, reinterpret_cast<void_func_t>(memmove) },
594 { "memset", benchmarkMemset, reinterpret_cast<void_func_t>(memset) },
595 { "memset_cold", benchmarkMemsetCold, reinterpret_cast<void_func_t>(memset) },
597 { "strcat", benchmarkStrcat, reinterpret_cast<void_func_t>(strcat) },
598 { "strcat_cold", benchmarkStrcatCold, reinterpret_cast<void_func_t>(strcat) },
599 { "strcmp", benchmarkStrcmp, reinterpret_cast<void_func_t>(strcmp) },
600 { "strcmp_cold", benchmarkStrcmpCold, reinterpret_cast<void_func_t>(strcmp) },
601 { "strcpy", benchmarkStrcpy, reinterpret_cast<void_func_t>(strcpy) },
602 { "strcpy_cold", benchmarkStrcpyCold, reinterpret_cast<void_func_t>(strcpy) },
603 { "strlen", benchmarkStrlen, reinterpret_cast<void_func_t>(strlen) },
604 { "strlen_cold", benchmarkStrlenCold, reinterpret_cast<void_func_t>(strlen) },