OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20040317-2.c] - Rev 715

Go to most recent revision | Compare with Previous | Blame | View Log

typedef struct _ScaleRec *ScaleWidget;
typedef struct
{
  short *x;
  unsigned short *width;
} Table;
typedef struct
{
  Table table;
} ScalePart;
typedef struct _ScaleRec
{
  ScalePart scale;
} ScaleRec;
static int
FindPixel (ScaleWidget sw, short x, short y,
       short * img_x, short * img_y, unsigned long * img_pixel)
{
  if (sw->scale.table.x[(int) *img_x] + 
      (short) sw->scale.table.width[(int) *img_x] < x)
    {
      ++*img_x;
      return FindPixel (sw, x, y, img_x, img_y, img_pixel);
    }
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.