Home
last modified time | relevance | path

Searched refs:dstUShort (Results 1 – 1 of 1) sorted by relevance

/external/deqp/external/openglcts/modules/common/
DglcInternalformatTests.cpp567 short* dstUShort = reinterpret_cast<short*>(dst); in convertShort() local
571 dstUShort[i] = static_cast<short>(c * 32768 - 1); in convertShort()
577 unsigned short* dstUShort = reinterpret_cast<unsigned short*>(dst); in convertUShort() local
581 dstUShort[i] = static_cast<unsigned short>(c * 65535u); in convertUShort()
623 unsigned short* dstUShort = reinterpret_cast<unsigned short*>(dst); in convertUShort_4_4_4_4() local
630 dstUShort[0] = (r & 0xF000) | (g & 0x0F00) | (b & 0x00F0) | (a & 0x000F); in convertUShort_4_4_4_4()
635 unsigned short* dstUShort = reinterpret_cast<unsigned short*>(dst); in convertUShort_5_5_5_1() local
642 dstUShort[0] = (r & 0xF800) | (g & 0x07c0) | (b & 0x003e) | (a & 0x0001); in convertUShort_5_5_5_1()
647 unsigned short* dstUShort = reinterpret_cast<unsigned short*>(dst); in convertUShort_5_6_5() local
653 dstUShort[0] = (r & 0xF800) | (g & 0x07e0) | (b & 0x001f); in convertUShort_5_6_5()