Lines Matching refs:value

23 		       u32 field_datum_byte_offset, u64 *value, u32 read_write);
26 acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value);
186 * value - Where to store value (must at least
199 u32 field_datum_byte_offset, u64 *value, u32 function)
251 value);
277 * value - Value to be stored
279 * RETURN: TRUE if value overflows the field, FALSE otherwise
281 * DESCRIPTION: Check if a value is out of range of the field being written.
283 * are out of range. Normally, the value is simply truncated
290 acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value)
301 if (value >= ((u64) 1 << obj_desc->common_field.bit_length)) {
303 * The Value is larger than the maximum value that can fit into
307 "Index value 0x%8.8X%8.8X overflows field width 0x%X",
308 ACPI_FORMAT_UINT64(value),
326 * value - Where to store value (must be 64 bits)
339 u32 field_datum_byte_offset, u64 *value, u32 read_write)
347 if (!value) {
350 /* To support reads without saving return value */
351 value = &local_value;
356 *value = 0;
387 memcpy(value,
401 field_datum_byte_offset, value,
415 value)) {
425 &obj_desc->bank_field.value,
427 value));
446 value, read_write);
456 value)) {
460 /* Write the index value to the index_register (itself a region_field) */
462 field_datum_byte_offset += obj_desc->index_field.value;
485 data_obj, value,
492 ACPI_FORMAT_UINT64(*value)));
496 data_obj, value,
513 ACPI_FORMAT_UINT64(*value),
519 ACPI_FORMAT_UINT64(*value),
576 * the field, and merge with the new field value.
608 "Unknown UpdateRule value: 0x%X",
624 /* Write the merged value */
643 * DESCRIPTION: Retrieve the current value of the given field
746 * Note: Before the shift, check if the shift value will be larger than
911 * Note: Before the shift, check if the shift value will be larger than