Lines Matching refs:i
169 #define SPECIAL(i) ((i) - (SHN_HIRESERVE + 1)) argument
171 static inline int is_shndx_special(unsigned int i) in is_shndx_special() argument
173 return i != SHN_XINDEX && i >= SHN_LORESERVE && i <= SHN_HIRESERVE; in is_shndx_special()
207 int i = 0; in sort_relative_table() local
213 while (i < image_size) { in sort_relative_table()
214 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table()
215 w(r(loc) + i, loc); in sort_relative_table()
216 i += 4; in sort_relative_table()
222 i = 0; in sort_relative_table()
223 while (i < image_size) { in sort_relative_table()
224 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table()
225 w(r(loc) - i, loc); in sort_relative_table()
226 i += 4; in sort_relative_table()
232 int i = 0; in x86_sort_relative_table() local
234 while (i < image_size) { in x86_sort_relative_table()
235 uint32_t *loc = (uint32_t *)(extab_image + i); in x86_sort_relative_table()
237 w(r(loc) + i, loc); in x86_sort_relative_table()
238 w(r(loc + 1) + i + 4, loc + 1); in x86_sort_relative_table()
239 w(r(loc + 2) + i + 8, loc + 2); in x86_sort_relative_table()
241 i += sizeof(uint32_t) * 3; in x86_sort_relative_table()
246 i = 0; in x86_sort_relative_table()
247 while (i < image_size) { in x86_sort_relative_table()
248 uint32_t *loc = (uint32_t *)(extab_image + i); in x86_sort_relative_table()
250 w(r(loc) - i, loc); in x86_sort_relative_table()
251 w(r(loc + 1) - (i + 4), loc + 1); in x86_sort_relative_table()
252 w(r(loc + 2) - (i + 8), loc + 2); in x86_sort_relative_table()
254 i += sizeof(uint32_t) * 3; in x86_sort_relative_table()
260 int i; in s390_sort_relative_table() local
262 for (i = 0; i < image_size; i += 16) { in s390_sort_relative_table()
263 char *loc = extab_image + i; in s390_sort_relative_table()
266 w(r((uint32_t *)loc) + i, (uint32_t *)loc); in s390_sort_relative_table()
267 w(r((uint32_t *)(loc + 4)) + (i + 4), (uint32_t *)(loc + 4)); in s390_sort_relative_table()
278 handler += i + 8; in s390_sort_relative_table()
284 for (i = 0; i < image_size; i += 16) { in s390_sort_relative_table()
285 char *loc = extab_image + i; in s390_sort_relative_table()
288 w(r((uint32_t *)loc) - i, (uint32_t *)loc); in s390_sort_relative_table()
289 w(r((uint32_t *)(loc + 4)) - (i + 4), (uint32_t *)(loc + 4)); in s390_sort_relative_table()
292 handler -= i + 8; in s390_sort_relative_table()
394 int i, n_error = 0; /* gcc-4.3.0 false positive complaint */ in main() local
404 for (i = 1; i < argc; i++) { in main()
405 addr = mmap_file(argv[i], &size); in main()
411 if (do_file(argv[i], addr)) in main()