OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vec_s
(Results
1 - 2
of
2
) sorted by null
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
yuv2rgb_converter.c
137
vector float
vec_s
= spu_splats(s);
local
138
vector unsigned int select_1 = spu_cmpgt(vec_0_1,
vec_s
);
139
vec_s
= spu_sel(
vec_s
, vec_0_1, select_1);
141
vector unsigned int select_2 = spu_cmpgt(
vec_s
, vec_255);
142
vec_s
= spu_sel(
vec_s
, vec_255, select_2);
143
return (unsigned char) spu_extract(
vec_s
,0);
153
* @param
vec_s
float vector for conversion
156
inline static vector unsigned int vfloat_to_vuint(vector float
vec_s
) {
[
all
...]
bilin_scaler.c
110
* @param
vec_s
float vector for conversion
113
inline static vector unsigned int vfloat_to_vuint(vector float
vec_s
) {
114
vector unsigned int select_1 = spu_cmpgt(vec_0_1,
vec_s
);
115
vec_s
= spu_sel(
vec_s
, vec_0_1, select_1);
117
vector unsigned int select_2 = spu_cmpgt(
vec_s
, vec_255);
118
vec_s
= spu_sel(
vec_s
, vec_255, select_2);
119
return spu_convtu(
vec_s
,0);
[
all
...]
Completed in 31 milliseconds