Home
last modified time | relevance | path

Searched refs:ap (Results 1 – 25 of 37) sorted by relevance

12

/rk3399_rockchip-uboot/cmd/
H A Dtest.c56 char * const *ap; in do_test() local
73 ap = argv + 1; in do_test()
82 if (!strcmp(ap[op_adv[i].arg], op_adv[i].str)) { in do_test()
99 expr = strlen(ap[1]) == 0 ? 1 : 0; in do_test()
102 expr = strlen(ap[1]) == 0 ? 0 : 1; in do_test()
105 expr = strcmp(ap[0], ap[2]) == 0; in do_test()
108 expr = strcmp(ap[0], ap[2]) != 0; in do_test()
111 expr = strcmp(ap[0], ap[2]) < 0; in do_test()
114 expr = strcmp(ap[0], ap[2]) > 0; in do_test()
117 expr = simple_strtol(ap[0], NULL, 10) == in do_test()
[all …]
/rk3399_rockchip-uboot/api/
H A Dapi.c51 static int API_getc(va_list ap) in API_getc() argument
55 if ((c = (int *)va_arg(ap, uintptr_t)) == NULL) in API_getc()
67 static int API_tstc(va_list ap) in API_tstc() argument
71 if ((t = (int *)va_arg(ap, uintptr_t)) == NULL) in API_tstc()
83 static int API_putc(va_list ap) in API_putc() argument
87 if ((c = (char *)va_arg(ap, uintptr_t)) == NULL) in API_putc()
99 static int API_puts(va_list ap) in API_puts() argument
103 if ((s = (char *)va_arg(ap, uintptr_t)) == NULL) in API_puts()
115 static int API_reset(va_list ap) in API_reset() argument
131 static int API_get_sys_info(va_list ap) in API_get_sys_info() argument
[all …]
/rk3399_rockchip-uboot/drivers/ata/
H A Dsata_dwc.c164 #define HSDEVP_FROM_AP(ap) (struct sata_dwc_device_port*) \ argument
165 (ap)->private_data
209 static struct ata_port ap; variable
210 static struct ata_port *pap = &ap;
225 static u8 ata_irq_on(struct ata_port *ap);
226 static struct ata_queued_cmd *__ata_qc_from_tag(struct ata_port *ap,
228 static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
230 static void ata_tf_to_host(struct ata_port *ap,
232 static void ata_exec_command(struct ata_port *ap,
235 static u8 ata_check_altstatus(struct ata_port *ap);
[all …]
H A Dsata_dwc.h58 struct ata_port *ap; member
405 struct ata_port *ap; member
/rk3399_rockchip-uboot/drivers/mtd/nand/raw/brcmnand/
H A Dbrcmnand_compat.c37 va_list ap) in devm_kvasprintf() argument
43 va_copy(aq, ap); in devm_kvasprintf()
51 vsnprintf(p, len + 1, fmt, ap); in devm_kvasprintf()
58 va_list ap; in devm_kasprintf() local
61 va_start(ap, fmt); in devm_kasprintf()
62 p = devm_kvasprintf(dev, gfp, fmt, ap); in devm_kasprintf()
63 va_end(ap); in devm_kasprintf()
/rk3399_rockchip-uboot/lib/avb/libavb/
H A Davb_sysdeps_posix.c72 va_list ap; in avb_printv() local
75 va_start(ap, message); in avb_printv()
76 for (m = message; m != NULL; m = va_arg(ap, const char*)) { in avb_printv()
79 va_end(ap); in avb_printv()
H A Davb_util.c346 va_list ap; in avb_strdupv() local
355 va_start(ap, str); in avb_strdupv()
369 str = va_arg(ap, const char*); in avb_strdupv()
371 va_end(ap); in avb_strdupv()
/rk3399_rockchip-uboot/arch/arm/include/asm/
H A Darmv7m_mpu.h19 enum ap { enum
60 enum ap ap; member
/rk3399_rockchip-uboot/scripts/dtc/
H A Dutil.h40 va_list ap; in die() local
42 va_start(ap, str); in die()
44 vfprintf(stderr, str, ap); in die()
45 va_end(ap); in die()
H A Ddtc-lexer.l298 va_list ap;
300 va_start(ap, fmt);
301 srcpos_verror(&yylloc, "Lexical error", fmt, ap);
302 va_end(ap);
H A Dutil.c54 va_list ap; in xasprintf() local
62 va_start(ap, fmt); in xasprintf()
63 n = vsnprintf(p, size, fmt, ap); in xasprintf()
64 va_end(ap); in xasprintf()
/rk3399_rockchip-uboot/drivers/core/
H A Dof_access.c763 static void of_alias_add(struct alias_prop *ap, struct device_node *np, in of_alias_add() argument
767 ap->np = np; in of_alias_add()
768 ap->id = id; in of_alias_add()
769 strncpy(ap->stem, stem, stem_len); in of_alias_add()
770 ap->stem[stem_len] = 0; in of_alias_add()
786 list_add_tail(&ap->link, &aliases_lookup); in of_alias_add()
788 ap->alias, ap->stem, ap->id, of_node_full_name(np)); in of_alias_add()
816 struct alias_prop *ap; in of_alias_scan() local
842 ap = malloc(sizeof(*ap) + len + 1); in of_alias_scan()
843 if (!ap) in of_alias_scan()
[all …]
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dutil.c117 va_list ap; in str_printf() local
119 va_start(ap, fmt); in str_printf()
120 vsnprintf(s, sizeof(s), fmt, ap); in str_printf()
122 va_end(ap); in str_printf()
H A Dconfdata.c37 va_list ap; in conf_warning() local
38 va_start(ap, fmt); in conf_warning()
40 vfprintf(stderr, fmt, ap); in conf_warning()
42 va_end(ap); in conf_warning()
46 static void conf_default_message_callback(const char *fmt, va_list ap) in conf_default_message_callback() argument
49 vprintf(fmt, ap); in conf_default_message_callback()
53 static void (*conf_message_callback) (const char *fmt, va_list ap) =
55 void conf_set_message_callback(void (*fn) (const char *fmt, va_list ap)) in conf_set_message_callback() argument
62 va_list ap; in conf_message() local
64 va_start(ap, fmt); in conf_message()
[all …]
H A Dzconf.y572 va_list ap; in zconfprint() local
575 va_start(ap, err); in zconfprint()
576 vfprintf(stderr, err, ap); in zconfprint()
577 va_end(ap); in zconfprint()
583 va_list ap; in zconf_error() local
587 va_start(ap, err); in zconf_error()
588 vfprintf(stderr, err, ap); in zconf_error()
589 va_end(ap); in zconf_error()
H A Dmenu.c23 va_list ap; in menu_warn() local
24 va_start(ap, fmt); in menu_warn()
26 vfprintf(stderr, fmt, ap); in menu_warn()
28 va_end(ap); in menu_warn()
33 va_list ap; in prop_warn() local
34 va_start(ap, fmt); in prop_warn()
36 vfprintf(stderr, fmt, ap); in prop_warn()
38 va_end(ap); in prop_warn()
H A Dnconf.c527 va_list ap; in item_make() local
541 va_start(ap, fmt); in item_make()
544 fmt, ap); in item_make()
545 va_end(ap); in item_make()
567 va_list ap; in item_add_str() local
575 va_start(ap, fmt); in item_add_str()
576 vsnprintf(new_str, sizeof(new_str), fmt, ap); in item_add_str()
577 va_end(ap); in item_add_str()
1213 static void conf_message_callback(const char *fmt, va_list ap) in conf_message_callback() argument
1217 vsnprintf(buf, sizeof(buf), fmt, ap); in conf_message_callback()
H A Dlkc_proto.h12 void conf_set_message_callback(void (*fn)(const char *fmt, va_list ap));
/rk3399_rockchip-uboot/arch/arm/mach-omap2/
H A Dsec-common.c62 va_list ap; in secure_rom_call() local
64 va_start(ap, flag); in secure_rom_call()
66 num_args = va_arg(ap, u32); in secure_rom_call()
69 va_end(ap); in secure_rom_call()
75 secure_rom_call_args[i + 1] = va_arg(ap, u32); in secure_rom_call()
79 va_end(ap); in secure_rom_call()
/rk3399_rockchip-uboot/arch/arm/dts/
H A Darmada-ap806.dtsi143 ap_pinctl: ap-pinctl@6F4000 {
257 clock-output-names = "ap-cpu-cluster-0",
258 "ap-cpu-cluster-1",
259 "ap-fixed", "ap-mss";
H A Drk3288-veyron-chromebook.dtsi156 ap_lid_int_l: ap-lid-int-l {
162 ac_present_ap: ac-present-ap {
/rk3399_rockchip-uboot/scripts/kconfig/lxdialog/
H A Dutil.c596 va_list ap; in item_make() local
606 va_start(ap, fmt); in item_make()
607 vsnprintf(item_cur->node.str, sizeof(item_cur->node.str), fmt, ap); in item_make()
608 va_end(ap); in item_make()
613 va_list ap; in item_add_str() local
618 va_start(ap, fmt); in item_add_str()
620 avail, fmt, ap); in item_add_str()
622 va_end(ap); in item_add_str()
/rk3399_rockchip-uboot/common/
H A Dlrz.c291 va_list ap;
296 VA_START(ap, fmt);
297 vfprintf(stderr,fmt, ap);
298 va_end(ap);
313 va_list ap;
319 VA_START(ap, fmt);
320 vfprintf(stderr,fmt, ap);
321 va_end(ap);
336 va_list ap;
340 VA_START(ap, format);
[all …]
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/
H A Dmpu.c80 writel(reg_config->xn << XN_SHIFT | reg_config->ap << AP_SHIFT | attr in mpu_config()
/rk3399_rockchip-uboot/arch/arm/mach-tegra/
H A DMakefile18 obj-y += ap.o

12