Searched refs:mp_unary_op (Results 1 – 15 of 15) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objbool.c | 79 return mp_unary_op(op, MP_OBJ_NEW_SMALL_INT(value)); in bool_unary_op()
|
A D | map.c | 214 hash = MP_OBJ_SMALL_INT_VALUE(mp_unary_op(MP_UNARY_OP_HASH, index)); in mp_map_lookup() 324 mp_uint_t hash = MP_OBJ_SMALL_INT_VALUE(mp_unary_op(MP_UNARY_OP_HASH, index)); in mp_set_lookup()
|
A D | modsys.c | 162 return mp_unary_op(MP_UNARY_OP_SIZEOF, obj); in mp_sys_getsizeof()
|
A D | nativeglue.c | 273 mp_unary_op,
|
A D | runtime.h | 112 mp_obj_t mp_unary_op(mp_unary_op_t op, mp_obj_t arg);
|
A D | objtuple.c | 135 hash += MP_OBJ_SMALL_INT_VALUE(mp_unary_op(MP_UNARY_OP_HASH, self->items[i])); in mp_obj_tuple_unary_op()
|
A D | objint.c | 65 return mp_unary_op(MP_UNARY_OP_INT, args[0]); in mp_obj_int_make_new()
|
A D | dynruntime.h | 177 #define mp_unary_op(op, obj) (mp_fun_table.unary_op((op), (obj))) macro
|
A D | modbuiltins.c | 92 return mp_unary_op(MP_UNARY_OP_ABS, o_in); in mp_builtin_abs() 216 return mp_unary_op(MP_UNARY_OP_HASH, o_in); in mp_builtin_hash()
|
A D | obj.c | 303 mp_obj_t res = mp_unary_op(MP_UNARY_OP_INT, (mp_obj_t)arg); in mp_obj_get_int()
|
A D | vm.c | 1314 SET_TOP(mp_unary_op(ip[-1] - MP_BC_UNARY_OP_MULTI, TOP())); in mp_execute_bytecode() 1339 SET_TOP(mp_unary_op(ip[-1] - MP_BC_UNARY_OP_MULTI, TOP())); in mp_execute_bytecode()
|
A D | objset.c | 443 … hash += MP_OBJ_SMALL_INT_VALUE(mp_unary_op(MP_UNARY_OP_HASH, set->table[i])); in set_unary_op()
|
A D | parse.c | 695 arg0 = mp_unary_op(op, arg0); in fold_constants()
|
A D | objtype.c | 418 return mp_unary_op(op, self->subobj[0]); in instance_unary_op()
|
A D | runtime.c | 235 mp_obj_t mp_unary_op(mp_unary_op_t op, mp_obj_t arg) { in mp_unary_op() function
|
Completed in 25 milliseconds