Lines Matching refs:scratch
121 Elf_Rela *scratch = NULL;
168 scratch_size_needed = (num_scratch_relas + num_relas) * sizeof(*scratch);
171 scratch = kvrealloc(scratch, scratch_size, GFP_KERNEL);
172 if (!scratch)
178 scratch[num_scratch_relas++] = relas[j];
181 if (scratch) {
183 sort(scratch, num_scratch_relas, sizeof(*scratch), cmp_rela, NULL);
184 count_max_entries(scratch, num_scratch_relas, &num_plts, &num_gots);
185 kvfree(scratch);