Lines Matching defs:sym
41 unsigned char sym[];
85 return (char *)s->sym + 1;
105 static void check_symbol_range(const char *sym, unsigned long long addr,
114 if (strcmp(sym, ar->start_sym) == 0) {
117 } else if (strcmp(sym, ar->end_sym) == 0) {
130 struct sym_entry *sym;
176 sym = malloc(sizeof(*sym) + len + 1);
177 if (!sym) {
182 sym->addr = addr;
183 sym->len = len;
184 sym->sym[0] = type;
185 strcpy(sym_name(sym), name);
186 sym->percpu_absolute = 0;
188 return sym;
260 struct sym_entry *sym;
271 sym = read_symbol(fp, &buf, &buflen);
272 if (!sym)
275 sym->start_pos = table_cnt;
287 table[table_cnt++] = sym;
451 printf(", 0x%02x", table[i]->sym[k]);
461 expand_symbol(table[i]->sym, table[i]->len, buf);
462 strcpy((char *)table[i]->sym, buf);
521 printf("\t.long\t%#x /* %s */\n", (int)offset, table[i]->sym);
538 cleanup_symbol_name((char *)table[i]->sym);
577 learn_symbol(table[i]->sym, table[i]->len);
602 p1 = table[i]->sym;
609 forget_symbol(table[i]->sym, len);
631 learn_symbol(table[i]->sym, len);
688 c = table[i]->sym[j];
752 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
753 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
789 table[i]->sym[0] = 'A';