Home | History | Annotate | Download | only in include

Lines Matching refs:v32

135   tmp = x->v32[3] + y->v32[3];                  \
136 z->v32[3] = (uint32_t) tmp; \
138 tmp = x->v32[2] + y->v32[2] + (tmp >> 32); \
139 z->v32[2] = (uint32_t) tmp; \
141 tmp = x->v32[1] + y->v32[1] + (tmp >> 32); \
142 z->v32[1] = (uint32_t) tmp; \
144 tmp = x->v32[0] + y->v32[0] + (tmp >> 32); \
145 z->v32[0] = (uint32_t) tmp; \
153 tmp = htonl(x->v32[3]) + htonl(y->v32[3]); \
154 z->v32[3] = ntohl((uint32_t) tmp); \
156 tmp = htonl(x->v32[2]) + htonl(y->v32[2]) \
158 z->v32[2] = ntohl((uint32_t) tmp); \
160 tmp = htonl(x->v32[1]) + htonl(y->v32[1]) \
162 z->v32[1] = ntohl((uint32_t) tmp); \
164 tmp = htonl(x->v32[0]) + htonl(y->v32[0]) \
166 z->v32[0] = ntohl((uint32_t) tmp); \