Home
last modified time | relevance | path

Searched refs:pvalue (Results 1 – 7 of 7) sorted by relevance

/openbmc/qemu/hw/xen/
H A Dxen-host-pci-device.c200 unsigned int *pvalue, int base, Error **errp) in xen_host_pci_get_value() argument
228 *pvalue = value; in xen_host_pci_get_value()
239 unsigned int *pvalue, in xen_host_pci_get_hex_value() argument
242 xen_host_pci_get_value(d, name, pvalue, 16, errp); in xen_host_pci_get_hex_value()
247 unsigned int *pvalue, in xen_host_pci_get_dec_value() argument
250 xen_host_pci_get_value(d, name, pvalue, 10, errp); in xen_host_pci_get_dec_value()
/openbmc/u-boot/arch/x86/cpu/
H A Dlapic.c100 int lapic_remote_read(int apicid, int reg, unsigned long *pvalue) in lapic_remote_read() argument
117 *pvalue = lapic_read(LAPIC_RRR); in lapic_remote_read()
/openbmc/qemu/scripts/
H A Dget_maintainer.pl930 my $pvalue = $2;
932 $role = $pvalue;
980 my $pvalue = $2;
982 my $list_address = $pvalue;
1016 my ($name, $address) = parse_email($pvalue);
1023 $pvalue = format_email($name, $address, $email_usename);
1030 push_email_addresses($pvalue, $role);
1033 my ($name, $address) = parse_email($pvalue);
1040 $pvalue = format_email($name, $address, $email_usename);
1047 push_email_addresses($pvalue, "reviewer:$subsystem");
[all …]
/openbmc/u-boot/arch/x86/include/asm/
H A Dlapic.h73 int lapic_remote_read(int apicid, int reg, unsigned long *pvalue);
/openbmc/u-boot/scripts/
H A Dget_maintainer.pl1217 my $pvalue = $2;
1219 $role = $pvalue;
1267 my $pvalue = $2;
1269 my $list_address = $pvalue;
1303 my ($name, $address) = parse_email($pvalue);
1310 $pvalue = format_email($name, $address, $email_usename);
1317 push_email_addresses($pvalue, $role);
1320 my ($name, $address) = parse_email($pvalue);
1327 $pvalue = format_email($name, $address, $email_usename);
1334 push_email_addresses($pvalue, "reviewer:$subsystem");
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl/
H A D0003-Add-compatibility-for-gcc-15-869.patch196 @@ -1068,11 +1068,11 @@ int sasl_getprop(sasl_conn_t *conn, int propnum, const void **pvalue)
/openbmc/qemu/linux-user/
H A Dsyscall.c10961 struct itimerval value, ovalue, *pvalue; in _syscall2() local
10964 pvalue = &value; in _syscall2()
10965 if (copy_from_user_timeval(&pvalue->it_interval, arg2) in _syscall2()
10966 || copy_from_user_timeval(&pvalue->it_value, in _syscall2()
10970 pvalue = NULL; in _syscall2()
10972 ret = get_errno(setitimer(arg1, pvalue, &ovalue)); in _syscall2()