Lines Matching full:num_bytes
176 int num_bytes,
178 PrependIntegerImpl(val, num_bytes, data, big_endian_);
182 int num_bytes,
188 tmp.assign(val, val + num_bytes);
196 while (start < (num_bytes - 1) && val[start] == 0x00) {
198 num_bytes--;
200 PrependBytes(val, start, num_bytes, data);
209 num_bytes++;
212 PrependTypeHeaderAndLength(kIntegerTag, num_bytes, data);
276 int num_bytes,
278 while (num_bytes > 0) {
279 --num_bytes;
280 data->push_front(val[start + num_bytes]);
290 uint8_t num_bytes = 0;
294 num_bytes++;
296 CHECK_LE(num_bytes, 4);
297 data->push_front(0x80 | num_bytes);
310 int num_bytes,
313 PrependBytes(val, 0, num_bytes, output);
317 PrependLength(num_bytes + 1, output);