Searched defs:st_info (Results 1 - 10 of 10) sorted by relevance

/external/syslinux/com32/include/sys/
H A Delf32.h54 unsigned char st_info; member in struct:elf32_sym
H A Delf64.h52 unsigned char st_info; member in struct:elf64_sym
/external/llvm/include/llvm/Object/
H A DELFTypes.h196 unsigned char st_info; // Symbol's type and binding attributes member in struct:llvm::object::Elf_Sym_Base
205 unsigned char st_info; // Symbol's type and binding attributes member in struct:llvm::object::Elf_Sym_Base
214 using Elf_Sym_Base<ELFT>::st_info;
221 unsigned char getBinding() const { return st_info >> 4; }
222 unsigned char getType() const { return st_info & 0x0f; }
227 st_info = (b << 4) + (t & 0x0f);
/external/swiftshader/third_party/LLVM/lib/Object/
H A DELFObjectFile.cpp149 unsigned char st_info; // Symbol's type and binding attributes member in struct:__anon18670::Elf_Sym_Base
158 unsigned char st_info; // Symbol's type and binding attributes member in struct:__anon18670::Elf_Sym_Base
167 using Elf_Sym_Base<target_endianness, is64Bits>::st_info;
171 unsigned char getBinding() const { return st_info >> 4; }
172 unsigned char getType() const { return st_info & 0x0f; }
176 st_info = (b << 4) + (t & 0x0f);
/external/kernel-headers/original/uapi/linux/
H A Delf.h186 unsigned char st_info; member in struct:elf32_sym
193 unsigned char st_info; /* Type and binding attributes */ member in struct:elf64_sym
/external/llvm/include/llvm/Support/
H A DELF.h824 unsigned char st_info; // Symbol's type and binding attributes member in struct:llvm::ELF::Elf32_Sym
830 unsigned char getBinding() const { return st_info >> 4; }
831 unsigned char getType() const { return st_info & 0x0f; }
835 st_info = (b << 4) + (t & 0x0f);
842 unsigned char st_info; // Symbol's type and binding attributes member in struct:llvm::ELF::Elf64_Sym
850 unsigned char getBinding() const { return st_info >> 4; }
851 unsigned char getType() const { return st_info & 0x0f; }
855 st_info = (b << 4) + (t & 0x0f);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DELF.h811 unsigned char st_info; // Symbol's type and binding attributes member in struct:llvm::ELF::Elf32_Sym
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 member in struct:llvm::ELF::Elf64_Sym
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);
/external/elfutils/libelf/
H A Delf.h412 unsigned char st_info; /* Symbol type and binding */ member in struct:__anon6109
420 unsigned char st_info; /* Symbol type and binding */ member in struct:__anon6110
459 /* How to extract and insert information held in the st_info field. */
465 /* Both Elf32_Sym and Elf64_Sym use the same one-byte st_info field. */
470 /* Legal values for ST_BIND subfield of st_info (symbol binding). */
482 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
1277 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
1510 /* MIPS specific values for `st_info'. */
1919 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
/external/kmod/port-gnu/
H A Delf.h411 unsigned char st_info; /* Symbol type and binding */ member in struct:__anon9325
419 unsigned char st_info; /* Symbol type and binding */ member in struct:__anon9326
458 /* How to extract and insert information held in the st_info field. */
464 /* Both Elf32_Sym and Elf64_Sym use the same one-byte st_info field. */
469 /* Legal values for ST_BIND subfield of st_info (symbol binding). */
481 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
1276 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
1509 /* MIPS specific values for `st_info'. */
1918 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
/external/valgrind/perf/
H A Dtinycc.c381 unsigned char st_info; /* Symbol type and binding */ member in struct:__anon23831
389 unsigned char st_info; /* Symbol type and binding */ member in struct:__anon23832
432 /* How to extract and insert information held in the st_info field. */
438 /* Both Elf32_Sym and Elf64_Sym use the same one-byte st_info field. */
443 /* Legal values for ST_BIND subfield of st_info (symbol binding). */
454 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
1168 /* MIPS specific values for `st_info'. */
1454 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
18189 if (ELF32_ST_BIND(sym->st_info) != STB_LOCAL) {
18220 sym->st_info
[all...]

Completed in 785 milliseconds