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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr43845.c] - Diff between revs 297 and 338

Only display areas with differences | Details | Blame | View Log

Rev 297 Rev 338
typedef int __attribute__ ((const)) (*x264_pixel_cmp_t)(void);
typedef int __attribute__ ((const)) (*x264_pixel_cmp_t)(void);
 
 
typedef struct {
typedef struct {
    x264_pixel_cmp_t ssd;
    x264_pixel_cmp_t ssd;
} x264_pixel_function_t;
} x264_pixel_function_t;
 
 
int x264_pixel_ssd_wxh (x264_pixel_function_t *pf, int i_width) {
int x264_pixel_ssd_wxh (x264_pixel_function_t *pf, int i_width) {
    int i_ssd = 0, x;
    int i_ssd = 0, x;
    for (x = 0; x < i_width; x++)
    for (x = 0; x < i_width; x++)
      i_ssd += pf->ssd();
      i_ssd += pf->ssd();
    return i_ssd;
    return i_ssd;
}
}
 
 

powered by: WebSVN 2.1.0

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