Home | History | Annotate | Download | only in opjitconv

Lines Matching refs:entry_count

36 	/* Check for valid value of entry_count to avoid integer overflow. */
37 if (entry_count > UINT32_MAX - 1) {
38 bfd_perror("invalid entry_count value");
43 syms = xmalloc(sizeof(asymbol *) * (entry_count+1));
44 syms[entry_count] = NULL;
45 for (i = 0; i < entry_count; i++) {
63 r = bfd_set_symtab(cur_bfd, syms, entry_count);
194 for (j = 1; j < entry_count; j++) {
208 if (i < entry_count)
209 rc = create_text_section(i, entry_count - 1);
228 for (j = 1; j < entry_count; j++) {
239 if (i < entry_count) {
242 i, entry_count - 1);