Lines Matching refs:float4

70 static inline float4 __attribute__((overloadable))
107 static inline float4 __attribute__((overloadable))
111 float4 r = {p[x], p[x+1], p[x+2], p[x+3]};
127 static float4 __attribute__((overloadable))
134 float4 ret = {0.f, 0.f, 0.f, r};
137 static float4 __attribute__((overloadable))
144 float4 ret = {r, r, r, 1.f};
147 static float4 __attribute__((overloadable))
154 float4 ret = {r.x, r.x, r.x, r.y};
157 static float4 __attribute__((overloadable))
164 float4 ret = {r.x, r.x, r.z, 1.f};
167 static float4 __attribute__((overloadable))
174 float4 ret = {r.x, r.x, r.z, 1.f};
177 static float4 __attribute__((overloadable))
180 float4 p0 = getElementAt4(p, iPixel);
181 float4 p1 = getElementAt4(p, next);
182 float4 r = p0 * w0 + p1 * w1;
188 static float4 __attribute__((overloadable))
198 float4 ret = {0.f, 0.f, 0.f, r};
201 static float4 __attribute__((overloadable))
211 float4 ret = {r, r, r, 1.f};
214 static float4 __attribute__((overloadable))
224 float4 ret = {r.x, r.x, r.x, r.y};
227 static float4 __attribute__((overloadable))
231 float4 p0 = getElementAt4(p, stride, locX, locY);
232 float4 p1 = getElementAt4(p, stride, nextX, locY);
233 float4 p2 = getElementAt4(p, stride, locX, nextY);
234 float4 p3 = getElementAt4(p, stride, nextX, nextY);
235 float4 r = p0 * w0 + p1 * w1 + p2 * w2 + p3 * w3;
237 float4 ret = {r.x, r.y, r.z, 1.f};
240 static float4 __attribute__((overloadable))
244 float4 p0 = getElementAt4(p, stride, locX, locY);
245 float4 p1 = getElementAt4(p, stride, nextX, locY);
246 float4 p2 = getElementAt4(p, stride, locX, nextY);
247 float4 p3 = getElementAt4(p, stride, nextX, nextY);
248 float4 r = p0 * w0 + p1 * w1 + p2 * w2 + p3 * w3;
252 static float4 __attribute__((overloadable))
262 float4 ret;
268 static float4 __attribute__((overloadable))
318 static float4 __attribute__((overloadable))
348 static float4 __attribute__((overloadable))
354 float4 result = {0.f, 0.f, 0.f, 255.f};
385 static float4 __attribute__((overloadable))
392 float4 result = {0.f, 0.f, 0.f, 255.f};
421 static float4 __attribute__((overloadable))
453 static float4 __attribute__((overloadable))
466 static float4 __attribute__((overloadable))
514 static float4 __attribute__((overloadable))
534 extern const float4 __attribute__((overloadable))
571 float4 sample0 = sample_LOD_LinearPixel(alloc, dk, dt, wrapS, uv, lod0);
572 float4 sample1 = sample_LOD_LinearPixel(alloc, dk, dt, wrapS, uv, lod1);
580 extern const float4 __attribute__((overloadable))
586 extern const float4 __attribute__((overloadable))
624 float4 sample0 = sample_LOD_LinearPixel(alloc, dk, dt, wrapS, wrapT, uv, lod0);
625 float4 sample1 = sample_LOD_LinearPixel(alloc, dk, dt, wrapS, wrapT, uv, lod1);
633 extern const float4 __attribute__((overloadable))