| 103 | } |
| 104 | |
| 105 | const char * |
| 106 | rte_cpu_get_flag_name(enum rte_cpu_flag_t feature) |
| 107 | { |
| 108 | if ((unsigned int)feature >= RTE_DIM(rte_cpu_feature_table)) |
| 109 | return NULL; |
| 110 | return rte_cpu_feature_table[feature].name; |
| 111 | } |
| 112 | |
| 113 | void |
| 114 | rte_cpu_get_intrinsics_support(struct rte_cpu_intrinsics *intrinsics) |
no outgoing calls
no test coverage detected