Lines Matching refs:float3
38 static float3 getFrom565(uint16_t color) { in getFrom565()
39 float3 result; in getFrom565()
62 static inline float3 __attribute__((overloadable))
65 float3 r = {p[x], p[x+1], p[x+2]}; in getElementAt3()
76 static inline float3 __attribute__((overloadable))
79 float3 r = getFrom565(((const uint16_t *)p)[0]); in getElementAt565()
98 static inline float3 __attribute__((overloadable))
102 float3 r = {p[x], p[x+1], p[x+2]}; in getElementAt3()
114 static inline float3 __attribute__((overloadable))
118 float3 r = getFrom565(((const uint16_t *)p)[0]); in getElementAt565()
159 float3 p0 = getElementAt3(p, iPixel); in getSample_RGB()
160 float3 p1 = getElementAt3(p, next); in getSample_RGB()
161 float3 r = p0 * w0 + p1 * w1; in getSample_RGB()
169 float3 p0 = getElementAt565(p, iPixel); in getSample_565()
170 float3 p1 = getElementAt565(p, next); in getSample_565()
171 float3 r = p0 * w0 + p1 * w1; in getSample_565()
255 float3 p0 = getElementAt565(p, stride, locX, locY); in getSample_565()
256 float3 p1 = getElementAt565(p, stride, nextX, locY); in getSample_565()
257 float3 p2 = getElementAt565(p, stride, locX, nextY); in getSample_565()
258 float3 p3 = getElementAt565(p, stride, nextX, nextY); in getSample_565()
259 float3 r = p0 * w0 + p1 * w1 + p2 * w2 + p3 * w3; in getSample_565()