Lines Matching refs:w

62 SDL_FillRect##bpp##SSE(Uint8 *pixels, int pitch, Uint32 color, int w, int h) \
70 n = w * bpp; \
100 SDL_FillRect1SSE(Uint8 *pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect1SSE() argument
107 n = w; in SDL_FillRect1SSE()
135 SDL_FillRect1(Uint8 * pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect1() argument
141 n = w; in SDL_FillRect1()
174 SDL_FillRect2(Uint8 * pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect2() argument
180 n = w; in SDL_FillRect2()
198 SDL_FillRect3(Uint8 * pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect3() argument
213 n = w; in SDL_FillRect3()
226 SDL_FillRect4(Uint8 * pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect4() argument
229 SDL_memset4(pixels, color, w); in SDL_FillRect4()
257 void FillRect8ARMNEONAsm(int32_t w, int32_t h, uint8_t *dst, int32_t dst_stride, uint8_t src);
258 void FillRect16ARMNEONAsm(int32_t w, int32_t h, uint16_t *dst, int32_t dst_stride, uint16_t src);
259 void FillRect32ARMNEONAsm(int32_t w, int32_t h, uint32_t *dst, int32_t dst_stride, uint32_t src);
261 static void fill_8_neon(Uint8 * pixels, int pitch, Uint32 color, int w, int h) { in fill_8_neon() argument
262 FillRect8ARMNEONAsm(w, h, (uint8_t *) pixels, pitch >> 0, color); in fill_8_neon()
266 static void fill_16_neon(Uint8 * pixels, int pitch, Uint32 color, int w, int h) { in fill_16_neon() argument
267 FillRect16ARMNEONAsm(w, h, (uint16_t *) pixels, pitch >> 1, color); in fill_16_neon()
271 static void fill_32_neon(Uint8 * pixels, int pitch, Uint32 color, int w, int h) { in fill_32_neon() argument
272 FillRect32ARMNEONAsm(w, h, (uint32_t *) pixels, pitch >> 2, color); in fill_32_neon()
278 void FillRect8ARMSIMDAsm(int32_t w, int32_t h, uint8_t *dst, int32_t dst_stride, uint8_t src);
279 void FillRect16ARMSIMDAsm(int32_t w, int32_t h, uint16_t *dst, int32_t dst_stride, uint16_t src);
280 void FillRect32ARMSIMDAsm(int32_t w, int32_t h, uint32_t *dst, int32_t dst_stride, uint32_t src);
282 static void fill_8_simd(Uint8 * pixels, int pitch, Uint32 color, int w, int h) { in fill_8_simd() argument
283 FillRect8ARMSIMDAsm(w, h, (uint8_t *) pixels, pitch >> 0, color); in fill_8_simd()
287 static void fill_16_simd(Uint8 * pixels, int pitch, Uint32 color, int w, int h) { in fill_16_simd() argument
288 FillRect16ARMSIMDAsm(w, h, (uint16_t *) pixels, pitch >> 1, color); in fill_16_simd()
292 static void fill_32_simd(Uint8 * pixels, int pitch, Uint32 color, int w, int h) { in fill_32_simd() argument
293 FillRect32ARMSIMDAsm(w, h, (uint32_t *) pixels, pitch >> 2, color); in fill_32_simd()
305 void (*fill_function)(Uint8 * pixels, int pitch, Uint32 color, int w, int h) = NULL; in SDL_FillRects()
421 fill_function(pixels, dst->pitch, color, rect->w, rect->h); in SDL_FillRects()