Searched refs:byte (Results 76 - 85 of 85) sorted by relevance

1234

/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex167 A general remark regarding the byte ordering: Resources have no standard
540 into four byte blocks, which are interpreted as big endian unsigned words
543 bytes of a big endian unsigned word (the upper byte(s) set to 0).
565 \item{The third and fourth byte of the x86 resource file magic (the 0 bytes)
/haiku/src/kits/network/libnetapi/
H A DNetworkAddress.cpp1005 uint8 *byte = LinkLevelAddress(); local
1018 int bytesWritten = snprintf(target, bytesLeft, "%02x", byte[i]);
/haiku/src/add-ons/kernel/drivers/network/ether/broadcom570x/dev/bge/
H A Dif_bge.c969 uint32_t access, byte = 0; local
1002 byte = CSR_READ_4(sc, BGE_NVRAM_RDDATA);
1004 *dest = (bswap32(byte) >> ((addr % 4) * 8)) & 0xFF;
1023 uint8_t byte = 0; local
1029 err = bge_nvram_getbyte(sc, off + i, &byte);
1032 *(dest + i) = byte;
1039 * Read a byte of data stored in the EEPROM at address 'addr.' The
1048 uint32_t byte = 0; local
1077 byte = CSR_READ_4(sc, BGE_EE_DATA);
1079 *dest = (byte >> ((add
1091 uint8_t byte = 0; local
[all...]
/haiku/headers/private/audio/
H A Dsoundcard.h212 * The least significant byte has the same format than the GUS .PAT
302 * are records of 4 or 8 bytes. The first byte defines the size.
309 * 8 byte events also. If you receive any event having first byte >= 128,
310 * it's a 8 byte event.
315 * There is also a 8 byte version of most of the 4 byte events. The
316 * 8 byte one is recommended.
318 * NOTE! All 4 byte events are now obsolete. Applications should not write
319 * them. However 4 byte event
[all...]
/haiku/src/kits/tracker/
H A DUtilities.cpp955 uint8 byte = 0; local
960 || message->FindInt8("byte", (int8*)&byte) != B_OK
1255 } else if (strstr(buffer, "byte") || strstr(buffer, "BYTE")) {
1259 // no suffix, try plain byte conversion
/haiku/src/add-ons/kernel/drivers/network/wlan/aironetwifi/dev/an/
H A Dif_an.c3025 * Note: the Aironet only has a single byte of signal strength value
3624 flashpchar(struct ifnet *ifp, int byte, int dwelltime) argument
3630 byte |= 0x8000;
3659 * Port is clear now write byte and wait for it to echo back
3662 CSR_WRITE_2(sc, AN_SW0(sc->mpi350), byte);
3666 } while (dwelltime >= 0 && echo != byte);
3671 return echo == byte;
/haiku/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dmkntfs.c233 #undef byte macro
236 #define byte u8 macro
239 static uint64_t crc64(uint64_t crc, const byte * data, size_t size)
419 int j; /* byte number */
430 /* initial partial byte, if any */
440 /* final partial byte, if any */
687 * @size: byte size to make available at this position
711 ntfs_log_error("make_room_for_attribute() received non 8-byte aligned "
1207 /* Mapping pairs array and next attribute must be 8-byte aligned. */
1409 /* Mapping pairs array and next attribute must be 8-byte aligne
[all...]
/haiku/src/kits/network/libnetservices2/
H A DHttpSession.cpp997 [this, &bytesWrittenToBody](const std::byte* buffer, size_t size) {
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A De1000_ich8lan.c141 u32 offset, u8 byte);
684 /* flash_base_addr is byte-aligned */
2028 /* HW expects these in little endian so we reverse the byte order
2098 /* HW expects these in little endian so we reverse the byte order
3417 * Reads signature byte from the NVM using the flash access registers.
3849 * e1000_read_flash_byte_ich8lan - Read byte from flash
3851 * @offset: The offset of the byte to read.
3852 * @data: Pointer to a byte to store the value read.
3854 * Reads a single byte from the NVM using the flash access registers.
3879 * e1000_read_flash_data_ich8lan - Read byte o
4689 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset, u8 byte) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dencodings.cpp33 #define BEGINS_UTF8CHAR(byte) (((byte) & 0xc0) != 0x80)

Completed in 114 milliseconds

1234