Lines Matching defs:byte
9 void print_byte(uint8_t byte)
11 if (32 < byte and byte < 128)
13 std::cout << (char)byte;
17 std::cout << (int)byte;
30 for (auto& byte : v)
32 print_byte(byte);
47 for (auto& byte : v_array)
49 print_byte(byte);
53 for (auto& byte : v_array_size)
55 print_byte(byte);
59 for (auto& byte : v_array_size_and_type)
61 print_byte(byte);