Lines Matching refs:value
120 ACPI_FORMAT_UINT64(obj_desc->integer.value));
281 * PARAMETERS: value - The value to be converted to string
286 * DESCRIPTION: Convert the unsigned 32-bit value to the hexadecimal image
293 void acpi_db_uint32_to_hex_string(u32 value, char *buffer)
297 if (value == 0) {
305 buffer[i] = acpi_gbl_upper_hex_digits[value & 0x0F];
306 value = value >> 4;
369 (method->common.value.arg)->common.aml_offset + 1;
370 start_op = (method->common.value.arg)->common.next;