Searched refs:DC8_NEON (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/dsp/ |
D | dec_neon.c | 1423 static WEBP_INLINE void DC8_NEON(uint8_t* dst, int do_top, int do_left) { in DC8_NEON() function 1474 static void DC8uv_NEON(uint8_t* dst) { DC8_NEON(dst, 1, 1); } in DC8uv_NEON() 1475 static void DC8uvNoTop_NEON(uint8_t* dst) { DC8_NEON(dst, 0, 1); } in DC8uvNoTop_NEON() 1476 static void DC8uvNoLeft_NEON(uint8_t* dst) { DC8_NEON(dst, 1, 0); } in DC8uvNoLeft_NEON() 1477 static void DC8uvNoTopLeft_NEON(uint8_t* dst) { DC8_NEON(dst, 0, 0); } in DC8uvNoTopLeft_NEON()
|