OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gIn
(Results
1 - 4
of
4
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_convolve5x5.rs
22
rs_allocation
gIn
;
39
float4 p0 = convert_float4(rsGetElementAt_uchar4(
gIn
, x0, y0)) * gCoeffs[0]
40
+ convert_float4(rsGetElementAt_uchar4(
gIn
, x1, y0)) * gCoeffs[1]
41
+ convert_float4(rsGetElementAt_uchar4(
gIn
, x2, y0)) * gCoeffs[2]
42
+ convert_float4(rsGetElementAt_uchar4(
gIn
, x3, y0)) * gCoeffs[3]
43
+ convert_float4(rsGetElementAt_uchar4(
gIn
, x4, y0)) * gCoeffs[4];
45
float4 p1 = convert_float4(rsGetElementAt_uchar4(
gIn
, x0, y1)) * gCoeffs[5]
46
+ convert_float4(rsGetElementAt_uchar4(
gIn
, x1, y1)) * gCoeffs[6]
47
+ convert_float4(rsGetElementAt_uchar4(
gIn
, x2, y1)) * gCoeffs[7]
48
+ convert_float4(rsGetElementAt_uchar4(
gIn
, x3, y1)) * gCoeffs[8
[
all
...]
intrinsic_convolve3x3.rs
21
rs_allocation
gIn
;
31
float4 p00 = convert_float4(rsGetElementAt_uchar4(
gIn
, x1, y1));
32
float4 p01 = convert_float4(rsGetElementAt_uchar4(
gIn
, x, y1));
33
float4 p02 = convert_float4(rsGetElementAt_uchar4(
gIn
, x2, y1));
34
float4 p10 = convert_float4(rsGetElementAt_uchar4(
gIn
, x1, y));
35
float4 p11 = convert_float4(rsGetElementAt_uchar4(
gIn
, x, y));
36
float4 p12 = convert_float4(rsGetElementAt_uchar4(
gIn
, x2, y));
37
float4 p20 = convert_float4(rsGetElementAt_uchar4(
gIn
, x1, y2));
38
float4 p21 = convert_float4(rsGetElementAt_uchar4(
gIn
, x, y2));
39
float4 p22 = convert_float4(rsGetElementAt_uchar4(
gIn
, x2, y2))
[
all
...]
intrinsic_resize.rs
21
rs_allocation
gIn
;
66
float4 p00 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs0, ys0));
67
float4 p01 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs1, ys0));
68
float4 p02 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs2, ys0));
69
float4 p03 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs3, ys0));
72
float4 p10 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs0, ys1));
73
float4 p11 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs1, ys1));
74
float4 p12 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs2, ys1));
75
float4 p13 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs3, ys1));
78
float4 p20 = convert_float4(rsGetElementAt_uchar4(
gIn
, xs0, ys2))
[
all
...]
GetElementAt.java
29
private Allocation
gIn
;
59
gIn
= Allocation.createSized(mRS, Element.U32(mRS), INPUTSIZE);
60
gIn
.copyFrom(in);
61
mOut = Allocation.createTyped(mRS,
gIn
.getType());
62
script_x.set_gIn(
gIn
);
80
gIn
= Allocation.createTyped(mRS, type);
81
gIn
.copyFrom(in);
82
mOut = Allocation.createTyped(mRS,
gIn
.getType());
83
script_xy.set_gIn(
gIn
);
Completed in 214 milliseconds