Searched defs:raw_bytes (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_logo.h13 static unsigned char raw_bytes[] = { variable
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dbase16.c49 const uint8_t *raw_bytes = raw; local
54 sprintf ( encoded_bytes, "%02x", *(raw_bytes++) );
78 uint8_t *raw_bytes = raw; local
91 *(raw_bytes++) = strtoul ( buf, &endp, 16 );
99 len = ( raw_bytes - raw );
H A Dbase64.c53 const uint8_t *raw_bytes = ( ( const uint8_t * ) raw ); local
60 tmp = ( ( raw_bytes[ bit / 8 ] << ( bit % 8 ) ) |
61 ( raw_bytes[ bit / 8 + 1 ] >> ( 8 - ( bit % 8 ) ) ) );
90 uint8_t *raw_bytes = ( ( uint8_t * ) raw ); local
136 raw_bytes[ bit / 8 ] |= ( decoded >> ( bit % 8 ) );
137 raw_bytes[ bit / 8 + 1 ] |= ( decoded << ( 8 - ( bit % 8 ) ) );

Completed in 83 milliseconds