Home
last modified time | relevance | path

Searched refs:p2 (Results 1 – 25 of 30) sorted by relevance

12

/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;
32 *x =@p2 E
40 position r.p1,r.p2;
44 x =@p2 E
50 p2 << r.p2;
54 cocci.print_secs("update",p2)
58 p2 << r.p2;
61 msg = "iterator with update on line %s" % (p2[0].line)
A Ditnull.cocci67 position p1,p2;
73 * x@p2 == NULL
75 * x@p2 != NULL
82 p2 << r.p2;
86 cocci.print_secs("useless NULL test",p2)
90 p2 << r.p2;
94 coccilib.report.print_report(p2[0], msg)
A Duse_after_iter.cocci37 position p1,p2;
130 *c@p2
135 p2 << r.p2;
138 cocci.print_main("invalid iterator index reference",p2)
143 p2 << r.p2;
147 coccilib.report.print_report(p2[0], msg)
/u-boot/board/nokia/rx51/
A Dtag_omap.h232 #define OMAP_TAG_SERIAL_CONSOLE_CONFIG(p1, p2) \ argument
237 .u.serial_console.console_speed = p2, \
240 #define OMAP_TAG_LCD_CONFIG(p1, p2, p3, p4) \ argument
244 .u.lcd.ctrl_name = p2, \
249 #define OMAP_TAG_GPIO_SWITCH_CONFIG(p1, p2, p3, p4, p5) \ argument
254 .u.gpio_switch.gpio = p2, \
265 .u.wlan_cx3110x.reserverd = p2, \
271 #define OMAP_TAG_PARTITION_CONFIG(p1, p2, p3, p4) \ argument
276 .u.partition.size = p2, \
288 #define OMAP_TAG_VERSION_STR_CONFIG(p1, p2) \ argument
[all …]
/u-boot/scripts/coccinelle/null/
A Dkmerr.cocci50 position p2;
58 x1@p = f@p2(...);
63 p2 << rfixed.p2;
67 cocci.print_secs("possible model",p2)
71 p2 << rfixed.p2;
74 msg = "alloc with no test, possible model on line %s" % (p2[0].line)
A Dbadzero.cocci153 position p2;
161 * E != 0@p2
177 p << t2.p2;
189 p << t2.p2;
/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/efi_selftest/
A Defi_selftest_memory.c104 u64 p2; in execute() local
122 EFI_ST_NUM_PAGES, &p2); in execute()
155 if (find_in_memory_map(map_size, memory_map, desc_size, p2, in execute()
165 ret = boottime->free_pages(p2, 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
214 p2 = readl(&prcm_base->clksel_core); in dpll3_init_34xx()
216 clrsetbits_le32(&p2, 0x00000F00, CORE_SSI_DIV << 8); in dpll3_init_34xx()
220 clrsetbits_le32(&p2, 0x0000000C, CORE_L4_DIV << 2); in dpll3_init_34xx()
222 clrsetbits_le32(&p2, 0x00000003, CORE_L3_DIV); 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
464 p2 = readl(&prcm_base->clksel_core); in dpll3_init_36xx()
470 clrsetbits_le32(&p2, 0x0000000C, CORE_L4_DIV << 2); in dpll3_init_36xx()
472 clrsetbits_le32(&p2, 0x00000003, CORE_L3_DIV); in dpll3_init_36xx()
[all …]
/u-boot/lib/
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()
A Dhashtable.c544 static int cmpkey(const void *p1, const void *p2) in cmpkey() argument
547 struct env_entry *e2 = *(struct env_entry **)p2; in cmpkey()
A Dbch.c245 const uint32_t *pdata, *p0, *p1, *p2, *p3; in encode_bch() local
286 p2 = tab2 + (l+1)*((w >> 16) & 0xff); in encode_bch()
290 r[i] = r[i+1]^p0[i]^p1[i]^p2[i]^p3[i]; in encode_bch()
292 r[l] = p0[l]^p1[l]^p2[l]^p3[l]; in encode_bch()
/u-boot/test/lib/
A Defi_device_path.c28 struct efi_device_path *p2 = (struct efi_device_path *)d2; in lib_test_efi_dp_check_length() local
37 ut_asserteq((ssize_t)-1, efi_dp_check_length(p2, sizeof(d2))); in lib_test_efi_dp_check_length()
/u-boot/scripts/kconfig/
A Dconfdata.c164 char *p2; in conf_set_sym_val() local
191 for (p2 = p; *p2 && !isspace(*p2); p2++) in conf_set_sym_val()
288 char *p, *p2; in conf_read_simple() local
386 p2 = strchr(p, '\n'); in conf_read_simple()
387 if (p2) { in conf_read_simple()
388 *p2-- = 0; in conf_read_simple()
389 if (*p2 == '\r') in conf_read_simple()
390 *p2 = 0; in conf_read_simple()
/u-boot/cmd/
A Dmem.c940 volatile unsigned long *p2 = bufb; 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()
961 volatile unsigned long *p2 = bufb; in test_bitflip_comparison() local
975 p2 = (volatile unsigned long *)bufb; in test_bitflip_comparison()
977 *p1++ = *p2++ = (i % 2) == 0 ? q : ~q; in test_bitflip_comparison()
/u-boot/arch/sandbox/cpu/
A Dstart.c29 static int h_compare_opt(const void *p1, const void *p2) in h_compare_opt() argument
32 const struct sandbox_cmdline_option *opt2 = p2; in h_compare_opt()
37 opt2 = *(struct sandbox_cmdline_option **)p2; in h_compare_opt()
/u-boot/arch/x86/include/asm/
A Dmsr.h159 #define rdmsr_safe(msr, p1, p2) \ argument
164 (*p2) = (u32)(__val >> 32); \
/u-boot/drivers/cpu/
A Dbmips_cpu.c244 unsigned int tmp, p1, p2, ndiv, m1; in bcm6368_get_cpu_freq() local
248 p2 = (tmp & DMIPSPLLCFG_6368_P2_MASK) >> DMIPSPLLCFG_6368_P2_SHIFT; in bcm6368_get_cpu_freq()
255 return (((64 * 1000000) / p1) * p2 * ndiv) / m1; in bcm6368_get_cpu_freq()
/u-boot/arch/x86/cpu/
A Dmtrr.c131 static int h_comp_mtrr(const void *p1, const void *p2) in h_comp_mtrr() argument
134 const struct mtrr_request *req2 = p2; in h_comp_mtrr()
/u-boot/arch/arm/dts/
A Dkirkwood-openrd.dtsi74 p2 {
/u-boot/include/power/
A Dpmic.h60 struct pmic *p2, struct pmic *p3);
/u-boot/board/k+p/bootscripts/
A Dtpcboot.cmd22 setenv mmcroot "/dev/mmcblk${devnum}p2 rootwait rw"
/u-boot/drivers/tee/
A Dsandbox.c79 static u32 check_params(u8 p0, u8 p1, u8 p2, u8 p3, uint num_params, in check_params() argument
82 u8 p[] = { p0, p1, p2, p3}; in check_params()
/u-boot/doc/board/actions/
A Dcubieboard7.rst79 36% write p2 size = 98304 : ok
/u-boot/common/
A Dcli_hush.c3583 char *p1, *p2, *p3; local
3595 if ((p2 = strchr(p1, ' '))) {
3596 len = p2 - p1;
3599 p2 = p1 + len;
3609 p1 = p2;

Completed in 55 milliseconds

12