Lines Matching defs:value
24 * FDT error value otherwise.
27 unsigned int cells, uint32_t *value)
34 assert(value != NULL);
51 value[i] = fdt32_to_cpu(prop[i]);
58 uint32_t *value)
60 return fdt_read_uint32_array(dtb, node, prop_name, 1, value);
77 uint64_t *value)
87 *value = ((uint64_t)array[0] << 32) | array[1];
97 unsigned int length, void *value)
104 assert(value != NULL);
121 (void)memcpy(value, ptr, length);
160 * and a negative value upon error.
196 unsigned int cells, void *value)
202 assert(value != NULL);
209 *(fdt64_t *)value = cpu_to_fdt64(*(uint64_t *)value);
211 *(fdt32_t *)value = cpu_to_fdt32(*(uint32_t *)value);
215 /* Set property value in place */
216 err = fdt_setprop_inplace(dtb, node, prop, value, len);
256 /* Set property value in place */
337 * It reads the value indicated inside the device tree.
395 static bool fdtw_xlat_hit(const fdt32_t *value, int child_addr_size,
401 local_address = fdt_read_prop_cells(value, child_addr_size);
402 parent_address = fdt_read_prop_cells(value + child_addr_size,
404 addr_range = fdt_read_prop_cells(value + child_addr_size +
580 * pointer to the FDT and the offset of the CPU node. If the return value of the
582 * this situation, the value of the callback is returned from the function.