Home | History | Annotate | Download | only in util

Lines Matching refs:DST

728 #define COPY_4V( DST, SRC )         \
730 (DST)[0] = (SRC)[0]; \
731 (DST)[1] = (SRC)[1]; \
732 (DST)[2] = (SRC)[2]; \
733 (DST)[3] = (SRC)[3]; \
739 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC)
744 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
746 (DST)[0] = (V0); \
747 (DST)[1] = (V1); \
748 (DST)[2] = (V2); \
749 (DST)[3] = (V3); \