Searched refs:MOD_UNSIGNED (Results 1 – 8 of 8) sorted by relevance
/third_party/ltp/tools/sparse/sparse-src/ |
D | symbol.h | 242 #define MOD_UNSIGNED 0x00004000 macro 266 #define MOD_SIGNEDNESS (MOD_SIGNED | MOD_UNSIGNED | MOD_EXPLICITLY_SIGNED) 403 return !(sym->ctype.modifiers & MOD_UNSIGNED); in is_signed_type() 549 int is_signed = !(ctype->ctype.modifiers & MOD_UNSIGNED); in extend_value()
|
D | gdbhelpers | 119 if ($arg0->modifiers & MOD_UNSIGNED) 120 printf "MOD_UNSIGNED "
|
D | symbol.c | 337 modifiers = (modifiers & ~MOD_SIGNED) | MOD_UNSIGNED; in examine_bitfield_type() 873 #define T_UINT(R,S) T_INT(R, S, MOD_UNSIGNED) 889 { &bool_ctype, T_INT(-3, bool, MOD_UNSIGNED) }, 986 char_ctype.ctype.modifiers |= MOD_UNSIGNED; in init_ctype()
|
D | parse.c | 844 int is_unsigned = type->ctype.modifiers & MOD_UNSIGNED; in type_is_ok() 1029 parent->ctype.modifiers |= (base_type->ctype.modifiers & MOD_UNSIGNED); in parse_enum_declaration() 1201 return ctype->ctype.modifiers & MOD_UNSIGNED ? &uchar_ctype in to_QI_mode() 1209 return ctype->ctype.modifiers & MOD_UNSIGNED ? &ushort_ctype in to_HI_mode() 1217 return ctype->ctype.modifiers & MOD_UNSIGNED ? &uint_ctype in to_SI_mode() 1225 return ctype->ctype.modifiers & MOD_UNSIGNED ? &ullong_ctype in to_DI_mode() 1233 return ctype->ctype.modifiers & MOD_UNSIGNED ? &uint128_ctype in to_TI_mode() 1241 return ctype->ctype.modifiers & MOD_UNSIGNED ? uintptr_ctype in to_pointer_mode() 1249 return ctype->ctype.modifiers & MOD_UNSIGNED ? &ulong_ctype in to_word_mode() 1872 int is_signed = !(bitfield_type->ctype.modifiers & MOD_UNSIGNED); in handle_bitfield()
|
D | expand.c | 83 int no_expand = expr->ctype->ctype.modifiers & MOD_UNSIGNED; in get_longlong() 208 is_signed = !(ctype->ctype.modifiers & MOD_UNSIGNED); in simplify_int_binop() 777 if (v == mask && !(expr->ctype->ctype.modifiers & MOD_UNSIGNED)) in simplify_preop() 1403 if (!(ctype->ctype.modifiers & MOD_UNSIGNED)) in __get_expression_value()
|
D | evaluate.c | 173 if (mod & MOD_UNSIGNED) in integer_promotion() 212 if (((lmod ^ rmod) & MOD_UNSIGNED) == 0) in bigger_int_type() 214 if (lmod & MOD_UNSIGNED) { in bigger_int_type() 1054 if (ctype->ctype.modifiers & MOD_UNSIGNED) in evaluate_compare()
|
D | show-parse.c | 143 {MOD_UNSIGNED, "[unsigned]"}, in show_modifiers()
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/ |
D | types.rst | 34 * ``modifiers`` is a bit mask for type specifiers (MOD_UNSIGNED, ...), 53 * .ctype.modifiers has MOD_UNSIGNED/SIGNED/EXPLICITLY_SIGNED set accordingly.
|