HomeSort by relevance Sort by last modified time
    Searched refs:v_out (Results 1 - 12 of 12) sorted by null

  /frameworks/av/cmds/stagefright/filters/
argbtorgba.rs 21 void root(const uchar4 *v_in, uchar4 *v_out) {
22 v_out->x = v_in->y;
23 v_out->y = v_in->z;
24 v_out->z = v_in->w;
25 v_out->w = v_in->x;
nightvision.rs 25 void root(const uchar4 *v_in, uchar4 *v_out) {
26 v_out->x = v_in->x; // don't modify A
35 v_out->y = (uchar)clamp((result.r * 255.f + 0.5f), 0.f, 255.f);
36 v_out->z = (uchar)clamp((result.g * 255.f + 0.5f), 0.f, 255.f);
37 v_out->w = (uchar)clamp((result.b * 255.f + 0.5f), 0.f, 255.f);
saturation.rs 26 void root(const uchar4 *v_in, uchar4 *v_out) {
27 v_out->x = v_in->x; // don't modify A
37 v_out->y = (uchar)clamp((result.r * 255.f + 0.5f), 0.f, 255.f);
38 v_out->z = (uchar)clamp((result.g * 255.f + 0.5f), 0.f, 255.f);
39 v_out->w = (uchar)clamp((result.b * 255.f + 0.5f), 0.f, 255.f);
  /frameworks/rs/tests/latency/
latency.rs 21 void root(const uint32_t *v_in, uint32_t *v_out) {
  /frameworks/av/media/libstagefright/filters/
saturationARGB.rs 26 void root(const uchar4 *v_in, uchar4 *v_out) {
27 v_out->x = v_in->x; // don't modify A
37 v_out->y = (uchar)clamp((result.r * 255.f + 0.5f), 0.f, 255.f);
38 v_out->z = (uchar)clamp((result.g * 255.f + 0.5f), 0.f, 255.f);
39 v_out->w = (uchar)clamp((result.b * 255.f + 0.5f), 0.f, 255.f);
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
mono.rs 22 void root(const uchar4 *v_in, uchar4 *v_out) {
26 *v_out = rsPackColorTo8888(mono);
  /frameworks/rs/java/tests/HelloComputeNDK/libhellocomputendk/
mono.rs 22 void root(const uchar4 *v_in, uchar4 *v_out) {
26 *v_out = rsPackColorTo8888(mono);
  /external/vixl/examples/
neon-matrix-multiply.cc 36 // __ Fmul(v<v_out>.V4S(), v4.V4S(), v<s_column>.S(), 0);
37 // __ Fmla(v<v_out>.V4S(), v5.V4S(), v<s_column>.S(), 1);
38 // __ Fmla(v<v_out>.V4S(), v6.V4S(), v<s_column>.S(), 2);
39 // __ Fmla(v<v_out>.V4S(), v7.V4S(), v<s_column>.S(), 3);
41 // v<v_out> corresponds to a column of the output matrix (v0, v1, v2 or v3).
47 // 'v_out' splits a Q register into 4 lanes of 32 bits each.
48 VRegister v_out = VRegister(out_column, kQRegSize, 4); local
52 __ Fmul(v_out, v4.V4S(), v_in, 0); // e.g. (v0.V4S(), v4.V4S(), v8.S(), 0).
53 __ Fmla(v_out, v5.V4S(), v_in, 1);
54 __ Fmla(v_out, v6.V4S(), v_in, 2)
    [all...]
  /frameworks/rs/tests/cppbasic/
mono.rs 51 void root(const uchar4 *v_in, uchar4 *v_out) {
55 *v_out = rsPackColorTo8888(mono);
  /frameworks/rs/tests/cppbasic-shared/
mono.rs 51 void root(const uchar4 *v_in, uchar4 *v_out) {
55 *v_out = rsPackColorTo8888(mono);
  /external/clang/test/SemaCXX/
crashes.cpp 134 cc_YCbCr v_out = cc_YCbCr( rgb()); local
135 return v_out;
  /external/webp/src/dec/
frame.c 815 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset; local
821 memcpy(v_out + j * dec->cache_uv_stride_, v_dst + j * BPS, 8);

Completed in 1081 milliseconds