Lines Matching refs:pval
2209 static inline void set_value(JSContext* ctx, JSValue* pval, JSValue new_val) in set_value() argument
2212 old_val = *pval; in set_value()
2213 *pval = new_val; in set_value()
2429 static inline BOOL is_num_string(uint32_t* pval, const JSString* p) in is_num_string() argument
2462 *pval = n; in is_num_string()
3134 static BOOL JS_AtomIsArrayIndex(JSContext* ctx, uint32_t* pval, JSAtom atom) in JS_AtomIsArrayIndex() argument
3137 *pval = __JS_AtomToUInt32(atom); in JS_AtomIsArrayIndex()
3148 *pval = val; in JS_AtomIsArrayIndex()
3151 *pval = 0; in JS_AtomIsArrayIndex()
6342 static int get_leb128(uint32_t* pval, const uint8_t* buf, in get_leb128() argument
6354 *pval = v; in get_leb128()
6358 *pval = 0; in get_leb128()
6362 static int get_sleb128(int32_t* pval, const uint8_t* buf, in get_sleb128() argument
6369 *pval = 0; in get_sleb128()
6372 *pval = (val >> 1) ^ -(val & 1); in get_sleb128()
7877 static int JS_TryGetPropertyInt64(JSContext* ctx, JSValueConst obj, int64_t idx, JSValue* pval) in JS_TryGetPropertyInt64() argument
7904 *pval = val; in JS_TryGetPropertyInt64()
15931 JSValue *local_buf = NULL, *stack_buf, *var_buf, *arg_buf, *sp, ret_val, *pval; in JS_CallInternal() local
18528 for (pval = local_buf; pval < sp; pval++) { in JS_CallInternal()
18529 JS_FreeValue(ctx, *pval); in JS_CallInternal()
34208 static int bc_get_u8(BCReaderState* s, uint8_t* pval) in bc_get_u8() argument
34211 *pval = 0; /* avoid warning */ in bc_get_u8()
34214 *pval = *s->ptr++; in bc_get_u8()
34218 static int bc_get_u16(BCReaderState* s, uint16_t* pval) in bc_get_u16() argument
34221 *pval = 0; /* avoid warning */ in bc_get_u16()
34224 *pval = get_u16(s->ptr); in bc_get_u16()
34229 static __maybe_unused int bc_get_u32(BCReaderState* s, uint32_t* pval) in bc_get_u32() argument
34232 *pval = 0; /* avoid warning */ in bc_get_u32()
34235 *pval = get_u32(s->ptr); in bc_get_u32()
34240 static int bc_get_u64(BCReaderState* s, uint64_t* pval) in bc_get_u64() argument
34243 *pval = 0; /* avoid warning */ in bc_get_u64()
34246 *pval = get_u64(s->ptr); in bc_get_u64()
34251 static int bc_get_leb128(BCReaderState* s, uint32_t* pval) in bc_get_leb128() argument
34254 ret = get_leb128(pval, s->ptr, s->buf_end); in bc_get_leb128()
34261 static int bc_get_sleb128(BCReaderState* s, int32_t* pval) in bc_get_sleb128() argument
34264 ret = get_sleb128(pval, s->ptr, s->buf_end); in bc_get_sleb128()
34272 static int bc_get_leb128_int(BCReaderState* s, int* pval) in bc_get_leb128_int() argument
34274 return bc_get_leb128(s, (uint32_t*)pval); in bc_get_leb128_int()
34277 static int bc_get_leb128_u16(BCReaderState* s, uint16_t* pval) in bc_get_leb128_u16() argument
34281 *pval = 0; in bc_get_leb128_u16()
34284 *pval = val; in bc_get_leb128_u16()
47657 static int string_get_field(JSString* sp, int* pp, int64_t* pval) in string_get_field() argument
47678 *pval = v; in string_get_field()
47684 static int string_get_digits(JSString* sp, int* pp, int n, int64_t* pval) in string_get_digits() argument
47698 *pval = v; in string_get_digits()
47704 static int string_get_signed_field(JSString* sp, int* pp, int64_t* pval) in string_get_signed_field() argument
47715 res = string_get_field(sp, pp, pval); in string_get_signed_field()
47717 *pval = -*pval; in string_get_signed_field()
47738 static int string_get_month(JSString* sp, int* pp, int64_t* pval) in string_get_month() argument
47747 *pval = n; in string_get_month()