Lines Matching refs:_get_triple
84 #define _get_triple(ptr) _get_triple_le(ptr)
89 #define _get_triple(ptr) _get_triple_be(ptr)
388 get16_123_12: sample = _get_triple(src) >> 8; goto GET16_END;
389 get16_123_92: sample = (_get_triple(src) >> 8) ^ 0x8000; goto GET16_END;
392 get16_123_12_20: sample = _get_triple(src) >> 4; goto GET16_END;
393 get16_123_92_20: sample = (_get_triple(src) >> 4) ^ 0x8000; goto GET16_END;
396 get16_123_12_18: sample = _get_triple(src) >> 2; goto GET16_END;
397 get16_123_92_18: sample = (_get_triple(src) >> 2) ^ 0x8000; goto GET16_END;
547 get32_123_1230: sample = _get_triple(src) << 8; goto GET32_END;
548 get32_123_9230: sample = (_get_triple(src) << 8) ^ 0x80000000; goto GET32_END;
551 get32_123_1230_20: sample = _get_triple(src) << 12; goto GET32_END;
552 get32_123_9230_20: sample = (_get_triple(src) << 12) ^ 0x80000000; goto GET32_END;
555 get32_123_1230_18: sample = _get_triple(src) << 14; goto GET32_END;
556 get32_123_9230_18: sample = (_get_triple(src) << 14) ^ 0x80000000; goto GET32_END;
734 #undef _get_triple