Lines Matching defs:cx

62 static bool math_function(JSContext* cx, HandleValue val,  in math_function()
78 static bool math_function(JSContext* cx, unsigned argc, Value* vp) { in math_function()
88 bool js::math_abs_handle(JSContext* cx, js::HandleValue v, in math_abs_handle()
101 bool js::math_abs(JSContext* cx, unsigned argc, Value* vp) { in math_abs()
117 bool js::math_acos(JSContext* cx, unsigned argc, Value* vp) { in math_acos()
126 bool js::math_asin(JSContext* cx, unsigned argc, Value* vp) { in math_asin()
135 bool js::math_atan(JSContext* cx, unsigned argc, Value* vp) { in math_atan()
144 bool js::math_atan2_handle(JSContext* cx, HandleValue y, HandleValue x, in math_atan2_handle()
161 bool js::math_atan2(JSContext* cx, unsigned argc, Value* vp) { in math_atan2()
172 bool js::math_ceil_handle(JSContext* cx, HandleValue v, in math_ceil_handle()
182 bool js::math_ceil(JSContext* cx, unsigned argc, Value* vp) { in math_ceil()
193 bool js::math_clz32(JSContext* cx, unsigned argc, Value* vp) { in math_clz32()
229 bool js::math_cos(JSContext* cx, unsigned argc, Value* vp) { in math_cos()
241 bool js::math_exp(JSContext* cx, unsigned argc, Value* vp) { in math_exp()
250 bool js::math_floor_handle(JSContext* cx, HandleValue v, MutableHandleValue r) { in math_floor_handle()
262 bool js::math_floor(JSContext* cx, unsigned argc, Value* vp) { in math_floor()
273 bool js::math_imul_handle(JSContext* cx, HandleValue lhs, HandleValue rhs, in math_imul_handle()
287 bool js::math_imul(JSContext* cx, unsigned argc, Value* vp) { in math_imul()
294 bool js::RoundFloat32(JSContext* cx, HandleValue v, float* out) { in RoundFloat32()
301 bool js::RoundFloat32(JSContext* cx, HandleValue arg, MutableHandleValue res) { in RoundFloat32()
311 bool js::math_fround(JSContext* cx, unsigned argc, Value* vp) { in math_fround()
327 bool js::math_log_handle(JSContext* cx, HandleValue val, in math_log_handle()
332 bool js::math_log(JSContext* cx, unsigned argc, Value* vp) { in math_log()
346 bool js::math_max(JSContext* cx, unsigned argc, Value* vp) { in math_max()
371 bool js::math_min(JSContext* cx, unsigned argc, Value* vp) { in math_min()
386 bool js::minmax_impl(JSContext* cx, bool max, HandleValue a, HandleValue b, in minmax_impl()
473 bool js::math_pow(JSContext* cx, unsigned argc, Value* vp) { in math_pow()
520 double js::math_random_impl(JSContext* cx) { in math_random_impl()
524 bool js::math_random(JSContext* cx, unsigned argc, Value* vp) { in math_random()
530 bool js::math_round_handle(JSContext* cx, HandleValue arg, in math_round_handle()
592 js::math_round(JSContext* cx, unsigned argc, Value* vp) { in math_round()
615 bool js::math_sin_handle(JSContext* cx, HandleValue val, in math_sin_handle()
623 bool js::math_sin(JSContext* cx, unsigned argc, Value* vp) { in math_sin()
635 bool js::math_sqrt_handle(JSContext* cx, HandleValue number, in math_sqrt_handle()
640 bool js::math_sqrt(JSContext* cx, unsigned argc, Value* vp) { in math_sqrt()
656 bool js::math_tan(JSContext* cx, unsigned argc, Value* vp) { in math_tan()
668 bool js::math_log10(JSContext* cx, unsigned argc, Value* vp) { in math_log10()
677 bool js::math_log2(JSContext* cx, unsigned argc, Value* vp) { in math_log2()
686 bool js::math_log1p(JSContext* cx, unsigned argc, Value* vp) { in math_log1p()
695 bool js::math_expm1(JSContext* cx, unsigned argc, Value* vp) { in math_expm1()
704 bool js::math_cosh(JSContext* cx, unsigned argc, Value* vp) { in math_cosh()
713 bool js::math_sinh(JSContext* cx, unsigned argc, Value* vp) { in math_sinh()
722 bool js::math_tanh(JSContext* cx, unsigned argc, Value* vp) { in math_tanh()
731 bool js::math_acosh(JSContext* cx, unsigned argc, Value* vp) { in math_acosh()
740 bool js::math_asinh(JSContext* cx, unsigned argc, Value* vp) { in math_asinh()
749 bool js::math_atanh(JSContext* cx, unsigned argc, Value* vp) { in math_atanh()
798 bool js::math_hypot(JSContext* cx, unsigned argc, Value* vp) { in math_hypot()
803 bool js::math_hypot_handle(JSContext* cx, HandleValueArray args, in math_hypot_handle()
859 bool js::math_trunc_handle(JSContext* cx, HandleValue v, MutableHandleValue r) { in math_trunc_handle()
869 bool js::math_trunc(JSContext* cx, unsigned argc, Value* vp) { in math_trunc()
889 bool js::math_sign_handle(JSContext* cx, HandleValue v, MutableHandleValue r) { in math_sign_handle()
899 bool js::math_sign(JSContext* cx, unsigned argc, Value* vp) { in math_sign()
914 bool js::math_cbrt(JSContext* cx, unsigned argc, Value* vp) { in math_cbrt()
918 static bool math_toSource(JSContext* cx, unsigned argc, Value* vp) { in math_toSource()
1089 static JSObject* CreateMathObject(JSContext* cx, JSProtoKey key) { in CreateMathObject()