Lines Matching defs:sym_table
125 * Types of items found in sym_table[]. All items other than STE_STATIC
181 static sym_table_ent_t sym_table[ELFEDIT_CONST_NUM] = {
220 error "ELFEDIT_CONST_NUM has grown. Update sym_table[]"
344 * runtime initialization of sym_table.
359 #define LC(_ndx, _func) sym_table[_ndx].ste_type = STE_LC; \
360 sym_table[_ndx].ste_conv_func.simple = _func;
361 #define LC_OS(_ndx, _func) sym_table[_ndx].ste_type = STE_LC_OS; \
362 sym_table[_ndx].ste_conv_func.osabi = _func;
363 #define LC_MACH(_ndx, _func) sym_table[_ndx].ste_type = STE_LC_MACH; \
364 sym_table[_ndx].ste_conv_func.mach = _func;
365 #define LC_OS_MACH(_ndx, _func) sym_table[_ndx].ste_type = STE_LC_OS_MACH; \
366 sym_table[_ndx].ste_conv_func.osabi_mach = _func;
462 for (i = 0, sym = sym_table;
463 i < (sizeof (sym_table) / sizeof (sym_table[0])); i++, sym++) {
510 (const_type >= (sizeof (sym_table) / sizeof (sym_table[0]))))
512 sym = &sym_table[const_type];