Searched refs:is_signed_type (Results 1 – 4 of 4) sorted by relevance
31 #define is_signed_type(type) (((type)(-1)) < (type)1) macro32 #define __type_half_max(type) ((type)1 << (8*sizeof(type) - 1 - is_signed_type(type)))
225 #ifndef is_signed_type226 #define is_signed_type(type) (((type)(-1)) < (type)1) macro228 #define MAX_STRLEN_TYPE(type) (sizeof(type) * 8 / 3 + (is_signed_type(type) ? 1 : 0))
754 #define is_signed_type(var) (!!(((__typeof__(var))(-1)) < (__typeof__(var))1)) macro762 switch (is_signed_type(__exp) * 2 + is_signed_type(__seen)) { \
1776 static bool is_signed_type(const struct btf_type *t) in is_signed_type() function2026 bool is_signed = is_signed_type(base_type); in set_global_var()
Completed in 13 milliseconds