Home | History | Annotate | Download | only in crypto

Lines Matching full:num_bytes

178                                          int num_bytes,
180 PrependIntegerImpl(val, num_bytes, data, big_endian_);
184 int num_bytes,
190 tmp.assign(val, val + num_bytes);
198 while (start < (num_bytes - 1) && val[start] == 0x00) {
200 num_bytes--;
202 PrependBytes(val, start, num_bytes, data);
211 num_bytes++;
214 PrependTypeHeaderAndLength(kIntegerTag, num_bytes, data);
280 int num_bytes,
282 while (num_bytes > 0) {
283 --num_bytes;
284 data->push_front(val[start + num_bytes]);
294 uint8 num_bytes = 0;
298 num_bytes++;
300 CHECK_LE(num_bytes, 4);
301 data->push_front(0x80 | num_bytes);
313 int num_bytes,
316 PrependBytes(val, 0, num_bytes, output);
320 PrependLength(num_bytes + 1, output);