Lines Matching defs:uint

941 	    GLuint uint[BOX2];
943 uint[0]= __GLU_SWAP_4_BYTES(src);
944 uint[1]= __GLU_SWAP_4_BYTES(src+group_size);
947 uint[0]= *(const GLuint*)src;
948 uint[1]= *(const GLuint*)(src+group_size);
950 *dest= ((double)uint[0]+(double)uint[1])/2.0;
973 GLuint uint[BOX2];
975 uint[0]= __GLU_SWAP_4_BYTES(src);
976 uint[1]= __GLU_SWAP_4_BYTES(src+ysize);
979 uint[0]= *(const GLuint*)src;
980 uint[1]= *(const GLuint*)(src+ysize);
982 *dest= ((double)uint[0]+(double)uint[1])/2.0;
1087 GLuint uint[BOX2];
1089 uint[0]= __GLU_SWAP_4_BYTES(src);
1090 uint[1]= __GLU_SWAP_4_BYTES(src+group_size);
1093 uint[0]= *(const GLuint*)src;
1094 uint[1]= *(const GLuint*)(src+group_size);
1096 *dest= ((float)uint[0]+(float)uint[1])/2.0;
1119 GLuint uint[BOX2];
1121 uint[0]= __GLU_SWAP_4_BYTES(src);
1122 uint[1]= __GLU_SWAP_4_BYTES(src+ysize);
1125 uint[0]= *(const GLuint*)src;
1126 uint[1]= *(const GLuint*)(src+ysize);
1128 *dest= ((float)uint[0]+(float)uint[1])/2.0;
5824 GLuint uint;
5827 uint= __GLU_SWAP_4_BYTES(packedPixel);
5830 uint= *(const GLuint *)packedPixel;
5839 extractComponents[0]= (float)((uint & 0xff000000) >> 24) / 255.0;
5840 extractComponents[1]= (float)((uint & 0x00ff0000) >> 16) / 255.0;
5841 extractComponents[2]= (float)((uint & 0x0000ff00) >> 8) / 255.0;
5842 extractComponents[3]= (float)((uint & 0x000000ff) ) / 255.0;
5872 GLuint uint;
5875 uint= __GLU_SWAP_4_BYTES(packedPixel);
5878 uint= *(const GLuint *)packedPixel;
5887 extractComponents[0]= (float)((uint & 0x000000FF) ) / 255.0;
5888 extractComponents[1]= (float)((uint & 0x0000FF00) >> 8) / 255.0;
5889 extractComponents[2]= (float)((uint & 0x00FF0000) >> 16) / 255.0;
5890 extractComponents[3]= (float)((uint & 0xFF000000) >> 24) / 255.0;
5920 GLuint uint;
5923 uint= __GLU_SWAP_4_BYTES(packedPixel);
5926 uint= *(const GLuint *)packedPixel;
5935 extractComponents[0]= (float)((uint & 0xffc00000) >> 22) / 1023.0;
5936 extractComponents[1]= (float)((uint & 0x003ff000) >> 12) / 1023.0;
5937 extractComponents[2]= (float)((uint & 0x00000ffc) >> 2) / 1023.0;
5938 extractComponents[3]= (float)((uint & 0x00000003) ) / 3.0;
5969 GLuint uint;
5972 uint= __GLU_SWAP_4_BYTES(packedPixel);
5975 uint= *(const GLuint *)packedPixel;
5984 extractComponents[0]= (float)((uint & 0x000003FF) ) / 1023.0;
5985 extractComponents[1]= (float)((uint & 0x000FFC00) >> 10) / 1023.0;
5986 extractComponents[2]= (float)((uint & 0x3FF00000) >> 20) / 1023.0;
5987 extractComponents[3]= (float)((uint & 0xC0000000) >> 30) / 3.0;
8597 GLuint uint;
8600 uint= __GLU_SWAP_4_BYTES(uitem);
8603 uint= *(const GLuint *)uitem;
8606 assert(uint <= 0xffffffff);
8608 return (GLdouble)uint;