Searched refs:num_p (Results 1 – 7 of 7) sorted by relevance
/third_party/jerryscript/jerry-core/parser/js/ |
D | common.c | 72 util_print_number (ecma_number_t num_p) /**< number to print */ in util_print_number() argument 75 lit_utf8_size_t str_size = ecma_number_to_utf8_string (num_p, str_buf, sizeof (str_buf)); in util_print_number()
|
/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-literal-storage.c | 101 … ecma_number_t *num_p = JMEM_CP_GET_NON_NULL_POINTER (ecma_number_t, number_list_p->values[i]); in ecma_free_number_list() local 102 ecma_dealloc_number (num_p); in ecma_free_number_list() 249 ecma_number_t *num_p = ecma_get_pointer_from_float_value (num); in ecma_find_or_create_literal_number() local 252 JMEM_CP_SET_NON_NULL_POINTER (result, num_p); in ecma_find_or_create_literal_number()
|
D | ecma-helpers-conversion.c | 53 ecma_round_high_to_uint64 (ecma_uint128_t *num_p) in ecma_round_high_to_uint64() argument 55 uint64_t masked_lo = num_p->lo & ~(1ULL << 63u); in ecma_round_high_to_uint64() 56 uint64_t masked_hi = num_p->hi & 0x1; in ecma_round_high_to_uint64() 58 if ((num_p->lo >> 63u != 0) in ecma_round_high_to_uint64() 61 return (num_p->hi + 1); in ecma_round_high_to_uint64() 63 return num_p->hi; in ecma_round_high_to_uint64()
|
D | ecma-helpers-value.c | 836 ecma_number_t *num_p = (ecma_number_t *) ecma_get_pointer_from_ecma_value (value); in ecma_copy_value() local 838 return ecma_create_float_number (*num_p); in ecma_copy_value()
|
D | ecma-gc.c | 1111 ecma_number_t *num_p = ECMA_GET_INTERNAL_VALUE_POINTER (ecma_number_t, in ecma_gc_free_object() local 1113 ecma_dealloc_number (num_p); in ecma_gc_free_object()
|
/third_party/boringssl/src/crypto/fipsmodule/bn/ |
D | exponentiation.c | 723 const BN_ULONG *p, size_t num_p, in bn_mod_exp_mont_small() argument 731 while (num_p != 0 && p[num_p - 1] == 0) { in bn_mod_exp_mont_small() 732 num_p--; in bn_mod_exp_mont_small() 734 if (num_p == 0) { in bn_mod_exp_mont_small() 738 unsigned bits = BN_num_bits_word(p[num_p - 1]) + (num_p - 1) * BN_BITS2; in bn_mod_exp_mont_small() 764 if (!bn_is_bit_set_words(p, num_p, wstart)) { in bn_mod_exp_mont_small() 779 if (bn_is_bit_set_words(p, num_p, wstart - i)) { in bn_mod_exp_mont_small()
|
D | internal.h | 675 const BN_ULONG *p, size_t num_p, in OPENSSL_MSVC_PRAGMA()
|