Home | History | Annotate | Download | only in Support

Lines Matching refs:st_info

811   unsigned char st_info;  // Symbol's type and binding attributes
817 unsigned char getBinding() const { return st_info >> 4; }
818 unsigned char getType() const { return st_info & 0x0f; }
822 st_info = (b << 4) + (t & 0x0f);
829 unsigned char st_info; // Symbol's type and binding attributes
837 unsigned char getBinding() const { return st_info >> 4; }
838 unsigned char getType() const { return st_info & 0x0f; }
842 st_info = (b << 4) + (t & 0x0f);