Home | History | Annotate | Download | only in perf

Lines Matching refs:desc

1748    Desc is supposedly starting line number, but GCC doesn't set it
1788 /* Line number in text segment. Desc is the line number;
1816 /* GNU C++ `catch' clause. Value is its address. Desc is nonzero if
1819 can be caught here. If Desc is 0, it means all exceptions are caught
1857 The desc is the nesting level in lexical blocks.
1871 /* End of a lexical block. Desc matches the N_LBRAC's desc.
5479 static void put_stabs(const char *str, int type, int other, int desc,
5481 static void put_stabs_r(const char *str, int type, int other, int desc,
5483 static void put_stabn(int type, int other, int desc, int value);
5484 static void put_stabd(int type, int other, int desc);
18385 static void put_stabs(const char *str, int type, int other, int desc,
18398 sym->n_desc = desc;
18402 static void put_stabs_r(const char *str, int type, int other, int desc,
18405 put_stabs(str, type, other, desc, value);
18411 static void put_stabn(int type, int other, int desc, int value)
18413 put_stabs(NULL, type, other, desc, value);
18416 static void put_stabd(int type, int other, int desc)
18418 put_stabs(NULL, type, other, desc, 0);