Lines Matching refs:deInt32
865 const deInt32 multiplier = (deInt32)getBits(src, 52, 55); in decompressEAC11Block()
866 const deInt32 tableNdx = (deInt32)getBits(src, 48, 51); in decompressEAC11Block()
867 deInt32 baseCodeword = (deInt32)getBits(src, 56, 63); in decompressEAC11Block()
1408 inline deInt32 signExtend (deInt32 value, deInt32 srcBits, deInt32 dstBits) in signExtend()
1414 deInt32 dstMask = (deInt32)(((deUint64)1 << dstBits) - 1); in signExtend()
1415 deInt32 extendedBits = 0xffffffff << srcBits; in signExtend()
1419 inline deInt32 unquantize (deInt32 x, int mode, bool hasSign) in unquantize()
1435 else if (x >= (((deInt32)1 << (epBits[mode] - 1)) - 1)) in unquantize()
1438 x = (((deInt32)x << 15) + 0x4000) >> (epBits[mode] - 1); in unquantize()
1451 else if (x == (((deInt32)1 << epBits[mode]) - 1)) in unquantize()
1454 return ((((deInt32)x << 15) + 0x4000) >> (epBits[mode] - 1)); in unquantize()
1458 inline deInt32 interpolate (deInt32 a, deInt32 b, deUint32 index, deUint32 indexPrecision) in interpolate()
1467 inline deInt16 finishUnquantize (deInt32 x, bool hasSign) in finishUnquantize()
1504 const deInt32 indices[16] = in decompressBc1()
1556 const deInt32 indices[16] = in decompressBc2()
1576 const deInt32 alphas[16] = in decompressBc2()
1631 const deInt32 indices[16] = in decompressBc3()
1651 const deInt32 alphaIndices[16] = in decompressBc3()
1653 (deInt32)((alphaBits >> 0) & 0x7), in decompressBc3()
1654 (deInt32)((alphaBits >> 3) & 0x7), in decompressBc3()
1655 (deInt32)((alphaBits >> 6) & 0x7), in decompressBc3()
1656 (deInt32)((alphaBits >> 9) & 0x7), in decompressBc3()
1657 (deInt32)((alphaBits >> 12) & 0x7), in decompressBc3()
1658 (deInt32)((alphaBits >> 15) & 0x7), in decompressBc3()
1659 (deInt32)((alphaBits >> 18) & 0x7), in decompressBc3()
1660 (deInt32)((alphaBits >> 21) & 0x7), in decompressBc3()
1661 (deInt32)((alphaBits >> 24) & 0x7), in decompressBc3()
1662 (deInt32)((alphaBits >> 27) & 0x7), in decompressBc3()
1663 (deInt32)((alphaBits >> 30) & 0x7), in decompressBc3()
1664 (deInt32)((alphaBits >> 33) & 0x7), in decompressBc3()
1665 (deInt32)((alphaBits >> 36) & 0x7), in decompressBc3()
1666 (deInt32)((alphaBits >> 39) & 0x7), in decompressBc3()
1667 (deInt32)((alphaBits >> 42) & 0x7), in decompressBc3()
1668 (deInt32)((alphaBits >> 45) & 0x7) in decompressBc3()
1719 const deInt32 indices[16] = in decompressBc4()
1721 (deInt32)((indexBits >> 0) & 0x7), in decompressBc4()
1722 (deInt32)((indexBits >> 3) & 0x7), in decompressBc4()
1723 (deInt32)((indexBits >> 6) & 0x7), in decompressBc4()
1724 (deInt32)((indexBits >> 9) & 0x7), in decompressBc4()
1725 (deInt32)((indexBits >> 12) & 0x7), in decompressBc4()
1726 (deInt32)((indexBits >> 15) & 0x7), in decompressBc4()
1727 (deInt32)((indexBits >> 18) & 0x7), in decompressBc4()
1728 (deInt32)((indexBits >> 21) & 0x7), in decompressBc4()
1729 (deInt32)((indexBits >> 24) & 0x7), in decompressBc4()
1730 (deInt32)((indexBits >> 27) & 0x7), in decompressBc4()
1731 (deInt32)((indexBits >> 30) & 0x7), in decompressBc4()
1732 (deInt32)((indexBits >> 33) & 0x7), in decompressBc4()
1733 (deInt32)((indexBits >> 36) & 0x7), in decompressBc4()
1734 (deInt32)((indexBits >> 39) & 0x7), in decompressBc4()
1735 (deInt32)((indexBits >> 42) & 0x7), in decompressBc4()
1736 (deInt32)((indexBits >> 45) & 0x7) in decompressBc4()
1823 deInt32 mode = extractModeBc6(src[0]); in decompressBc6H()
2182 const deInt32 endpointStartR = r[2 * subsetIndex]; in decompressBc6H()
2183 const deInt32 endpointEndR = r[2 * subsetIndex + 1]; in decompressBc6H()
2184 const deInt32 endpointStartG = g[2 * subsetIndex]; in decompressBc6H()
2185 const deInt32 endpointEndG = g[2 * subsetIndex + 1]; in decompressBc6H()
2186 const deInt32 endpointStartB = b[2 * subsetIndex]; in decompressBc6H()
2187 const deInt32 endpointEndB = b[2 * subsetIndex + 1]; in decompressBc6H()
2191 const deInt32 y = i / 4; in decompressBc6H()
2192 const deInt32 x = i % 4; in decompressBc6H()
2238 const deInt32 mode = extractModeBc7(src[0]); in decompressBc7()