Searched refs:res_val (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | alacenc.c | 286 int sum = 1 << (lpc.lpc_quant - 1), res_val, j; in alac_linear_predictor() local 297 res_val = residual[i]; in alac_linear_predictor() 299 if (res_val) { in alac_linear_predictor() 301 int neg = (res_val < 0); in alac_linear_predictor() 303 while (index >= 0 && (neg ? (res_val < 0) : (res_val > 0))) { in alac_linear_predictor() 312 res_val -= (val >> lpc.lpc_quant) * (lpc.lpc_order - index); in alac_linear_predictor()
|
/third_party/quickjs/ |
D | run-test262.c | 1175 JSValue res_val, exception_val; in eval_buf() local 1188 res_val = JS_Eval(ctx, buf, buf_len, filename, eval_flags); in eval_buf() 1190 if (is_async && !JS_IsException(res_val)) { in eval_buf() 1191 JS_FreeValue(ctx, res_val); in eval_buf() 1196 res_val = JS_EXCEPTION; in eval_buf() 1201 res_val = JS_ThrowTypeError(ctx, "$DONE() not called"); in eval_buf() 1203 res_val = JS_UNDEFINED; in eval_buf() 1210 if (JS_IsException(res_val)) { in eval_buf() 1341 JS_FreeValue(ctx, res_val); in eval_buf() 1801 JSValue res_val; in run_test262_harness_test() local [all …]
|
/third_party/mesa3d/src/compiler/spirv/ |
D | spirv_to_nir.c | 3184 struct vtn_value *res_val; in vtn_handle_image() local 3204 res_val = vtn_value(b, w[3], vtn_value_type_image_pointer); in vtn_handle_image() 3205 image = *res_val->image; in vtn_handle_image() 3212 res_val = vtn_value(b, w[1], vtn_value_type_image_pointer); in vtn_handle_image() 3213 image = *res_val->image; in vtn_handle_image() 3220 res_val = vtn_untyped_value(b, w[3]); in vtn_handle_image() 3229 res_val = vtn_untyped_value(b, w[3]); in vtn_handle_image() 3238 res_val = vtn_untyped_value(b, w[3]); in vtn_handle_image() 3247 res_val = vtn_untyped_value(b, w[3]); in vtn_handle_image() 3285 res_val = vtn_untyped_value(b, w[1]); in vtn_handle_image() [all …]
|
/third_party/jerryscript/docs/ |
D | 03.API-EXAMPLE.md | 977 jerry_value_t res_val = jerry_create_number (x + d); 980 jerry_release_value (jerry_set_property (this_val, prop_name, res_val)); 981 jerry_release_value (res_val);
|