Searched refs:array (Results 1 - 22 of 22) sorted by relevance

/u-boot/post/lib_powerpc/fpu/
H A Dacc1.c18 static double func (const double *array) argument
20 double d = *array;
25 return d + func (array + 1);
/u-boot/cmd/
H A D2048.c83 static int8_t findTarget(u16 array[SIZE], int x, int stop) argument
91 if (array[t]) {
92 if (array[t] != array[x]) {
107 static bool slideArray(u16 array[SIZE]) argument
113 if (array[x] != 0) {
114 t = findTarget(array, x, stop);
124 if (array[t]) {
125 score += array[t] + array[
274 u16 array[SIZE]; local
[all...]
/u-boot/include/acpi/
H A Dacpi_dp.h81 * @ACPI_DP_TYPE_ARRAY: Array of items with first item in @array and following
101 * @next: Next object in list (next array element or next sibling)
103 * @array: First array element, if @type == ACPI_DP_TYPE_ARRAY, else NULL
115 struct acpi_dp *array; member in union:acpi_dp::__anon252
171 * acpi_dp_add_array() - Add array Device Property
173 * A new node is added to the end of the property list of @dp, with the array
180 struct acpi_dp *acpi_dp_add_array(struct acpi_dp *dp, struct acpi_dp *array);
183 * acpi_dp_add_integer_array() - Add an array of integers
185 * A new node is added to the end of the property list of @dp, with the array
[all...]
/u-boot/lib/acpi/
H A Dacpi_dp.c18 const struct acpi_dp *array);
35 acpi_dp_write_array(ctx, prop->array);
52 /* Write array of Device Properties */
54 const struct acpi_dp *array)
63 * Only acpi_dp of type DP_TYPE_TABLE is allowed to be an array.
65 * the loop from next type in the array.
67 for (dp = array->next; dp; dp = dp->next) {
86 acpi_dp_free(dp->array);
284 struct acpi_dp *acpi_dp_add_array(struct acpi_dp *dp, struct acpi_dp *array) argument
289 assert(array);
53 acpi_dp_write_array(struct acpi_ctx *ctx, const struct acpi_dp *array) argument
300 acpi_dp_add_integer_array(struct acpi_dp *dp, const char *name, u64 *array, int len) argument
[all...]
/u-boot/board/toradex/common/
H A Dtdx-common.c54 int array[8]; local
69 array[i--] = serial % 10;
73 array[i--] = 0;
74 serial = array[0];
77 serial += array[i];
/u-boot/drivers/ram/stm32mp1/
H A Dstm32mp1_interactive.c313 const struct test_desc array[],
325 i, array[i].name, array[i].usage);
332 array[i].name, array[i].usage, array[i].help);
344 if (argc > (array[value].max_args + 2)) {
346 argc - 2, array[value].max_args);
351 printf("execute %d:%s\n", (int)value, array[value].name);
353 result = array[valu
311 stm32mp1_ddr_subcmd(struct ddr_info *priv, int argc, char *argv[], const struct test_desc array[], const int array_nb) argument
[all...]
/u-boot/arch/arm/include/asm/arch-omap5/
H A Dsys_proto.h49 void do_set_mux(u32 base, struct pad_conf_entry const *array, int size);
50 void do_set_mux32(u32 base, struct pad_conf_entry const *array, int size);
H A Ddra7xx_iodelay.h90 int do_set_iodelay(u32 base, struct iodelay_cfg_entry const *array,
/u-boot/arch/arm/mach-mvebu/
H A Dlowlevel.S25 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
/u-boot/arch/arm/include/asm/arch-omap4/
H A Dsys_proto.h45 void do_set_mux(u32 base, struct pad_conf_entry const *array, int size);
/u-boot/arch/arm/mach-omap2/
H A Dhwinit-common.c30 void do_set_mux(u32 base, struct pad_conf_entry const *array, int size) argument
33 struct pad_conf_entry *pad = (struct pad_conf_entry *) array;
/u-boot/arch/arm/mach-stm32mp/stm32mp1/
H A Dfdt.c268 const u32 *array; local
274 array = stm32mp13_ip_addr;
279 array = stm32mp15_ip_addr;
290 addr = array[i];
/u-boot/include/
H A Dfdtdec.h618 * uninitialised array, then setting the elements that are returned to -1,
706 * array of given length. The property must have at least enough data for
707 * the array (4*count bytes). It may have more, but this will be ignored.
712 * @param array array to fill with data
713 * @param count number of array elements
718 u32 *array, int count);
722 * array of given length. The property must exist but may have less data that
728 * @param array array t
[all...]
/u-boot/arch/arm/mach-omap2/omap5/
H A Ddra7xx_iodelay.c142 int do_set_iodelay(u32 base, struct iodelay_cfg_entry const *array, argument
145 struct iodelay_cfg_entry *iodelay = (struct iodelay_cfg_entry *)array;
H A Dhwinit.c45 void do_set_mux32(u32 base, struct pad_conf_entry const *array, int size) argument
48 struct pad_conf_entry *pad = (struct pad_conf_entry *)array;
/u-boot/scripts/dtc/
H A Ddtc-parser.y48 } array;
82 %type <array> arrayprefix
375 " %d-bit array element", $1.bits);
/u-boot/test/py/tests/
H A Dtest_mmc.py41 array = output.split()
44 controllers = int(len(array) / 2)
48 devices[x]['name'] = array[y]
/u-boot/drivers/input/
H A Dinput.c249 * translation array should be used as a result.
320 * Search an int array for a key value
322 * @param array Array to search
323 * @param count Number of elements in array
327 static int array_search(int *array, int count, int key) argument
332 if (array[i] == key)
340 * Sort an array so that those elements that exist in the ordering are
341 * first in the array, and in the same order as the ordering. The algorithm
346 * @param dest Array with elements to sort, also destination array
/u-boot/lib/
H A Dfdtdec.c683 u32 *array, int count)
695 array[i] = fdt32_to_cpu(cell[i]);
701 const char *prop_name, u32 *array, int count)
715 array[i] = fdt32_to_cpu(cell[i]);
866 u8 *array, int count)
873 memcpy(array, cell, count);
682 fdtdec_get_int_array(const void *blob, int node, const char *prop_name, u32 *array, int count) argument
700 fdtdec_get_int_array_count(const void *blob, int node, const char *prop_name, u32 *array, int count) argument
865 fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, u8 *array, int count) argument
/u-boot/arch/arm/cpu/armv7/
H A Dstart.S219 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
/u-boot/scripts/
H A Dcheckpatch.pl400 my @array = split(/,/, join(',', @$arrayRef));
401 foreach my $word (@array) {
672 # two dimensional array storing minimum edit distance
783 ["module_param_(?:array|named|string)", 4],
2378 my $line = $old_line; #don't modify the array
4683 "static const char * array should probably be static const char * const\n" .
4690 "const array should probably be static const\n" . $herecurr) &&
4699 "static char array declaration should probably be static const char\n" .
4703 # check for const <foo> const where <foo> is not a pointer or array type
4730 "char * array declaratio
[all...]
/u-boot/
H A DMakefile767 KBUILD_CFLAGS += $(call cc-disable-warning, array-bounds)

Completed in 208 milliseconds