/openbmc/u-boot/post/lib_powerpc/fpu/ |
H A D | compare-fp-1.c | 36 static void iuneq (float x, float y, int ok) in iuneq() 43 static void ieq (float x, float y, int ok) in ieq() 48 static void iltgt (float x, float y, int ok) in iltgt() 55 static void ine (float x, float y, int ok) in ine() 60 static void iunlt (float x, float y, int ok) in iunlt() 66 static void ilt (float x, float y, int ok) in ilt() 75 static void iunle (float x, float y, int ok) in iunle() 81 static void ile (float x, float y, int ok) in ile() 90 static void iungt (float x, float y, int ok) in iungt() 96 static void igt (float x, float y, int ok) in igt() [all …]
|
/openbmc/openbmc/meta-nuvoton/recipes-nuvoton/program-edid/program-edid/ |
H A D | edid.json | 16 "y": 33 number 25 "y": 77 number 29 "y": 622 number 33 "y": 345 number 37 "y": 337 number 44 "y": 1200 number 48 "y": 35 number 52 "y": 0 number 56 "y": 3 number 60 "y": 324 number [all …]
|
/openbmc/u-boot/arch/arm/mach-keystone/include/mach/ |
H A D | psc_defs.h | 30 static inline u32 _boot_bit_mask(u32 x, u32 y) in _boot_bit_mask() 36 static inline u32 boot_read_bitfield(u32 z, u32 x, u32 y) in boot_read_bitfield() 42 static inline u32 boot_set_bitfield(u32 z, u32 f, u32 x, u32 y) in boot_set_bitfield() 50 #define PSC_REG_PDCTL_SET_NEXT(x, y) boot_set_bitfield((x), (y), 0, 0) argument 51 #define PSC_REG_PDCTL_SET_PDMODE(x, y) boot_set_bitfield((x), (y), 15, 12) argument 61 #define PSC_REG_MDCTL_SET_NEXT(x, y) boot_set_bitfield((x), (y), 4, 0) argument 62 #define PSC_REG_MDCTL_SET_LRSTZ(x, y) boot_set_bitfield((x), (y), 8, 8) argument 64 #define PSC_REG_MDCTL_SET_RESET_ISO(x, y) boot_set_bitfield((x), (y), \ argument
|
/openbmc/qemu/tests/tcg/multiarch/ |
H A D | overflow.c | 3 int overflow_add_32(int x, int y) in overflow_add_32() 9 int overflow_add_64(long long x, long long y) in overflow_add_64() 15 int overflow_sub_32(int x, int y) in overflow_sub_32() 21 int overflow_sub_64(long long x, long long y) in overflow_sub_64()
|
H A D | sha1.c | 63 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument 64 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument 65 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument 66 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument 67 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument
|
/openbmc/qemu/hw/display/ |
H A D | pl110_template.h | 34 #define FN_2(x, y) FN(x, y) FN(x+1, y) argument 35 #define FN_4(x, y) FN_2(x, y) FN_2(x+2, y) argument 36 #define FN_8(y) FN_4(0, y) FN_4(4, y) argument 45 #define FN(x, y) COPY_PIXEL(d, palette[(data >> (y + 7 - (x))) & 1]); in glue() argument 47 #define FN(x, y) COPY_PIXEL(d, palette[(data >> ((x) + y)) & 1]); in glue() argument 73 #define FN(x, y) COPY_PIXEL(d, palette[(data >> (y + 6 - (x)*2)) & 3]); in glue() argument 75 #define FN(x, y) COPY_PIXEL(d, palette[(data >> ((x)*2 + y)) & 3]); in glue() argument 101 #define FN(x, y) COPY_PIXEL(d, palette[(data >> (y + 4 - (x)*4)) & 0xf]); in glue() argument 103 #define FN(x, y) COPY_PIXEL(d, palette[(data >> ((x)*4 + y)) & 0xf]); in glue() argument
|
H A D | cirrus_vga_rop.h | 85 int x,y; in glue() local 111 int x,y; in glue() local 134 int x,y; in glue() local 163 int x,y; in glue() local 187 int x,y; in glue() local 216 int x,y; in glue() local
|
H A D | cirrus_vga_rop2.h | 49 int x, y, pattern_y, pattern_pitch, pattern_x; in glue() local 106 int x, y; in glue() local 156 int x, y; in glue() local 191 int x, y, bitpos, pattern_y; in glue() local 236 int x, y, bitpos, pattern_y; in glue() local 269 int x, y; in glue() local
|
/openbmc/u-boot/include/linux/ |
H A D | kernel.h | 58 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) argument 59 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) argument 60 #define round_down(x, y) ((x) & ~__round_mask(x, y)) argument 77 #define roundup(x, y) ( \ argument 83 #define rounddown(x, y) ( \ argument 174 #define min(x, y) ({ \ argument 180 #define max(x, y) ({ \ argument 186 #define min3(x, y, z) min((typeof(x))min(x, y), z) argument 187 #define max3(x, y, z) max((typeof(x))max(x, y), z) argument 194 #define min_not_zero(x, y) ({ \ argument [all …]
|
/openbmc/qemu/include/qemu/ |
H A D | host-utils.h | 458 static inline bool sadd32_overflow(int32_t x, int32_t y, int32_t *ret) in sadd32_overflow() 471 static inline bool sadd64_overflow(int64_t x, int64_t y, int64_t *ret) in sadd64_overflow() 484 static inline bool uadd32_overflow(uint32_t x, uint32_t y, uint32_t *ret) in uadd32_overflow() 497 static inline bool uadd64_overflow(uint64_t x, uint64_t y, uint64_t *ret) in uadd64_overflow() 511 static inline bool ssub32_overflow(int32_t x, int32_t y, int32_t *ret) in ssub32_overflow() 525 static inline bool ssub64_overflow(int64_t x, int64_t y, int64_t *ret) in ssub64_overflow() 539 static inline bool usub32_overflow(uint32_t x, uint32_t y, uint32_t *ret) in usub32_overflow() 553 static inline bool usub64_overflow(uint64_t x, uint64_t y, uint64_t *ret) in usub64_overflow() 566 static inline bool smul32_overflow(int32_t x, int32_t y, int32_t *ret) in smul32_overflow() 579 static inline bool smul64_overflow(int64_t x, int64_t y, int64_t *ret) in smul64_overflow() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
H A D | ncurses.py | 68 def __init__( self, x, y, width, height, fg=curses.COLOR_BLACK, bg=curses.COLOR_WHITE ): argument 95 def setText( self, x, y, text, *args ): argument 103 def drawHline( self, y ): argument 109 … def __init__( self, title, x, y, width, height, fg=curses.COLOR_BLACK, bg=curses.COLOR_WHITE ): argument 137 def __init__( self, x, y, width, height ): argument 153 def __init__( self, x, y, width, height ): argument 173 def __init__( self, x, y, width, height ): argument 180 def __init__( self, x, y, width, height ): argument
|
/openbmc/qemu/tests/tcg/x86_64/ |
H A D | test-2175.c | 6 int test_setc(unsigned int x, unsigned int y) in test_setc() 12 int test_pushf(unsigned int x, unsigned int y) in test_pushf()
|
/openbmc/u-boot/lib/ |
H A D | md5.c | 168 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument 169 #define F2(x, y, z) F1(z, x, y) argument 170 #define F3(x, y, z) (x ^ y ^ z) argument 171 #define F4(x, y, z) (y ^ (x | ~z)) argument 174 #define MD5STEP(f, w, x, y, z, data, s) \ argument
|
/openbmc/openbmc/poky/meta/recipes-core/musl/bsd-headers/ |
H A D | sys-tree.h | 277 #define SPLAY_INSERT(name, x, y) name##_SPLAY_INSERT(x, y) argument 278 #define SPLAY_REMOVE(name, x, y) name##_SPLAY_REMOVE(x, y) argument 279 #define SPLAY_FIND(name, x, y) name##_SPLAY_FIND(x, y) argument 280 #define SPLAY_NEXT(name, x, y) name##_SPLAY_NEXT(x, y) argument 722 #define RB_INSERT(name, x, y) name##_RB_INSERT(x, y) argument 723 #define RB_REMOVE(name, x, y) name##_RB_REMOVE(x, y) argument 724 #define RB_FIND(name, x, y) name##_RB_FIND(x, y) argument 725 #define RB_NFIND(name, x, y) name##_RB_NFIND(x, y) argument 726 #define RB_NEXT(name, x, y) name##_RB_NEXT(y) argument 727 #define RB_PREV(name, x, y) name##_RB_PREV(y) argument [all …]
|
H A D | sys-cdefs.h | 12 #define __CONCAT(x,y) x ## y argument 31 #define __CONCAT(x,y) x ## y argument
|
/openbmc/u-boot/common/ |
H A D | splash.c | 61 void splash_get_pos(int *x, int *y) in splash_get_pos() 86 int x = 0, y = 0, ret; in lcd_splash() local
|
/openbmc/u-boot/board/gdsys/common/ |
H A D | osd_cmd.c | 22 uint x, y; in do_osd_write() local 75 uint x, y; in do_osd_print() local 106 uint x, y; in do_osd_size() local
|
/openbmc/u-boot/arch/m68k/include/asm/ |
H A D | m5249.h | 18 #define mbar_writeLong(x,y) *((volatile unsigned long *) (CONFIG_SYS_MBAR + x)) = y argument 19 #define mbar_writeShort(x,y) *((volatile unsigned short *) (CONFIG_SYS_MBAR + x)) = y argument 20 #define mbar_writeByte(x,y) *((volatile unsigned char *) (CONFIG_SYS_MBAR + x)) = y argument 22 #define mbar2_writeLong(x,y) *((volatile unsigned long *) (CONFIG_SYS_MBAR2 + x)) = y argument 23 #define mbar2_writeShort(x,y) *((volatile unsigned short *) (CONFIG_SYS_MBAR2 + x)) = y argument 24 #define mbar2_writeByte(x,y) *((volatile unsigned char *) (CONFIG_SYS_MBAR2 + x)) = y argument
|
/openbmc/u-boot/drivers/serial/ |
H A D | ns16550.c | 26 #define serial_out(x, y) outb(x, (ulong)y) argument 27 #define serial_in(y) inb((ulong)y) argument 29 #define serial_out(x, y) out_be32(y, x) argument 30 #define serial_in(y) in_be32(y) argument 32 #define serial_out(x, y) out_le32(y, x) argument 33 #define serial_in(y) in_le32(y) argument 35 #define serial_out(x, y) writeb(x, y) argument 36 #define serial_in(y) readb(y) argument
|
/openbmc/u-boot/scripts/kconfig/lxdialog/ |
H A D | yesno.c | 17 int y = height - 2; in print_buttons() local 31 int i, x, y, key = 0, button = 0; in dialog_yesno() local
|
H A D | checklist.c | 53 int y, int x, int height) in print_arrows() 91 int y = height - 2; in print_buttons() local 107 int i, x, y, box_x, box_y; in dialog_checklist() local
|
/openbmc/qemu/ui/ |
H A D | cursor.c | 13 unsigned int line = 0, i, r, g, b, x, y, pixel; in cursor_parse_xpm() local 64 int x,y; in cursor_print_ascii_art() local 137 int x,y,bpl; in cursor_set_mono() local 204 int x,y,bpl; in cursor_get_mono_mask() local
|
H A D | vnc-enc-tight.c | 141 int x, y, d, dx; in tight_detect_smooth_image24() local 421 static int tight_fill_palette(VncState *vs, VncTight *tight, int x, int y, in tight_fill_palette() 563 int x, y, c; in tight_filter_gradient24() local 681 check_solid_tile32(VncState *vs, int x, int y, int w, int h, in check_solid_tile32() 710 static bool check_solid_tile(VncState *vs, int x, int y, int w, int h, in check_solid_tile() 717 static void find_best_solid_area(VncState *vs, int x, int y, int w, int h, in find_best_solid_area() 755 static void extend_solid_area(VncState *vs, int x, int y, int w, int h, in extend_solid_area() 923 int x, int y, int w, int h) in send_full_color_rect() 969 static int send_mono_rect(VncState *vs, VncWorker *worker, int x, int y, in send_mono_rect() 1059 int x, int y, int w, int h) in send_gradient_rect() [all …]
|
H A D | vnc-enc-hextile.c | 30 static void hextile_enc_cord(uint8_t *ptr, int x, int y, int w, int h) in hextile_enc_cord() 47 int y, int w, int h) in vnc_hextile_send_framebuffer_update()
|
/openbmc/qemu/scripts/ |
H A D | cocci-macro-file.h | 28 #define cat(x,y) x ## y argument 29 #define cat2(x,y) cat(x,y) argument 35 #define xglue(x, y) x ## y argument 36 #define glue(x, y) xglue(x, y) argument
|