Home
last modified time | relevance | path

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

/linux-2.6.39/tools/perf/util/
Dparse-options.h99 #define check_vtype(v, type) ( BUILD_BUG_ON_ZERO(!__builtin_types_compatible_p(typeof(v), type)) + … macro
104 … { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel…
105 … .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .he…
106 … { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel…
107 ….type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int…
109 … .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel…
110 ….type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int…
111 … { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, long *), .he…
112 … { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value = check_vtype(v, u64 *), .hel…
113 … .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char *…