Lines Matching refs:printf
24 printf("sizeof(Uint8) != 1, instead = %lu\n",
30 printf("sizeof(Uint16) != 2, instead = %lu\n",
36 printf("sizeof(Uint32) != 4, instead = %lu\n",
43 printf("sizeof(Uint64) != 8, instead = %lu\n",
49 printf("WARNING: No 64-bit datatype on this platform\n");
53 printf("All data types are the expected size.\n");
78 printf("Detected a %s endian machine.\n",
88 printf("Actually a %s endian machine!\n",
94 printf("Value 16 = 0x%X, swapped = 0x%X\n", value16, SDL_Swap16(value16));
98 printf("16 bit value swapped incorrectly!\n");
103 printf("Value 32 = 0x%X, swapped = 0x%X\n", value32, SDL_Swap32(value32));
107 printf("32 bit value swapped incorrectly!\n");
114 printf("Value 64 = 0x%I64X, swapped = 0x%I64X\n", value64, SDL_Swap64(value64));
116 printf("Value 64 = 0x%llX, swapped = 0x%llX\n", (unsigned long long) value64, (unsigned long long) SDL_Swap64(value64));
121 printf("64 bit value swapped incorrectly!\n");
133 printf("RDTSC %s\n", SDL_HasRDTSC() ? "detected" : "not detected");
134 printf("MMX %s\n", SDL_HasMMX() ? "detected" : "not detected");
135 printf("MMX Ext %s\n", SDL_HasMMXExt() ? "detected" : "not detected");
136 printf("3DNow %s\n", SDL_Has3DNow() ? "detected" : "not detected");
137 printf("3DNow Ext %s\n", SDL_Has3DNowExt() ? "detected" : "not detected");
138 printf("SSE %s\n", SDL_HasSSE() ? "detected" : "not detected");
139 printf("SSE2 %s\n", SDL_HasSSE2() ? "detected" : "not detected");
140 printf("AltiVec %s\n", SDL_HasAltiVec() ? "detected" : "not detected");
154 printf("This system is running %s\n",