Searched refs:nibble (Results 1 – 2 of 2) sorted by relevance
1272 Uint8 nibble = src[i]; in LAW_Decode()1273 Uint8 exponent = (nibble & 0x7f) ^ 0x55; in LAW_Decode()1285 dst[i] = nibble & 0x80 ? mantissa : -mantissa; in LAW_Decode()1290 Uint8 nibble = ~src[i]; in LAW_Decode()1291 Sint16 mantissa = nibble & 0xf; in LAW_Decode()1292 Uint8 exponent = (nibble >> 4) & 0x7; in LAW_Decode()1297 dst[i] = nibble & 0x80 ? -mantissa : mantissa; in LAW_Decode()
2235 static unsigned char nibble(char c) in nibble() function2270 *p = (nibble(pchGUID[i]) << 4) | nibble(pchGUID[i+1]); in SDL_JoystickGetGUIDFromString()
Completed in 33 milliseconds