Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 111) sorted by relevance

12345

/rk3399_rockchip-uboot/post/lib_powerpc/fpu/
H A Dcompare-fp-1.c37 static void iuneq (float x, float y, int ok) in iuneq()
44 static void ieq (float x, float y, int ok) in ieq()
49 static void iltgt (float x, float y, int ok) in iltgt()
56 static void ine (float x, float y, int ok) in ine()
61 static void iunlt (float x, float y, int ok) in iunlt()
67 static void ilt (float x, float y, int ok) in ilt()
76 static void iunle (float x, float y, int ok) in iunle()
82 static void ile (float x, float y, int ok) in ile()
91 static void iungt (float x, float y, int ok) in iungt()
97 static void igt (float x, float y, int ok) in igt()
[all …]
/rk3399_rockchip-uboot/arch/arm/mach-keystone/include/mach/
H A Dpsc_defs.h31 static inline u32 _boot_bit_mask(u32 x, u32 y) in _boot_bit_mask()
37 static inline u32 boot_read_bitfield(u32 z, u32 x, u32 y) in boot_read_bitfield()
43 static inline u32 boot_set_bitfield(u32 z, u32 f, u32 x, u32 y) in boot_set_bitfield()
51 #define PSC_REG_PDCTL_SET_NEXT(x, y) boot_set_bitfield((x), (y), 0, 0) argument
52 #define PSC_REG_PDCTL_SET_PDMODE(x, y) boot_set_bitfield((x), (y), 15, 12) argument
62 #define PSC_REG_MDCTL_SET_NEXT(x, y) boot_set_bitfield((x), (y), 4, 0) argument
63 #define PSC_REG_MDCTL_SET_LRSTZ(x, y) boot_set_bitfield((x), (y), 8, 8) argument
65 #define PSC_REG_MDCTL_SET_RESET_ISO(x, y) boot_set_bitfield((x), (y), \ argument
/rk3399_rockchip-uboot/include/linux/
H A Dkernel.h53 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) argument
54 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) argument
55 #define round_down(x, y) ((x) & ~__round_mask(x, y)) argument
72 #define roundup(x, y) ( \ argument
78 #define rounddown(x, y) ( \ argument
157 #define min(x, y) ({ \ argument
163 #define max(x, y) ({ \ argument
169 #define min3(x, y, z) min((typeof(x))min(x, y), z) argument
170 #define max3(x, y, z) max((typeof(x))max(x, y), z) argument
177 #define min_not_zero(x, y) ({ \ argument
[all …]
H A Dmath64.h10 #define div64_long(x, y) div64_s64((x), (y)) argument
11 #define div64_ul(x, y) div64_u64((x), (y)) argument
61 #define div64_long(x, y) div_s64((x), (y)) argument
62 #define div64_ul(x, y) div_u64((x), (y)) argument
/rk3399_rockchip-uboot/lib/
H A Dmd5.c168 #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
H A Drand.c13 static unsigned int y = 1U; variable
H A Dsha1.c135 #define F(x,y,z) (z ^ (x & (y ^ z))) in sha1_process_one() argument
162 #define F(x,y,z) (x ^ y ^ z) in sha1_process_one() argument
189 #define F(x,y,z) ((x & y) | (z & (x | y))) in sha1_process_one() argument
216 #define F(x,y,z) (x ^ y ^ z) in sha1_process_one() argument
/rk3399_rockchip-uboot/common/
H A Dsplash.c61 void splash_get_pos(int *x, int *y) in splash_get_pos()
86 int x = 0, y = 0, ret; in lcd_splash() local
H A Dlcd_console_rotation.c12 static void lcd_putc_xy90(struct console_t *pcons, ushort x, ushort y, char c) in lcd_putc_xy90()
65 static void lcd_putc_xy180(struct console_t *pcons, ushort x, ushort y, char c) in lcd_putc_xy180()
114 static void lcd_putc_xy270(struct console_t *pcons, ushort x, ushort y, char c) in lcd_putc_xy270()
/rk3399_rockchip-uboot/arch/m68k/include/asm/
H A Dm5249.h19 #define mbar_writeLong(x,y) *((volatile unsigned long *) (CONFIG_SYS_MBAR + x)) = y argument
20 #define mbar_writeShort(x,y) *((volatile unsigned short *) (CONFIG_SYS_MBAR + x)) = y argument
21 #define mbar_writeByte(x,y) *((volatile unsigned char *) (CONFIG_SYS_MBAR + x)) = y argument
23 #define mbar2_writeLong(x,y) *((volatile unsigned long *) (CONFIG_SYS_MBAR2 + x)) = y argument
24 #define mbar2_writeShort(x,y) *((volatile unsigned short *) (CONFIG_SYS_MBAR2 + x)) = y argument
25 #define mbar2_writeByte(x,y) *((volatile unsigned char *) (CONFIG_SYS_MBAR2 + x)) = y argument
/rk3399_rockchip-uboot/drivers/serial/
H A Dns16550.c25 #define serial_out(x, y) outb(x, (ulong)y) argument
26 #define serial_in(y) inb((ulong)y) argument
28 #define serial_out(x, y) out_be32(y, x) argument
29 #define serial_in(y) in_be32(y) argument
31 #define serial_out(x, y) out_le32(y, x) argument
32 #define serial_in(y) in_le32(y) argument
34 #define serial_out(x, y) writeb(x, y) argument
35 #define serial_in(y) readb(y) argument
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/
H A Dyesno.c18 int y = height - 2; in print_buttons() local
32 int i, x, y, key = 0, button = 0; in dialog_yesno() local
H A Dchecklist.c54 int y, int x, int height) in print_arrows()
92 int y = height - 2; in print_buttons() local
108 int i, x, y, box_x, box_y; in dialog_checklist() local
H A Dinputbox.c20 int y = height - 2; in print_buttons() local
35 int i, x, y, box_y, box_x, box_width; in dialog_inputbox() local
H A Dmenubox.c99 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows()
146 int y = height - 2; in print_buttons() local
175 int i, j, x, y, box_x, box_y; in dialog_menu() local
H A Dutil.c342 void end_dialog(int x, int y) in end_dialog()
370 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x) in print_autowrap()
435 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button()
465 draw_box(WINDOW * win, int y, int x, int height, int width, in draw_box()
499 void draw_shadow(WINDOW * win, int y, int x, int height, int width) in draw_shadow()
/rk3399_rockchip-uboot/drivers/bios_emulator/include/x86emu/
H A Ddebug.h103 # define ERR_PRINTF2(x, y) printf(x, y) argument
110 # define DECODE_PRINTF2(x,y) if (DEBUG_DECODE()) \ argument
123 #define SAVE_IP_CS(x,y) \ argument
132 # define DECODE_PRINTF2(x,y) argument
133 # define SAVE_IP_CS(x,y) argument
/rk3399_rockchip-uboot/drivers/video/drm/
H A Dlibnsbmp.c516 uint32_t x, y; in bmp_decode_rgb32() local
596 uint32_t x, y; in bmp_decode_rgb24() local
666 uint32_t x, y, swidth; in bmp_decode_rgb16() local
753 uint32_t x, y, swidth; in bmp_decode_rgb() local
825 uint32_t x, y, swidth; in bmp_decode_mask() local
877 uint32_t x = 0, y = 0, last_y = 0; in bmp_decode_rle8() local
1031 uint32_t x = 0, y = 0, last_y = 0; in bmp_decode_rle4() local
1324 int x, y, cur, distance = (1 << 24); in ico_find() local
/rk3399_rockchip-uboot/arch/arm/mach-exynos/include/mach/
H A Dclk.h25 #define SET_PRE_RATIO(x, y) ((y & 0xff) << ((x << 4) + 8)) argument
26 #define SET_RATIO(x, y) ((y & 0xf) << (x << 4)) argument
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dnconf.gui.c153 { int length, x, y; in print_in_middle() local
216 int x, y; in fill_window() local
255 int i, x, y; in btn_dialog() local
367 int i, x, y, lines, columns, win_lines, win_cols; in dialog_inputbox() local
555 int x, y, lines, columns; in show_scroll_win() local
/rk3399_rockchip-uboot/fs/zfs/
H A Dzfs_sha256.c50 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
51 #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y)))) argument
/rk3399_rockchip-uboot/api/
H A Dapi_display.c42 int display_draw_bitmap(ulong bitmap, int x, int y) in display_draw_bitmap()
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-lpc32xx/
H A Dgpio_grp.h38 #define LPC32XX_GPIO(x, y) ((x) + (y)) argument
/rk3399_rockchip-uboot/cmd/
H A Dbmp.c115 int x = 0, y = 0; in do_bmp_display() local
228 int bmp_display(ulong addr, int x, int y) in bmp_display()
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/
H A Dgpio.h216 #define at91_set_GPIO_periph(x, y) \ argument
218 #define at91_set_A_periph(x, y) \ argument
220 #define at91_set_B_periph(x, y) \ argument
222 #define at91_set_gpio_output(x, y) \ argument
224 #define at91_set_gpio_input(x, y) \ argument
228 #define at91_set_gpio_value(x, y) \ argument

12345