Lines Matching defs:output
8 * output functions and related debugging support functions.
185 static void handle_relocations(void *output, unsigned long output_len,
190 unsigned long min_addr = (unsigned long)output;
241 for (reloc = output + output_len - sizeof(*reloc); *reloc; reloc--) {
275 static inline void handle_relocations(void *output, unsigned long output_len,
280 static size_t parse_elf(void *output)
292 memcpy(&ehdr, output, sizeof(ehdr));
305 memcpy(phdrs, output + ehdr.e_phoff, sizeof(*phdrs) * ehdr.e_phnum);
317 dest = output;
322 memmove(dest, output + phdr->p_offset, phdr->p_filesz);
377 asmlinkage __visible void *extract_kernel(void *rmode, unsigned char *output)
417 * so that early debugging output from the RSDP parsing code can be
446 debug_putaddr(output);
457 (unsigned long *)&output,
462 if ((unsigned long)output & (MIN_KERNEL_ALIGN - 1))
484 accept_memory(__pa(output), __pa(output) + needed_size);
487 entry_offset = decompress_kernel(output, virt_addr, error);
496 return output + entry_offset;