Lines Matching refs:ovec
101 unsigned char ovec[16];
131 iv = &ovec[0];
136 /* shift ovec left most of the bits... */
137 memmove(ovec, ovec + num / 8, 8 + (num % 8 ? 1 : 0));
141 ovec[i] <<= num % 8;
142 ovec[i] |= ovec[i + 1] >> (8 - num % 8);
144 iv = &ovec[0];
168 iv = &ovec[0];
173 /* shift ovec left most of the bits... */
174 memmove(ovec, ovec + num / 8, 8 + (num % 8 ? 1 : 0));
178 ovec[i] <<= num % 8;
179 ovec[i] |= ovec[i + 1] >> (8 - num % 8);
181 iv = &ovec[0];