Searched refs:cast_to (Results 1 - 5 of 5) sorted by relevance
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | c_build_helper.py | 52 def generate_c_printf_expressions(c_file, cast_to, printf_format, expressions): 57 Each expression is cast to the type ``cast_to`` and printed with the 62 .format(printf_format, cast_to, expr)) 124 cast_to, printf_format, 132 * ``cast_to``: a C type. 133 * ``printf_format``: a printf format suitable for the type ``cast_to``. 137 ``cast_to``. 158 cast_to, printf_format,
|
H A D | c_wrapper_generator.py | 428 cast_to = self._printf_type_cast(base_type) 429 if cast_to is not None: 430 expr = '({}) {}'.format(cast_to, expr) 431 base_type = cast_to
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | evaluate.c | 315 static struct expression * cast_to(struct expression *old, struct symbol *type) in cast_to() function 618 index = cast_to(index, ssize_t_ctype); in evaluate_ptr_add() 959 expr->left = cast_to(expr->left, ltype); in evaluate_binop() 960 expr->right = cast_to(expr->right, rtype); in evaluate_binop() 1052 expr->left = cast_to(expr->left, ctype); in evaluate_compare() 1053 expr->right = cast_to(expr->right, ctype); in evaluate_compare() 1078 expr->left = cast_to(left, rtype); in evaluate_compare() 1082 expr->right = cast_to(right, ltype); in evaluate_compare() 1098 expr->right = cast_to(right, ltype); in evaluate_compare() 1102 expr->left = cast_to(lef in evaluate_compare() [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | test_psa_constant_names.py | 57 cast_to = 'long' 60 cast_to = 'unsigned long' 63 cast_to, printf_format,
|
/third_party/python/Tools/gdb/ |
H A D | libpython.py | 167 def __init__(self, gdbval, cast_to=None): 168 if cast_to: 169 self._gdbval = gdbval.cast(cast_to) 387 return cls(gdbval, cast_to=cls.get_gdb_type()) 937 def __init__(self, gdbval, cast_to=None): 938 PyObjectPtr.__init__(self, gdbval, cast_to)
|
Completed in 6 milliseconds