Lines Matching +full:0 +full:xfff
35 rom_arg.pointer = &rom_arg_elements[0]; in acpi_read_bios()
37 rom_arg_elements[0].type = ACPI_TYPE_INTEGER; in acpi_read_bios()
38 rom_arg_elements[0].integer.value = offset; in acpi_read_bios()
66 u32 limit = (offset + length + 0xfff) & ~0xfff; in acpi_read_fast()
67 u32 start = offset & ~0x00000fff; in acpi_read_fast()
70 if (nvbios_extend(bios, limit) >= 0) { in acpi_read_fast()
76 return 0; in acpi_read_fast()
87 u32 limit = (offset + length + 0xfff) & ~0xfff; in acpi_read_slow()
88 u32 start = offset & ~0xfff; in acpi_read_slow()
89 u32 fetch = 0; in acpi_read_slow()
91 if (nvbios_extend(bios, limit) >= 0) { in acpi_read_slow()
94 start + fetch, 0x1000); in acpi_read_slow()
95 if (ret != 0x1000) in acpi_read_slow()
97 fetch += 0x1000; in acpi_read_slow()