OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:moutpixelsallocation
(Results
1 - 25
of
91
) sorted by null
1
2
3
4
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Posterize.java
47
mScript.forEach_root(mInPixelsAllocation,
mOutPixelsAllocation
);
49
mScript.forEach_root(
mOutPixelsAllocation
,
mOutPixelsAllocation
);
51
mScript.forEach_root(
mOutPixelsAllocation
,
mOutPixelsAllocation
);
53
mScript.forEach_root(
mOutPixelsAllocation
,
mOutPixelsAllocation
);
55
mScript.forEach_root(
mOutPixelsAllocation
,
mOutPixelsAllocation
);
Mandelbrot.java
82
int width =
mOutPixelsAllocation
.getType().getX();
83
int height =
mOutPixelsAllocation
.getType().getY();
93
mScript.forEach_rootD(
mOutPixelsAllocation
);
95
mScript.forEach_root(
mOutPixelsAllocation
);
TestBase.java
35
protected Allocation
mOutPixelsAllocation
;
93
mOutPixelsAllocation
= ipact.mProcessor.mOutDisplayAllocationIO;
95
mOutPixelsAllocation
= ipact.mProcessor.mOutDisplayAllocation1;
BWFilter.java
31
mScript.forEach_bwFilterKernel(mInPixelsAllocation,
mOutPixelsAllocation
);
Contrast.java
31
mScript.forEach_contrast(mInPixelsAllocation,
mOutPixelsAllocation
);
Copy.java
32
mScript.forEach_root(mInPixelsAllocation,
mOutPixelsAllocation
);
Exposure.java
32
mScript.forEach_exposure(mInPixelsAllocation,
mOutPixelsAllocation
);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Posterize.java
56
mScript.forEach_root(mInPixelsAllocation,
mOutPixelsAllocation
);
58
mScript.forEach_root(
mOutPixelsAllocation
,
mOutPixelsAllocation
);
60
mScript.forEach_root(
mOutPixelsAllocation
,
mOutPixelsAllocation
);
62
mScript.forEach_root(
mOutPixelsAllocation
,
mOutPixelsAllocation
);
64
mScript.forEach_root(
mOutPixelsAllocation
,
mOutPixelsAllocation
);
Mandelbrot.java
82
int width =
mOutPixelsAllocation
.getType().getX();
83
int height =
mOutPixelsAllocation
.getType().getY();
93
mScript.forEach_rootD(
mOutPixelsAllocation
);
95
mScript.forEach_root(
mOutPixelsAllocation
);
Histogram.java
59
mScript.set_gDest(
mOutPixelsAllocation
);
61
mScript.forEach_clear(
mOutPixelsAllocation
);
80
mScript.forEach_draw(
mOutPixelsAllocation
, lo);
Resize.java
74
mIntrinsic.forEach_bicubic(
mOutPixelsAllocation
);
76
mScript.forEach_bicubic(
mOutPixelsAllocation
);
77
//mScript.forEach_nearest(
mOutPixelsAllocation
);
TestBase.java
36
public Allocation
mOutPixelsAllocation
;
93
mOutPixelsAllocation
= ipact.mProcessor.
mOutPixelsAllocation
;
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Histogram.java
53
mScript.set_gDest(
mOutPixelsAllocation
);
55
mScript.forEach_clear(
mOutPixelsAllocation
);
72
mScript.forEach_draw(
mOutPixelsAllocation
, lo);
Mandelbrot.java
88
int width =
mOutPixelsAllocation
.getType().getX();
89
int height =
mOutPixelsAllocation
.getType().getY();
99
mScript.forEach_rootD(
mOutPixelsAllocation
);
101
mScript.forEach_root(
mOutPixelsAllocation
);
BWFilter.java
31
mScript.forEach_bwFilterKernel(mInPixelsAllocation,
mOutPixelsAllocation
);
Contrast.java
32
mScript.forEach_contrast(mInPixelsAllocation,
mOutPixelsAllocation
);
Exposure.java
32
mScript.forEach_exposure(mInPixelsAllocation,
mOutPixelsAllocation
);
Fisheye.java
124
mScript_approx_relaxed.forEach_root(
mOutPixelsAllocation
);
126
mScript_approx_full.forEach_root(
mOutPixelsAllocation
);
128
mScript_relaxed.forEach_root(
mOutPixelsAllocation
);
130
mScript_full.forEach_root(
mOutPixelsAllocation
);
LevelsV4.java
153
mScriptF.forEach_root4(mInPixelsAllocation,
mOutPixelsAllocation
);
155
mScriptF.forEach_root(mInPixelsAllocation,
mOutPixelsAllocation
);
159
mScriptR.forEach_root4(mInPixelsAllocation,
mOutPixelsAllocation
);
161
mScriptR.forEach_root(mInPixelsAllocation,
mOutPixelsAllocation
);
Shadows.java
32
mScript.forEach_shadowsKernel(mInPixelsAllocation,
mOutPixelsAllocation
);
TestBase.java
45
protected Allocation
mOutPixelsAllocation
;
112
mOutPixelsAllocation
= ipact.
mOutPixelsAllocation
;
139
mOutPixelsAllocation
.copyTo(b);
Vibrance.java
33
mScript.forEach_vibranceKernel(mInPixelsAllocation,
mOutPixelsAllocation
);
Vignette.java
137
mOutPixelsAllocation
);
140
mOutPixelsAllocation
);
143
mOutPixelsAllocation
);
146
mOutPixelsAllocation
);
/frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
TestBase.java
45
protected Allocation
mOutPixelsAllocation
;
72
mOutPixelsAllocation
= ipact.
mOutPixelsAllocation
;
99
mOutPixelsAllocation
.copyTo(b);
/development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsRSActivity.java
64
private Allocation
mOutPixelsAllocation
;
174
mOutPixelsAllocation
= Allocation.createTyped(mRS, mInPixelsAllocation.getType(),
198
mScript.forEach_root(mInPixelsAllocation,
mOutPixelsAllocation
);
199
mOutPixelsAllocation
.ioSend();
216
mOutPixelsAllocation
.setSurface(new Surface(surface));
224
mOutPixelsAllocation
.setSurface(new Surface(surface));
230
mOutPixelsAllocation
.setSurface(null);
Completed in 578 milliseconds
1
2
3
4