Lines Matching refs:BUFFER_SIZE
32 #define BUFFER_SIZE (WIDTH_PADDED * HEIGHT)
58 LOCAL_ALIGNED_32(type, src_r0, [BUFFER_SIZE]); \
59 LOCAL_ALIGNED_32(type, src_g0, [BUFFER_SIZE]); \
60 LOCAL_ALIGNED_32(type, src_b0, [BUFFER_SIZE]); \
61 LOCAL_ALIGNED_32(type, src_r1, [BUFFER_SIZE]); \
62 LOCAL_ALIGNED_32(type, src_g1, [BUFFER_SIZE]); \
63 LOCAL_ALIGNED_32(type, src_b1, [BUFFER_SIZE]); \
67 memset(src_r0, 0, BUFFER_SIZE * sizeof(type)); \
68 memset(src_g0, 0, BUFFER_SIZE * sizeof(type)); \
69 memset(src_b0, 0, BUFFER_SIZE * sizeof(type)); \
73 memcpy(src_r1, src_r0, BUFFER_SIZE * sizeof(type)); \
74 memcpy(src_g1, src_g0, BUFFER_SIZE * sizeof(type)); \
75 memcpy(src_b1, src_b0, BUFFER_SIZE * sizeof(type)); \