Searched refs:feature (Results 1 – 4 of 4) sorted by relevance
54 static inline bool riscv_feature_test(enum riscv_feature feature) { in riscv_feature_test() argument55 return riscv_feature_bitmap[feature / 32] & (1U << feature % 32); in riscv_feature_test()58 const char *riscv_feature_to_string(enum riscv_feature feature);
21 static void set_feature(enum riscv_feature feature) { in set_feature() argument22 riscv_feature_bitmap[feature / 32] |= (1U << feature % 32); in set_feature()181 const char *riscv_feature_to_string(enum riscv_feature feature) { in riscv_feature_to_string() argument182 switch (feature) { in riscv_feature_to_string()
10 MODULE_SRCS += $(LOCAL_DIR)/feature.c
78 $(LOCAL_DIR)/feature.c \
Completed in 4 milliseconds