Home | History | Annotate | Download | only in common

Lines Matching refs:deInt16

364 inline deInt16 extend11To16WithSign (deInt16 src)
367 return (deInt16)(-(deInt16)extend11To16((deUint16)(-src)));
369 return (deInt16)extend11To16(src);
787 deInt16 value;
790 value = (deInt16)deClamp32(baseCodeword*8 + multiplier*modifier*8, -1023, 1023);
792 value = (deInt16)deClamp32(baseCodeword*8 + modifier, -1023, 1023);
794 *((deInt16*)(dst + dstOffset)) = value;
923 const deInt16* const srcPixel = (deInt16*)&uncompressedBlock[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11];
924 deInt16* const dstPixel = (deInt16*)(dstPtr + y*dstRowPitch + x*dstPixelSize);
965 const deInt16* const srcPixelR = (deInt16*)&uncompressedBlockR[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11];
966 const deInt16* const srcPixelG = (deInt16*)&uncompressedBlockG[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11];
967 deInt16* const dstPixel = (deInt16*)(dstPtr + y*dstRowPitch + x*dstPixelSize);