Lines Matching refs:SDL_CPUName

628     static char SDL_CPUName[48];  in SDL_GetCPUName()  local
630 if (!SDL_CPUName[0]) { in SDL_GetCPUName()
639 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
640 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
641 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
642 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
643 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
644 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
645 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
646 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
647 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
648 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
649 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
650 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
651 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
652 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
653 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
654 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
656 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
657 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
658 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
659 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
660 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
661 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
662 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
663 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
664 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
665 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
666 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
667 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
668 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
669 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
670 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
671 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
673 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
674 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
675 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
676 SDL_CPUName[i++] = (char)(a & 0xff); a >>= 8; in SDL_GetCPUName()
677 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
678 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
679 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
680 SDL_CPUName[i++] = (char)(b & 0xff); b >>= 8; in SDL_GetCPUName()
681 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
682 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
683 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
684 SDL_CPUName[i++] = (char)(c & 0xff); c >>= 8; in SDL_GetCPUName()
685 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
686 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
687 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
688 SDL_CPUName[i++] = (char)(d & 0xff); d >>= 8; in SDL_GetCPUName()
691 if (!SDL_CPUName[0]) { in SDL_GetCPUName()
692 SDL_strlcpy(SDL_CPUName, "Unknown", sizeof(SDL_CPUName)); in SDL_GetCPUName()
695 return SDL_CPUName; in SDL_GetCPUName()