Home | History | Annotate | Download | only in bytestring

Lines Matching defs:byte

224     // For ASN.1 we assume that we'll only need a single byte for the length.
334 // high bit of each byte indicates where there is more data. This is the
344 len_len = 1; // Zero is encoded with one byte.
347 uint8_t byte = (v >> (7 * i)) & 0x7f;
350 byte |= 0x80;
352 if (!CBB_add_u8(cbb, byte)) {
482 uint8_t byte = (value >> 8*(7-i)) & 0xff;
484 if (byte == 0) {
488 // If the high bit is set, add a padding byte to make it
490 if ((byte & 0x80) && !CBB_add_u8(&child, 0)) {
495 if (!CBB_add_u8(&child, byte)) {