Home
last modified time | relevance | path

Searched refs:p1 (Results 1 – 25 of 58) sorted by relevance

123

/u-boot/scripts/coccinelle/iterators/
A Dlist_entry_update.cocci21 position p1,p2;
24 list_for_each_entry@p1(x,...) { <... x =@p2 E ...> }
28 position r.p1,r.p2;
34 list_for_each_entry@p1(x,...) S
40 position r.p1,r.p2;
46 list_for_each_entry@p1(x,...) S
49 p1 << r.p1;
53 cocci.print_main("iterator",p1)
57 p1 << r.p1;
62 coccilib.report.print_report(p1[0],msg)
A Duse_after_iter.cocci37 position p1,p2;
41 list_for_each_entry@p1(c,...,member) { ... when != break;
46 list_for_each_entry_reverse@p1(c,...,member) { ... when != break;
51 list_for_each_entry_continue@p1(c,...,member) { ... when != break;
61 list_for_each_entry_from@p1(c,...,member) { ... when != break;
66 list_for_each_entry_safe@p1(c,...,member) { ... when != break;
76 list_for_each_entry_safe_from@p1(c,...,member) { ... when != break;
81 list_for_each_entry_safe_reverse@p1(c,...,member) { ... when != break;
134 p1 << r.p1;
139 cocci.print_secs("iterator",p1)
[all …]
A Ditnull.cocci67 position p1,p2;
70 *I@p1(x,...)
81 p1 << r.p1;
85 cocci.print_main("iterator-bound variable",p1)
89 p1 << r.p1;
93 msg = "ERROR: iterator variable bound on line %s cannot be NULL" % (p1[0].line)
/u-boot/board/nokia/rx51/
A Dtag_omap.h226 #define OMAP_TAG_UART_CONFIG(p1) \ argument
229 .u.uart.enabled_uarts = p1, \
236 .u.serial_console.console_uart = p1, \
240 #define OMAP_TAG_LCD_CONFIG(p1, p2, p3, p4) \ argument
243 .u.lcd.panel_name = p1, \
253 .u.gpio_switch.name = p1, \
264 .u.wlan_cx3110x.chip_type = p1, \
275 .u.partition.name = p1, \
281 #define OMAP_TAG_BOOT_REASON_CONFIG(p1) \ argument
285 .u.boot_reason.reason_str = p1, \
[all …]
/u-boot/arch/nds32/cpu/n1213/ag101/
A Dwatchdog.S20 lwi $p1, [$p0] ! Get the config of WD
21 andi $p1, $p1, 0x1f ! Wipe out useless bits
23 and $p1, $p1, $r0 ! Set WD disable
24 sw $p1, [$p0] ! Write back to WD CR
/u-boot/scripts/coccinelle/null/
A Dkmerr.cocci34 position p1 != withtest.p;
40 *x@p1 = \(malloc\|calloc\)(...);
49 position p1 != withtest.p;
56 x@p1 = \(malloc\|calloc\)(...);
62 p1 << rfixed.p1;
66 cocci.print_main("alloc call",p1)
70 p1 << rfixed.p1;
75 coccilib.report.print_report(p1[0],msg)
A Dbadzero.cocci152 position p1;
159 * E == 0@p1
163 * 0@p1 == E
165 * 0@p1 != E
171 p << t2.p1;
183 p << t2.p1;
/u-boot/arch/nds32/cpu/n1213/
A Dstart.S337 srli $p1, $p1, 3
338 addi $p1, $p1, 1 ! then $p1 is I way number
340 sll $p1, $p1, $t3 ! GET the total cache size
342 sub $p1, $p1, $t5
344 bnez $p1, ICAC_LOOP
372 srli $p1, $p1, 3
373 addi $p1, $p1, 1 ! then $p1 is D way number
375 sll $p1, $p1, $t3 ! GET the total cache size
377 sub $p1, $p1, $t5
517 bne $p0, $p1, 1f
[all …]
/u-boot/test/lib/
A Defi_device_path.c27 struct efi_device_path *p1 = (struct efi_device_path *)d1; in lib_test_efi_dp_check_length() local
31 ut_asserteq((ssize_t)-EINVAL, efi_dp_check_length(p1, SIZE_MAX)); in lib_test_efi_dp_check_length()
32 ut_asserteq((ssize_t)sizeof(d1), efi_dp_check_length(p1, sizeof(d1))); in lib_test_efi_dp_check_length()
34 efi_dp_check_length(p1, sizeof(d1) + 4)); in lib_test_efi_dp_check_length()
35 ut_asserteq((ssize_t)-1, efi_dp_check_length(p1, sizeof(d1) - 1)); in lib_test_efi_dp_check_length()
/u-boot/post/lib_powerpc/fpu/
A Dmul-subnormal-single-1.c60 unsigned int p1, p2, res; member
74 tstmul (expected[i].p1, expected[i].p2, expected[i].res); in fpu_post_test_math7()
75 tstmul (expected[i].p2, expected[i].p1, expected[i].res); in fpu_post_test_math7()
/u-boot/lib/
A Dof_live.c176 const char *p1 = pathp, *ps = pathp, *pa = NULL; in unflatten_dt_node() local
179 while (*p1) { in unflatten_dt_node()
180 if ((*p1) == '@') in unflatten_dt_node()
181 pa = p1; in unflatten_dt_node()
182 if ((*p1) == '/') in unflatten_dt_node()
183 ps = p1 + 1; in unflatten_dt_node()
184 p1++; in unflatten_dt_node()
187 pa = p1; in unflatten_dt_node()
A Dqsort.c70 int strcmp_compar(const void *p1, const void *p2) in strcmp_compar() argument
72 return strcmp(*(const char **)p1, *(const char **)p2); in strcmp_compar()
/u-boot/lib/efi_selftest/
A Defi_selftest_memory.c103 u64 p1; in execute() local
115 EFI_ST_NUM_PAGES, &p1); in execute()
152 if (find_in_memory_map(map_size, memory_map, desc_size, p1, in execute()
160 ret = boottime->free_pages(p1, EFI_ST_NUM_PAGES); in execute()
/u-boot/arch/arm/mach-omap2/omap3/
A Dclock.c123 int xip_safe, p0, p1, p2, p3; in dpll3_init_34xx() local
204 p1 = readl(&prcm_base->clksel1_pll); in dpll3_init_34xx()
208 clrsetbits_le32(&p1, 0x07FF0000, ptr->m << 16); in dpll3_init_34xx()
210 clrsetbits_le32(&p1, 0x00007F00, ptr->n << 8); in dpll3_init_34xx()
212 clrbits_le32(&p1, 0x00000040); in dpll3_init_34xx()
226 (*f_lock_pll) (p0, p1, p2, p3); in dpll3_init_34xx()
380 int xip_safe, p0, p1, p2, p3; in dpll3_init_36xx() local
454 p1 = readl(&prcm_base->clksel1_pll); in dpll3_init_36xx()
460 clrsetbits_le32(&p1, 0x00007F00, ptr->n << 8); in dpll3_init_36xx()
462 clrbits_le32(&p1, 0x00000040); in dpll3_init_36xx()
[all …]
/u-boot/arch/arm/dts/
A Dzynqmp-zc1232-revA.dts77 ceva,p1-cominit-params = /bits/ 8 <0x18 0x40 0x18 0x28>;
78 ceva,p1-comwake-params = /bits/ 8 <0x06 0x14 0x08 0x0E>;
79 ceva,p1-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
80 ceva,p1-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
A Dzynqmp-zc1751-xm015-dc1.dts141 ceva,p1-cominit-params = /bits/ 8 <0x1B 0x4D 0x18 0x28>;
142 ceva,p1-comwake-params = /bits/ 8 <0x06 0x19 0x08 0x0E>;
143 ceva,p1-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
144 ceva,p1-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
A Dzynqmp-zc1751-xm017-dc3.dts181 ceva,p1-cominit-params = /bits/ 8 <0x1B 0x4D 0x18 0x28>;
182 ceva,p1-comwake-params = /bits/ 8 <0x06 0x19 0x08 0x0E>;
183 ceva,p1-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
184 ceva,p1-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
A Dzynqmp-zcu104-revA.dts240 ceva,p1-cominit-params = /bits/ 8 <0x18 0x40 0x18 0x28>;
241 ceva,p1-comwake-params = /bits/ 8 <0x06 0x14 0x08 0x0E>;
242 ceva,p1-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
243 ceva,p1-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
A Dzynqmp-zcu104-revC.dts253 ceva,p1-cominit-params = /bits/ 8 <0x18 0x40 0x18 0x28>;
254 ceva,p1-comwake-params = /bits/ 8 <0x06 0x14 0x08 0x0E>;
255 ceva,p1-burst-params = /bits/ 8 <0x13 0x08 0x4A 0x06>;
256 ceva,p1-retry-params = /bits/ 16 <0x96A4 0x3FFC>;
/u-boot/tools/
A Dpblimage.c145 unsigned char *p1; in reverse_byte() local
149 p1 = (unsigned char *)&temp; in reverse_byte()
151 *p1++ = (val >> (j * 8)) & 0xff; in reverse_byte()
/u-boot/cmd/
A Dmem.c939 volatile unsigned long *p1 = bufa; in compare_regions() local
944 for (i = 0; i < count; i++, p1++, p2++) { in compare_regions()
945 if (*p1 != *p2) { in compare_regions()
947 (unsigned long)*p1, (unsigned long)*p2, in compare_regions()
948 *p1 ^ *p2, __ffs(*p1 ^ *p2), in compare_regions()
960 volatile unsigned long *p1 = bufa; in test_bitflip_comparison() local
974 p1 = (volatile unsigned long *)bufa; in test_bitflip_comparison()
977 *p1++ = *p2++ = (i % 2) == 0 ? q : ~q; in test_bitflip_comparison()
/u-boot/arch/nds32/include/asm/
A Dptrace.h42 NDS32_REG p1; /* r27 - used by OS */ member
/u-boot/arch/sandbox/cpu/
A Dstart.c29 static int h_compare_opt(const void *p1, const void *p2) in h_compare_opt() argument
31 const struct sandbox_cmdline_option *opt1 = p1; in h_compare_opt()
36 opt1 = *(struct sandbox_cmdline_option **)p1; in h_compare_opt()
/u-boot/arch/x86/include/asm/
A Dmsr.h159 #define rdmsr_safe(msr, p1, p2) \ argument
163 (*p1) = (u32)__val; \
/u-boot/board/phytec/pfla02/
A Dpfla02.c609 u32 *p, *p1; in pfla02_detect_chiptype() local
615 p1 = (u32 *)(PHYS_SDRAM + (i + 1) * offset); in pfla02_detect_chiptype()
617 *p1 = 0; in pfla02_detect_chiptype()
626 if (*p == *p1) in pfla02_detect_chiptype()

Completed in 23 milliseconds

123