HomeSort by: relevance | last modified time | path
    Searched refs:len_bytes (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/test/ossl_shim/
packeted_bio.cc 185 uint8_t len_bytes[4]; local
186 ret = ReadAll(BIO_next(bio), len_bytes, sizeof(len_bytes));
192 uint32_t len = (len_bytes[0] << 24) | (len_bytes[1] << 16) |
193 (len_bytes[2] << 8) | len_bytes[3];
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-main.c 1565 size_t len_hex, len_bytes, len_units, i, steps, remaining_units; local
1582 len_bytes = len_hex / 2;
1583 len_units = len_bytes / unit_size;
1590 gdb::byte_vector databuf (len_bytes);
1592 for (i = 0; i < len_bytes; ++i)
1612 memcpy (&data[i * len_bytes], &databuf[0], len_bytes);
1615 memcpy (&data[steps * len_bytes], &databuf[0],
  /src/external/gpl3/gdb/dist/gdb/mi/
mi-main.c 1523 size_t len_hex, len_bytes, len_units, i, steps, remaining_units; local
1540 len_bytes = len_hex / 2;
1541 len_units = len_bytes / unit_size;
1548 gdb::byte_vector databuf (len_bytes);
1550 for (i = 0; i < len_bytes; ++i)
1570 memcpy (&data[i * len_bytes], &databuf[0], len_bytes);
1573 memcpy (&data[steps * len_bytes], &databuf[0],

Completed in 24 milliseconds