Searched refs:mp_obj_new_int_from_ll (Results 1 – 8 of 8) sorted by relevance
57 return mp_obj_new_int_from_ll(value); in mp_obj_int_from_bytes_impl()109 return mp_obj_new_int_from_ll(-o->val); in mp_obj_int_unary_op()111 return mp_obj_new_int_from_ll(~o->val); in mp_obj_int_unary_op()117 self = mp_obj_new_int_from_ll(self->val); in mp_obj_int_unary_op()150 return mp_obj_new_int_from_ll(lhs_val + rhs_val); in mp_obj_int_binary_op()153 return mp_obj_new_int_from_ll(lhs_val - rhs_val); in mp_obj_int_binary_op()156 return mp_obj_new_int_from_ll(lhs_val * rhs_val); in mp_obj_int_binary_op()207 return mp_obj_new_int_from_ll(ans); in mp_obj_int_binary_op()233 return mp_obj_new_int_from_ll(value); in mp_obj_new_int()242 return mp_obj_new_int_from_ll(value); in mp_obj_new_int_from_uint()[all …]
173 return mp_obj_new_int_from_ll(((long long *)p)[index]); in mp_binary_get_val_array()258 return mp_obj_new_int_from_ll(val); in mp_binary_get_val()
160 return mp_obj_new_int_from_ll((long long)val); in mp_obj_new_int_from_float()333 mp_obj_t mp_obj_new_int_from_ll(long long val) { in mp_obj_new_int_from_ll() function
377 return mp_obj_new_int_from_ll(value); in mp_obj_new_int()380 mp_obj_t mp_obj_new_int_from_ll(long long val) { in mp_obj_new_int_from_ll() function
397 lhs = mp_obj_new_int_from_ll(lhs_val); in mp_binary_op()439 return mp_obj_new_int_from_ll(res); in mp_binary_op()448 lhs = mp_obj_new_int_from_ll(lhs_val); in mp_binary_op()513 lhs = mp_obj_new_int_from_ll(MP_OBJ_SMALL_INT_VALUE(lhs)); in mp_binary_op()543 return mp_obj_new_int_from_ll(lhs_val); in mp_binary_op()
729 mp_obj_t mp_obj_new_int_from_ll(long long val); // this must return a multi-precision integer objec…
2823 EMIT_ARG(load_const_obj, mp_obj_new_int_from_ll(arg)); in compile_node()
325 return mp_obj_new_int_from_ll(((int64_t *)p)[index]); in get_aligned()
Completed in 22 milliseconds