Searched defs:byte (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/bionic/
H A Dmbstate.cpp40 __LIBC_HIDDEN__ void mbstate_set_byte(mbstate_t* ps, int i, char byte) { argument
41 ps->__seq[i] = static_cast<uint8_t>(byte);
/bionic/linker/
H A Dlinker_sleb128.h35 uint8_t byte; local
41 byte = *current_++;
42 value |= (static_cast<size_t>(byte & 127) << shift);
44 } while (byte & 128);
46 if (shift < size && (byte & 64)) {
/bionic/tools/relocation_packer/src/
H A Dsleb128.cc42 // length. The least significant 7 bits of each byte hold 7 bits of data,
43 // and the most significant bit is set on each byte except the last. The
56 uint8_t byte = value & 127;
63 // The sign bit of byte is second high order bit.
64 const bool sign_bit = byte & 64;
68 byte |= 128;
69 encoding_.push_back(byte);
101 uint8_t byte; local
103 // Loop until we reach a byte with its high order bit clear.
105 byte
[all...]
/bionic/libc/kernel/uapi/linux/
H A Di2c.h74 __u8 byte; member in union:i2c_smbus_data
/bionic/libc/kernel/uapi/asm-mips/asm/
H A Dinst.h1046 unsigned char byte[4]; member in union:mips_instruction

Completed in 208 milliseconds