-
#define MASK_width 32
#define MASK_height 32
static unsigned char MASK_bits[] = {
0xf0,0xff,0x3f,0x00,0xf0,0xff,0x7f,0x00,0xf0,0xff,0xff,0x00,0xf0,0xff,0xff,
0x01,0xf0,0xff,0xff,0x03,0xf0,0xff,0xff,
http://www.codebf.com/read/163840/5508090
-
#define teddy_width 32
#define teddy_height 32
static char teddy_bits[] = {
0xf0, 0xff, 0x3f, 0x00, 0x10, 0x00, 0x60, 0x00, 0x10, 0x00, 0xa0, 0x00,
0x10, 0x00, 0x20, 0x01, 0x10, 0x00, 0x20, 0x02
http://www.codebf.com/read/163840/5508108
-
#define XIcon_width 32
#define XIcon_height 32
static char XIcon_bits[] = {
0xf0, 0xff, 0x3f, 0x00, 0x10, 0x00, 0x60, 0x00, 0x10, 0x00, 0xa0, 0x00,
0x10, 0x00, 0x20, 0x01, 0x10, 0x00, 0x20, 0x02
http://www.codebf.com/read/163840/5508123
-
#define bargraph_width 32
#define bargraph_height 32
static char bargraph_bits[] = {
0xf0, 0xff, 0xff, 0x00, 0x10, 0x00, 0x80, 0x01, 0x10, 0x00, 0x80, 0x02,
0x90, 0xaa, 0xaa, 0x04, 0x90, 0x00, 0
http://www.codebf.com/read/163840/5508151
-
/* XPM */
static char * xlogo_xpm[] = {
"32 32 2 1",
" s background c None",
". c red",
" ",
" ",
" ",
"
http://www.codebf.com/read/163840/5508173
-
/* XPM */
static char * readme_xpm[] = {
/* width height num_colors chars_per_pixel */
"32 32 40 1",
/* colors */
" s background c None",
". c #111111",
"X c black",
"o c #444444",
"O c #555555",
"+
http://www.codebf.com/read/163840/5508233
-
/*
* Unsigned multiply. Returns %o0 * %o1 in %o1%o0 (i.e., %o1 holds the
* upper 32 bits of the 64-bit product).
*
* This code optimizes short (less than 13-bit) multiplies. Short
* multiplies
http://www.codebf.com/read/163821/5508902
-
MULTILIB_OPTIONS=mabi=n32/mabi=32/mabi=64
MULTILIB_DIRNAMES=n32 32 64
MULTILIB_MATCHES=
MULTILIB_OSDIRNAMES=../lib32 ../lib ../lib64
LIBGCC = stmp-multilib
INSTALL_LIBGCC = install-multilib
LIB2FUNC
http://www.codebf.com/read/162614/5515625
-
# Disable multilib fow now, as NetBSD/sparc64 does not ship with
# a 32-bit environment.
#MULTILIB_OPTIONS = m32/m64
#MULTILIB_DIRNAMES = 32 64
#MULTILIB_MATCHES =
#LIBGCC = stmp-multilib
#INSTALL_LI
http://www.codebf.com/read/162614/5516410
-
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2" } */
int foo (int s)
{
for (;;)
{
int a[32];
int y, z;
__asm__ __volatile__ ("" : "=c" (y), "=D" (
http://www.codebf.com/read/162614/5516930