Home
last modified time | relevance | path

Searched refs:b (Results 1 – 25 of 1003) sorted by relevance

12345678910>>...41

/u-boot/drivers/usb/musb/
A Dmusb_debug.h52 if (b & MUSB_INTR_BABBLE) in musb_print_intrusb()
70 if (b & MUSB_DEVCTL_BDEVICE) in musb_print_devctl()
74 if (b & MUSB_DEVCTL_FSDEV) in musb_print_devctl()
76 if (b & MUSB_DEVCTL_LSDEV) in musb_print_devctl()
78 if (b & MUSB_DEVCTL_HM) in musb_print_devctl()
82 if (b & MUSB_DEVCTL_HR) in musb_print_devctl()
87 if (b & MUSB_DEVCTL_SESSION) in musb_print_devctl()
92 if (b & MUSB_DEVCTL_SESSION) in musb_print_devctl()
179 #define musb_print_pwr(b) argument
184 #define musb_print_devctl(b) argument
[all …]
/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/arch/arc/lib/
A Dlibgcc2.h61 #define __NW(a,b) __gnu_ ## a ## di ## b argument
62 #define __NDW(a,b) __gnu_ ## a ## ti ## 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
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.c11 if (b == 0) in __ashldi3()
34 if (b == 0) in __ashrdi3()
58 if (b == 0) in __lshrdi3()
105 __divsi3(long a, long b) in __divsi3() argument
115 if (b < 0) { in __divsi3()
116 b = -b; in __divsi3()
129 __modsi3(long a, long b) in __modsi3() argument
139 if (b < 0) in __modsi3()
140 b = -b; in __modsi3()
151 __udivsi3(long a, long b) in __udivsi3() argument
[all …]
/u-boot/lib/
A Dmd5.c185 register __u32 a, b, c, d; in MD5Transform() local
188 b = buf[1]; in MD5Transform()
192 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
196 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
200 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7); in MD5Transform()
209 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); in MD5Transform()
210 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); in MD5Transform()
213 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); in MD5Transform()
217 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); in MD5Transform()
222 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9); in MD5Transform()
[all …]
A Dsha512.c107 #define GET_UINT64_BE(n,b,i) { \ argument
119 #define PUT_UINT64_BE(n,b,i) { \ argument
120 (b)[(i) ] = (unsigned char) ( (n) >> 56 ); \
121 (b)[(i) + 1] = (unsigned char) ( (n) >> 48 ); \
122 (b)[(i) + 2] = (unsigned char) ( (n) >> 40 ); \
123 (b)[(i) + 3] = (unsigned char) ( (n) >> 32 ); \
124 (b)[(i) + 4] = (unsigned char) ( (n) >> 24 ); \
144 uint64_t a, b, c, d, e, f, g, h, t1, t2; in sha512_transform() local
175 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3]; in sha512_transform()
184 t2 = e0(b) + Maj(b,c,d); e+=t1; a=t1+t2; in sha512_transform()
[all …]
A Dlist_sort.c24 struct list_head *b), in merge() argument
29 while (a && b) { in merge()
35 tail->next = b; in merge()
36 b = b->next; in merge()
40 tail->next = a?:b; in merge()
59 while (a && b) { in merge_and_restore_back_links()
66 tail->next = b; in merge_and_restore_back_links()
67 b->prev = tail; in merge_and_restore_back_links()
68 b = b->next; in merge_and_restore_back_links()
72 tail->next = a ? : b; in merge_and_restore_back_links()
[all …]
/u-boot/include/
A Dtime.h60 #define time_after(a,b) \ argument
62 typecheck(unsigned long, b) && \
63 ((long)((b) - (a)) < 0))
64 #define time_before(a,b) time_after(b,a) argument
66 #define time_after_eq(a,b) \ argument
68 typecheck(unsigned long, b) && \
69 ((long)((a) - (b)) >= 0))
70 #define time_before_eq(a,b) time_after_eq(b,a) argument
75 #define time_in_range(a,b,c) \ argument
76 (time_after_eq(a,b) && \
[all …]
/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/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.c32 swapcode(long, a, b, n); in swapfunc()
34 swapcode(char, a, b, n); in swapfunc()
37 #define yswap(a, b) do { \ argument
40 *(long *)(a) = *(long *)(b); \
41 *(long *)(b) = t; \
43 swapfunc(a, b, es, swaptype); \
46 #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) argument
51 return cmp(a, b) < 0 ? in med3()
52 (cmp(b, c) < 0 ? b : (cmp(a, c) < 0 ? c : a)) in med3()
53 : (cmp(b, c) > 0 ? b : (cmp(a, c) < 0 ? a : c)); in med3()
[all …]
/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/tools/
A Dbmp_logo.c71 b->width, b->height, n_colors, in gen_info()
81 bitmap_t *b = &bmp; in main() local
136 b->width = le_short(b->width); in main()
137 b->height = le_short(b->height); in main()
139 size = b->width * b->height; in main()
148 gen_info(b, n_colors); in main()
190 b->data = (uint8_t *)malloc(size); in main()
191 if (!b->data) in main()
202 b->data[i] = (uint8_t)fgetc(fp); in main()
204 for (i = (b->height - 1) * b->width; i >= 0; i -= b->width) { in main()
[all …]
/u-boot/arch/arm/cpu/armv8/
A Dpsci.S141 b 1b
166 b.eq 2b /* SiP service function found */
169 b.eq 3b /* If reach the end, bail out */
170 b 1b
178 b.gt handle_svc
181 b.lt handle_svc
184 b handle_psci
194 b.gt handle_svc
197 b.lt handle_svc
200 b handle_psci
[all …]
A Dstart.S31 b reset
76 b 0b
134 b 0f
138 b 0f
198 b 0f
201 b 0f
212 b 7f
247 b.ne 0b
252 b.lt 0b
260 b 0b
[all …]
A Dcache.S52 b 2f
145 b.lo 1b
171 b.lo 1b
224 b 0f
226 b 0f
235 b 0f
237 b 0f
250 b 0f
252 b 0f
259 b 0f
[all …]
A Dexceptions.S42 b exception_exit
69 b exception_exit
80 b 0f
83 b 0f
104 b _restore_regs
106 b _restore_regs
114 b exception_exit
142 b exception_exit
148 b exception_exit
154 b exception_exit
[all …]
/u-boot/arch/microblaze/include/asm/
A Dio.h33 #define writeb(b, addr) \ argument
36 #define writew(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
44 #define memcpy_toio(a, b, c) memcpy((void *)(a), (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/arch/nios2/lib/
A Dlibgcc.c53 if (b == 0) in __ashldi3()
79 if (b == 0) in __ashrdi3()
106 if (b == 0) in __lshrdi3()
154 UWtype b, bm; in __udivmoddi4() local
247 n2 = n1 >> b; in __udivmoddi4()
496 if (b < 0) in __divsi3()
498 b = -b; in __divsi3()
530 if (b < 0) in __modsi3()
531 b = -b; in __modsi3()
551 res += b; in __mulsi3()
[all …]
/u-boot/arch/x86/lib/fsp1/
A Dfsp_support.c41 ((struct ffs_file_header *)fsp)->name.b[0] == FSP_GUID_BYTE0 && in fsp_find_header()
42 ((struct ffs_file_header *)fsp)->name.b[1] == FSP_GUID_BYTE1 && in fsp_find_header()
43 ((struct ffs_file_header *)fsp)->name.b[2] == FSP_GUID_BYTE2 && in fsp_find_header()
44 ((struct ffs_file_header *)fsp)->name.b[3] == FSP_GUID_BYTE3 && in fsp_find_header()
45 ((struct ffs_file_header *)fsp)->name.b[4] == FSP_GUID_BYTE4 && in fsp_find_header()
46 ((struct ffs_file_header *)fsp)->name.b[5] == FSP_GUID_BYTE5 && in fsp_find_header()
47 ((struct ffs_file_header *)fsp)->name.b[6] == FSP_GUID_BYTE6 && in fsp_find_header()
48 ((struct ffs_file_header *)fsp)->name.b[7] == FSP_GUID_BYTE7 && in fsp_find_header()
49 ((struct ffs_file_header *)fsp)->name.b[8] == FSP_GUID_BYTE8 && in fsp_find_header()
50 ((struct ffs_file_header *)fsp)->name.b[9] == FSP_GUID_BYTE9 && in fsp_find_header()
[all …]
/u-boot/arch/powerpc/lib/
A Dppcstring.S17 bne 1b
39 bne 1b
44 bne 1b
56 beq 1b
64 bne 1b
84 bdnz 1b
91 bdnz 8b
138 beq 2b
140 b 1b
175 beq 2b
[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
/u-boot/drivers/pinctrl/meson/
A Dpinctrl-meson-gx.h18 #define PMX_DATA(r, b, g) \ argument
21 .bit = b, \
25 #define GROUP(grp, r, b) \ argument
31 PMX_DATA(r, b, false), \
35 #define GPIO_GROUP(gpio, b) \ argument
38 .pins = (const unsigned int[]){ PIN(gpio, b) }, \
/u-boot/drivers/pci/
A Dpci_indirect.c25 u32 b, d,f; \
26 b = PCI_BUS(dev); d = PCI_DEV(dev); f = PCI_FUNC(dev); \
27 b = b - hose->first_busno; \
28 dev = PCI_BDF(b, d, f); \
40 u32 b, d,f; \
41 b = PCI_BUS(dev); d = PCI_DEV(dev); f = PCI_FUNC(dev); \
42 b = b - hose->first_busno; \
43 dev = PCI_BDF(b, d, f); \
/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

Completed in 50 milliseconds

12345678910>>...41