Searched refs:first_arg (Results 1 – 7 of 7) sorted by relevance
/openbmc/linux/rust/alloc/vec/ |
H A D | is_zero.rs | 79 ($first_arg:ident $(,$rest:ident)*) => { 80 unsafe impl <$first_arg: IsZero, $($rest: IsZero,)*> IsZero for ($first_arg, $($rest,)*){ 86 let ($first_arg, $($rest,)*) = self; 88 $first_arg.is_zero()
|
/openbmc/linux/drivers/acpi/acpica/ |
H A D | dswexec.c | 334 union acpi_parse_object *first_arg; in acpi_ds_exec_end_op() local 352 first_arg = op->common.value.arg; in acpi_ds_exec_end_op() 385 status = acpi_ds_create_operands(walk_state, first_arg); in acpi_ds_exec_end_op() 496 next_op = first_arg; in acpi_ds_exec_end_op()
|
H A D | dsutils.c | 664 union acpi_parse_object *first_arg) in acpi_ds_create_operands() argument 673 ACPI_FUNCTION_TRACE_PTR(ds_create_operands, first_arg); in acpi_ds_create_operands() 677 arg = first_arg; in acpi_ds_create_operands()
|
H A D | acdispat.h | 265 union acpi_parse_object *first_arg);
|
/openbmc/u-boot/scripts/ |
H A D | kernel-doc | 1399 my @first_arg; 1402 push(@first_arg, split('\s+', $1)); 1403 push(@first_arg, $2); 1405 @first_arg = split('\s+', shift @args); 1408 unshift(@args, pop @first_arg); 1409 $type = join " ", @first_arg;
|
/openbmc/qemu/scripts/ |
H A D | kernel-doc | 1547 my @first_arg; 1550 push(@first_arg, split('\s+', $1)); 1551 push(@first_arg, $2); 1553 @first_arg = split('\s+', shift @args); 1556 unshift(@args, pop @first_arg); 1557 $type = join " ", @first_arg;
|
/openbmc/linux/scripts/ |
H A D | kernel-doc | 1520 my @first_arg; 1523 push(@first_arg, split('\s+', $1)); 1524 push(@first_arg, $2); 1526 @first_arg = split('\s+', shift @args); 1529 unshift(@args, pop @first_arg); 1530 $type = join " ", @first_arg;
|