Lines Matching refs:n
42 s32 n; in add_datasec() local
50 if (0 > (n = read_datasec(obj, filename))) in add_datasec()
58 d = &obj->data[n]; in add_datasec()
98 u32 n = obj->num_data; in read_datasec() local
99 Section *s = &obj->data[n].section; in read_datasec()
130 obj->num_data = n + 1; in read_datasec()
131 return n; in read_datasec()
174 u32 n; in add_section() local
176 n = obj->header.e_shnum; in add_section()
177 s = &obj->section[n]; in add_section()
197 obj->header.e_shnum = n + 1; in add_section()
199 return n; in add_section()
244 u32 n = symtab->sh_info + 1; in add_symbol() local
245 ELF32_Symbol *l = &obj->symbol[n]; in add_symbol()
266 symtab->sh_info = n; in add_symbol()
267 symtab->sh_size = (n + 1) * symtab->sh_entsize; in add_symbol()
273 return n; in add_symbol()