Home | History | Annotate | Download | only in util

Lines Matching refs:DST

654 #define COPY_4V( DST, SRC )         \
656 (DST)[0] = (SRC)[0]; \
657 (DST)[1] = (SRC)[1]; \
658 (DST)[2] = (SRC)[2]; \
659 (DST)[3] = (SRC)[3]; \
665 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC)
670 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
672 (DST)[0] = (V0); \
673 (DST)[1] = (V1); \
674 (DST)[2] = (V2); \
675 (DST)[3] = (V3); \