OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:baseCoord
(Results
1 - 5
of
5
) sorted by null
/frameworks/rs/cpu_ref/
rsCpuIntrinsic3DLUT.cpp
101
int4
baseCoord
= convert_int4(*in) * coordMul;
102
int4 coord1 =
baseCoord
>> (int4)15;
105
int4 weight2 =
baseCoord
& 0x7fff;
141
ALOGE("
baseCoord
%08x %08x %08x %08x",
baseCoord
.x,
baseCoord
.y,
baseCoord
.z,
baseCoord
.w);
/cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_3dlut.rs
33
float4
baseCoord
= convert_float4(in) * gCoordMul;
34
int4 coord1 = convert_int4(floor(
baseCoord
));
36
float4 f =
baseCoord
- convert_float4(coord1);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
colorcube.rs
38
int4
baseCoord
= convert_int4(in) * gCoordMul;
39
int4 coord1 =
baseCoord
>> (int4)16;
42
int4 weight2 =
baseCoord
& 0xffff;
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
colorcube.rs
38
int4
baseCoord
= convert_int4(in) * gCoordMul;
39
int4 coord1 =
baseCoord
>> (int4)16;
42
int4 weight2 =
baseCoord
& 0xffff;
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
colorcube.rs
38
int4
baseCoord
= convert_int4(in) * gCoordMul;
39
int4 coord1 =
baseCoord
>> (int4)16;
42
int4 weight2 =
baseCoord
& 0xffff;
Completed in 513 milliseconds