• Home
  • Raw
  • Download

Lines Matching refs:i

179 #define SPECIAL(i) ((i) - (SHN_HIRESERVE + 1))  argument
181 static inline int is_shndx_special(unsigned int i) in is_shndx_special() argument
183 return i != SHN_XINDEX && i >= SHN_LORESERVE && i <= SHN_HIRESERVE; in is_shndx_special()
217 int i = 0; in sort_relative_table() local
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 i = 0; in sort_relative_table()
233 while (i < image_size) { in sort_relative_table()
234 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table()
235 w(r(loc) - i, loc); in sort_relative_table()
236 i += 4; in sort_relative_table()
242 int i = 0; in sort_relative_table_with_data() local
244 while (i < image_size) { in sort_relative_table_with_data()
245 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table_with_data()
247 w(r(loc) + i, loc); in sort_relative_table_with_data()
248 w(r(loc + 1) + i + 4, loc + 1); in sort_relative_table_with_data()
251 i += sizeof(uint32_t) * 3; in sort_relative_table_with_data()
256 i = 0; in sort_relative_table_with_data()
257 while (i < image_size) { in sort_relative_table_with_data()
258 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table_with_data()
260 w(r(loc) - i, loc); in sort_relative_table_with_data()
261 w(r(loc + 1) - (i + 4), loc + 1); in sort_relative_table_with_data()
264 i += sizeof(uint32_t) * 3; in sort_relative_table_with_data()
365 int i, n_error = 0; /* gcc-4.3.0 false positive complaint */ in main() local
375 for (i = 1; i < argc; i++) { in main()
376 addr = mmap_file(argv[i], &size); in main()
382 if (do_file(argv[i], addr)) in main()