• Home
  • Raw
  • Download

Lines Matching refs:deInt16

465 inline deInt16 extend11To16WithSign (deInt16 src)  in extend11To16WithSign()
468 return (deInt16)(-(deInt16)extend11To16((deUint16)(-src))); in extend11To16WithSign()
470 return (deInt16)extend11To16(src); in extend11To16WithSign()
888 deInt16 value; in decompressEAC11Block()
891 value = (deInt16)deClamp32(baseCodeword*8 + multiplier*modifier*8, -1023, 1023); in decompressEAC11Block()
893 value = (deInt16)deClamp32(baseCodeword*8 + modifier, -1023, 1023); in decompressEAC11Block()
895 *((deInt16*)(dst + dstOffset)) = value; in decompressEAC11Block()
1024 …const deInt16* const srcPixel = (deInt16*)&uncompressedBlock[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPR… in decompressEAC_R11()
1025 deInt16* const dstPixel = (deInt16*)(dstPtr + y*dstRowPitch + x*dstPixelSize); in decompressEAC_R11()
1066 …const deInt16* const srcPixelR = (deInt16*)&uncompressedBlockR[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOM… in decompressEAC_RG11()
1067 …const deInt16* const srcPixelG = (deInt16*)&uncompressedBlockG[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOM… in decompressEAC_RG11()
1068 deInt16* const dstPixel = (deInt16*)(dstPtr + y*dstRowPitch + x*dstPixelSize); in decompressEAC_RG11()
1467 inline deInt16 finishUnquantize (deInt32 x, bool hasSign) in finishUnquantize()
1484 return (deInt16)x; in finishUnquantize()
2188 …const deInt16 r16 = finishUnquantize(interpolate(endpointStartR, endpointEndR, colorIndex, colo… in decompressBc6H()
2189 …const deInt16 g16 = finishUnquantize(interpolate(endpointStartG, endpointEndG, colorIndex, colo… in decompressBc6H()
2190 …const deInt16 b16 = finishUnquantize(interpolate(endpointStartB, endpointEndB, colorIndex, colo… in decompressBc6H()
2193 deInt16* const dstPixel = (deInt16*)(dstPtr + y * dstRowPitch + x * dstPixelSize); in decompressBc6H()