Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 219) sorted by relevance

123456789

/u-boot/arch/powerpc/include/asm/
A Dpci_io.h27 #define pci_readb(addr,b) ((b) = *(volatile u8 *) (addr)) argument
28 #define pci_writeb(b,addr) ((*(volatile u8 *) (addr)) = (b)) argument
31 #define pci_readw(addr,b) ((b) = *(volatile u16 *) (addr)) argument
32 #define pci_readl(addr,b) ((b) = *(volatile u32 *) (addr)) argument
33 #define pci_writew(b,addr) ((*(volatile u16 *) (addr)) = (b)) argument
34 #define pci_writel(b,addr) ((*(volatile u32 *) (addr)) = (b)) argument
36 #define pci_readw(addr,b) pci_read_le16((volatile u16 *)(addr),(b)) argument
37 #define pci_readl(addr,b) pci_read_le32((volatile u32 *)(addr),(b)) argument
38 #define pci_writew(b,addr) pci_write_le16((volatile u16 *)(addr),(b)) argument
39 #define pci_writel(b,addr) pci_write_le32((volatile u32 *)(addr),(b)) argument
/u-boot/drivers/usb/cdns3/
A Dtrace.h3 #define trace_cdns3_prepare_trb(a, b) argument
4 #define trace_cdns3_doorbell_ep0(a, b) argument
6 #define trace_cdns3_complete_trb(a, b) argument
7 #define trace_cdns3_ep0_irq(a, b) argument
12 #define trace_cdns3_doorbell_epx(a, b) argument
14 #define trace_cdns3_epx_irq(a, b) argument
15 #define trace_cdns3_usb_irq(a, b) argument
20 #define trace_cdns3_ep0_queue(a, b) argument
24 #define trace_cdns3_halt(a, b, c) argument
25 #define trace_cdns3_wa1(a, b) argument
[all …]
/u-boot/include/
A Dtime.h60 #define time_after(a,b) \ argument
64 #define time_before(a,b) time_after(b,a) argument
66 #define time_after_eq(a,b) \ argument
70 #define time_before_eq(a,b) time_after_eq(b,a) argument
75 #define time_in_range(a,b,c) \ argument
82 #define time_in_range_open(a,b,c) \ argument
A D_exports.h8 #define EXPORT_FUNC(a, b, c, ...) argument
/u-boot/arch/arc/lib/
A Dlibgcc2.h61 #define __NW(a,b) __gnu_ ## a ## di ## b argument
64 #define __NW(a,b) __ ## a ## di ## b argument
65 #define __NDW(a,b) __ ## a ## ti ## b argument
76 #define __NW(a,b) __gnu_ ## a ## si ## b argument
79 #define __NW(a,b) __ ## a ## si ## b argument
80 #define __NDW(a,b) __ ## a ## di ## b argument
91 #define __NW(a,b) __gnu_ ## a ## hi ## b argument
94 #define __NW(a,b) __ ## a ## hi ## b argument
95 #define __NDW(a,b) __ ## a ## si ## b argument
109 #define __NW(a,b) __ ## a ## qi ## b argument
[all …]
A Dlibgcc2.c9 __ashldi3(DWtype u, shift_count_type b) in __ashldi3()
32 __ashrdi3(DWtype u, shift_count_type b) in __ashrdi3()
56 __lshrdi3(DWtype u, shift_count_type b) in __lshrdi3()
105 __divsi3(long a, long b) in __divsi3()
129 __modsi3(long a, long b) in __modsi3()
151 __udivsi3(long a, long b) in __udivsi3()
157 __umodsi3(long a, long b) in __umodsi3()
A D_millicodethunk.S8 #define CONCAT1(a, b) CONCAT2(a, b) argument
9 #define CONCAT2(a, b) a ## b argument
/u-boot/drivers/usb/musb/
A Dmusb_debug.h14 static inline void musb_print_pwr(u8 b) in musb_print_pwr()
41 static inline void musb_print_intrusb(u8 b) in musb_print_intrusb()
67 static inline void musb_print_devctl(u8 b) in musb_print_devctl()
99 static inline void musb_print_config(u8 b) in musb_print_config()
179 #define musb_print_pwr(b) argument
181 #define musb_print_intrusb(b) argument
184 #define musb_print_devctl(b) argument
185 #define musb_print_config(b) argument
/u-boot/fs/yaffs2/
A Dydirectenv.h37 #define yaffs_strcat(a, b) strcat(a, b) argument
38 #define yaffs_strcpy(a, b) strcpy(a, b) argument
39 #define yaffs_strncpy(a, b, c) strncpy(a, b, c) argument
42 #define yaffs_strcmp(a, b) strcasecmp(a, b) argument
43 #define yaffs_strncmp(a, b, c) strncasecmp(a, b, c) argument
45 #define yaffs_strcmp(a, b) strcmp(a, b) argument
46 #define yaffs_strncmp(a, b, c) strncmp(a, b, c) argument
A Dyaffs_qsort.c29 swapfunc(char *a, char *b, int n, int swaptype) in swapfunc()
37 #define yswap(a, b) do { \ argument
46 #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) argument
49 med3(char *a, char *b, char *c, int (*cmp)(const void *, const void *)) in med3()
57 #define min(a, b) (((a) < (b)) ? (a) : (b)) argument
/u-boot/arch/xtensa/include/asm/
A Dio.h41 #define writeb(b, addr) (void)((*(volatile unsigned char *)(addr)) = (b)) argument
43 #define writel(b, addr) (void)((*(volatile unsigned int *)(addr)) = (b)) argument
82 #define memset_io(a, b, c) memset((void *)(a), (b), (c)) argument
83 #define memcpy_fromio(a, b, c) memcpy((a), (void *)(b), (c)) argument
84 #define memcpy_toio(a, b, c) memcpy((void *)(a), (b), (c)) argument
92 # define out_8(b, addr) *(u8 *)(addr) = (b) argument
93 # define out_le16(b, addr) *(u16 *)(addr) = _swapw(b) argument
94 # define out_le32(b, addr) *(u32 *)(addr) = _swapl(b) argument
99 # define out_8(b, addr) *(u8 *)(addr) = (b) argument
100 # define out_le16(b, addr) *(u16 *)(addr) = (b) argument
[all …]
/u-boot/post/lib_powerpc/fpu/
A Dcompare-fp-1.c23 #define ORD(a, b) (!__builtin_isunordered ((a), (b))) argument
24 #define UNORD(a, b) (__builtin_isunordered ((a), (b))) argument
25 #define UNEQ(a, b) (__builtin_isunordered ((a), (b)) || ((a) == (b))) argument
26 #define UNLT(a, b) (__builtin_isunordered ((a), (b)) || ((a) < (b))) argument
27 #define UNLE(a, b) (__builtin_isunordered ((a), (b)) || ((a) <= (b))) argument
28 #define UNGT(a, b) (__builtin_isunordered ((a), (b)) || ((a) > (b))) argument
29 #define UNGE(a, b) (__builtin_isunordered ((a), (b)) || ((a) >= (b))) argument
30 #define LTGT(a, b) (__builtin_islessgreater ((a), (b))) argument
A D20001122-1.c22 volatile double b; in fpu_post_test_math1() local
/u-boot/drivers/pinctrl/meson/
A Dpinctrl-meson-gx.h18 #define PMX_DATA(r, b, g) \ argument
25 #define GROUP(grp, r, b) \ argument
35 #define GPIO_GROUP(gpio, b) \ argument
/u-boot/lib/
A Dlist_sort.c24 struct list_head *b), in merge()
53 struct list_head *b), in merge_and_restore_back_links()
107 struct list_head *b)) in list_sort()
205 static int __init cmp(void *priv, struct list_head *a, struct list_head *b) in cmp()
/u-boot/arch/nios2/lib/
A Dlibgcc.c51 __ashldi3 (DWtype u, word_type b) in __ashldi3()
77 __ashrdi3 (DWtype u, word_type b) in __ashrdi3()
104 __lshrdi3 (DWtype u, word_type b) in __lshrdi3()
130 __cmpdi2 (DWtype a, DWtype b) in __cmpdi2()
154 UWtype b, bm; in __udivmoddi4() local
427 __ucmpdi2 (DWtype a, DWtype b) in __ucmpdi2()
485 __divsi3 (SItype a, SItype b) in __divsi3()
512 __udivsi3 (SItype a, SItype b) in __udivsi3()
519 __modsi3 (SItype a, SItype b) in __modsi3()
542 __mulsi3 (SItype a, SItype b) in __mulsi3()
[all …]
/u-boot/arch/microblaze/include/asm/
A Dio.h33 #define writeb(b, addr) \ argument
36 #define writew(b, addr) \ argument
39 #define writel(b, addr) \ argument
42 #define memset_io(a, b, c) memset((void *)(a), (b), (c)) argument
43 #define memcpy_fromio(a, b, c) memcpy((a), (void *)(b), (c)) argument
139 #define outsb(a, b, l) io_outsb(a, b, l) argument
140 #define outsw(a, b, l) io_outsw(a, b, l) argument
141 #define outsl(a, b, l) io_outsl(a, b, l) argument
143 #define insb(a, b, l) io_insb(a, b, l) argument
144 #define insw(a, b, l) io_insw(a, b, l) argument
[all …]
/u-boot/fs/jffs2/
A Dcompr_lzo.c140 #define PTR_ALIGNED2_4(a,b) (((PTR_LINEAR(a) | PTR_LINEAR(b)) & 3) == 0) argument
141 #define PTR_ALIGNED2_8(a,b) (((PTR_LINEAR(a) | PTR_LINEAR(b)) & 7) == 0) argument
142 #define PTR_LT(a,b) (PTR(a) < PTR(b)) argument
143 #define PTR_GE(a,b) (PTR(a) >= PTR(b)) argument
144 #define PTR_DIFF(a,b) ((lzo_ptrdiff_t) (PTR(a) - PTR(b))) argument
145 #define pd(a,b) ((lzo_uint) ((a)-(b))) argument
/u-boot/arch/arm/include/asm/arch-rockchip/
A Dsdram_msch.h19 } b; member
33 } b; member
43 } b; member
57 } b; member
72 } b; member
82 } b; member
/u-boot/fs/ubifs/
A Dreplay.c92 static int set_bud_lprops(struct ubifs_info *c, struct bud_entry *b) in set_bud_lprops()
168 struct bud_entry *b; in set_buds_lprops() local
272 struct list_head *b) in replay_entries_cmp()
536 static int replay_bud(struct ubifs_info *c, struct bud_entry *b) in replay_bud()
698 struct bud_entry *b; in replay_buds() local
720 struct bud_entry *b; in destroy_bud_list() local
744 struct bud_entry *b; in add_replay_bud() local
/u-boot/arch/riscv/include/asm/
A Dasm.h16 #define __REG_SEL(a, b) __ASM_STR(a) argument
18 #define __REG_SEL(a, b) __ASM_STR(b) argument
/u-boot/include/dt-bindings/pinctrl/
A Dr7s72100-pinctrl.h15 #define RZA1_PINMUX(b, p, f) \ argument
/u-boot/drivers/net/
A Dsmc91111.h106 #define SMC_outsl(a,r,b,l) ({ int __i; \ argument
114 #define SMC_outsw(a,r,b,l) ({ int __i; \ argument
122 #define SMC_insl(a,r,b,l) ({ int __i ; \ argument
131 #define SMC_insw(a,r,b,l) ({ int __i ; \ argument
140 #define SMC_insb(a,r,b,l) ({ int __i ; \ argument
180 #define SMC_outsl(a,r,b,l) do{ int __i; \ argument
187 #define SMC_outsw(a,r,b,l) do{ int __i; \ argument
221 #define SMC_insw(a, r, b, l) \ argument
238 #define SMC_outsw(a, r, b, l) \ argument
281 #define SMC_outsw(a,r,b,l) ({ int __i; \ argument
[all …]
/u-boot/arch/mips/lib/
A Dashldi3.c3 long long __ashldi3(long long u, word_type b) in __ashldi3()
A Dashrdi3.c3 long long __ashrdi3(long long u, word_type b) in __ashrdi3()

Completed in 29 milliseconds

123456789