/third_party/ffmpeg/libavcodec/ |
H A D | lcldec.c | 173 uint8_t *y_out, *u_out, *v_out; in decode_frame() local 388 v_out = FF_PTR_ADD(frame->data[2], offset); in decode_frame() 395 v_out[col] = *encoded++ + 128; in decode_frame() 399 v_out -= frame->linesize[2]; in decode_frame() 409 v_out[ col >> 1 ] = *encoded++ + 128; in decode_frame() 410 v_out[(col >> 1) + 1] = *encoded++ + 128; in decode_frame() 414 v_out[ col >> 1 ] = v_out[(col>>1) - 1]; in decode_frame() 419 v_out -= frame->linesize[2]; in decode_frame() 436 v_out[co in decode_frame() [all...] |
H A D | qcelpdec.c | 391 * @param v_out output vector 397 static void apply_gain_ctrl(float *v_out, const float *v_ref, const float *v_in) in apply_gain_ctrl() argument 403 ff_scale_vector_to_given_sum_of_squares(v_out + i, v_in + i, res, 40); in apply_gain_ctrl() 429 float *v_lag, *v_out; in do_pitchfilter() local 432 v_out = memory + 143; // Output vector starts at memory[143]. in do_pitchfilter() 439 for (j = 0, *v_out = 0.0; j < 4; j++) in do_pitchfilter() 440 *v_out += qcelp_hammsinc_table[j] * in do_pitchfilter() 443 *v_out = *v_lag; in do_pitchfilter() 445 *v_out = *v_in + gain[i] * *v_out; in do_pitchfilter() [all...] |
/third_party/vixl/examples/aarch64/ |
H A D | neon-matrix-multiply.cc | 38 // __ Fmul(v<v_out>.V4S(), v4.V4S(), v<s_column>.S(), 0); 39 // __ Fmla(v<v_out>.V4S(), v5.V4S(), v<s_column>.S(), 1); 40 // __ Fmla(v<v_out>.V4S(), v6.V4S(), v<s_column>.S(), 2); 41 // __ Fmla(v<v_out>.V4S(), v7.V4S(), v<s_column>.S(), 3); 43 // v<v_out> corresponds to a column of the output matrix (v0, v1, v2 or v3). 49 // 'v_out' splits a Q register into 4 lanes of 32 bits each. in GenerateMultiplyColumn() 50 VRegister v_out = VRegister(out_column, kQRegSize, 4); in GenerateMultiplyColumn() local 54 __ Fmul(v_out, v4.V4S(), v_in, 0); // e.g. (v0.V4S(), v4.V4S(), v8.S(), 0). in GenerateMultiplyColumn() 55 __ Fmla(v_out, v5.V4S(), v_in, 1); in GenerateMultiplyColumn() 56 __ Fmla(v_out, v in GenerateMultiplyColumn() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
H A D | inlined_vector_test.cc | 636 IntVec v_out(std::move(v_temp)); in TEST() 637 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() 640 EXPECT_TRUE(v_out.data() == old_data); in TEST() 642 EXPECT_FALSE(v_out.data() == old_data); in TEST() 646 IntVec v_out; in TEST() local 647 Fill(&v_out, start_len, 99); // Add dummy elements that should go away in TEST() 650 v_out = std::move(v_temp); in TEST() 651 EXPECT_TRUE(v_in == v_out) << PrintToString(v_in) << PrintToString(v_out); in TEST() [all...] |
/third_party/jerryscript/tests/unit-core/ |
H A D | test-api.cpp | 678 jerry_value_t v_out = jerry_get_property_by_index (array_obj_val, 5); in HWTEST_F() local 680 TEST_ASSERT (jerry_value_is_number (v_out) in HWTEST_F() 681 && jerry_get_number_value (v_out) == 10.5); in HWTEST_F() 689 jerry_release_value (v_out); in HWTEST_F()
|
/third_party/skia/third_party/externals/libwebp/src/dec/ |
H A D | frame_dec.c | 181 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset; in ReconstructRow() local 187 memcpy(v_out + j * dec->cache_uv_stride_, v_dst + j * BPS, 8); in ReconstructRow()
|
/third_party/mesa3d/src/intel/blorp/ |
H A D | blorp_clear.c | 275 nir_variable *v_out = nir_variable_create(b.shader, nir_var_shader_out, in blorp_params_get_layer_offset_vs() local 277 v_out->data.location = VARYING_SLOT_VAR0 + i; in blorp_params_get_layer_offset_vs() 279 nir_copy_var(&b, v_out, a_in); in blorp_params_get_layer_offset_vs()
|
/third_party/node/deps/brotli/c/enc/ |
H A D | brotli_bit_stream.c | 597 uint32_t* v_out) { in MoveToFrontTransform() 617 v_out[i] = (uint32_t)index; in MoveToFrontTransform() 595 MoveToFrontTransform(const uint32_t* BROTLI_RESTRICT v_in, const size_t v_size, uint32_t* v_out) MoveToFrontTransform() argument
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | brotli_bit_stream.c | 597 uint32_t* v_out) { in MoveToFrontTransform() 617 v_out[i] = (uint32_t)index; in MoveToFrontTransform() 595 MoveToFrontTransform(const uint32_t* BROTLI_RESTRICT v_in, const size_t v_size, uint32_t* v_out) MoveToFrontTransform() argument
|