Lines Matching full:scratch
119 Elf_Rela *scratch = NULL;
167 scratch_size_needed = (num_scratch_relas + num_relas) * sizeof(*scratch);
170 new_scratch = kvrealloc(scratch, scratch_size, GFP_KERNEL);
172 kvfree(scratch);
175 scratch = new_scratch;
180 scratch[num_scratch_relas++] = relas[j];
183 if (scratch) {
185 sort(scratch, num_scratch_relas, sizeof(*scratch), cmp_rela, NULL);
186 count_max_entries(scratch, num_scratch_relas, &num_plts, &num_gots);
187 kvfree(scratch);