Home
last modified time | relevance | path

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

/linux/include/trace/stages/
H A Dstage4_event_fields.h11 .is_signed = is_signed_type(_type), .filter_type = _filter_type },
29 .is_signed = is_signed_type(_type), .filter_type = FILTER_OTHER,\
36 .is_signed = is_signed_type(_type), .filter_type = FILTER_OTHER },
63 .is_signed = is_signed_type(_type), .filter_type = FILTER_OTHER },
/linux/kernel/trace/
H A Dtrace_export.c95 is_signed_type(_type), .filter_type = _filter_type },
102 is_signed_type(_type), .filter_type = _filter_type },
123 is_signed_type(_type), .filter_type = FILTER_OTHER, \
136 is_signed_type(_type), .filter_type = FILTER_OTHER },
H A Dring_buffer.c622 (unsigned int)is_signed_type(u64)); in ring_buffer_print_page_header()
628 (unsigned int)is_signed_type(long)); in ring_buffer_print_page_header()
634 (unsigned int)is_signed_type(long)); in ring_buffer_print_page_header()
640 (unsigned int)is_signed_type(char)); in ring_buffer_print_page_header()
H A Dtrace_syscalls.c382 .is_signed = is_signed_type(_type), .filter_type = FILTER_OTHER }
H A Dtrace_events.c176 #item, 0, 0, is_signed_type(type), \
186 is_signed_type(type), FILTER_OTHER, \
/linux/tools/lib/subcmd/
H A Drun-command.c225 #ifndef is_signed_type
226 #define is_signed_type(type) (((type)(-1)) < (type)1) macro
228 #define MAX_STRLEN_TYPE(type) (sizeof(type) * 8 / 3 + (is_signed_type(type) ? 1 : 0))
/linux/tools/include/linux/
H A Doverflow.h31 #define is_signed_type(type) (((type)(-1)) < (type)1) macro
32 #define __type_half_max(type) ((type)1 << (8*sizeof(type) - 1 - is_signed_type(type)))
/linux/include/linux/
H A Dminmax.h49 #define __sign_use(ux) (is_signed_type(typeof(ux)) ? \
H A Doverflow.h33 #define __type_half_max(type) ((type)1 << (8*sizeof(type) - 1 - is_signed_type(type)))
/linux/include/rdma/
H A Duverbs_ioctl.h1001 (is_signed_type(typeof(*(_to))) ? \
1006 (is_signed_type(typeof(*(_to))) ? \
/linux/tools/testing/selftests/bpf/
H A Dveristat.c1830 static bool is_signed_type(const struct btf_type *t) in is_signed_type() function
2080 bool is_signed = is_signed_type(base_type); in set_global_var()
/linux/lib/
H A DKconfig.debug2991 tristate "Test is_signed_type() macro" if !KUNIT_ALL_TESTS
2995 Builds unit tests for the is_signed_type() macro.