Home | History | Annotate | Download | only in des

Lines Matching refs:ovec

140   uint8_t ovec[16];
171 iv = &ovec[0];
176 /* shift ovec left most of the bits... */
177 memmove(ovec, ovec + num / 8, 8 + (num % 8 ? 1 : 0));
181 ovec[i] <<= num % 8;
182 ovec[i] |= ovec[i + 1] >> (8 - num % 8);
185 iv = &ovec[0];
207 iv = &ovec[0];
212 /* shift ovec left most of the bits... */
213 memmove(ovec, ovec + num / 8, 8 + (num % 8 ? 1 : 0));
217 ovec[i] <<= num % 8;
218 ovec[i] |= ovec[i + 1] >> (8 - num % 8);
221 iv = &ovec[0];