Home
last modified time | relevance | path

Searched refs:is64 (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dgetarsym.c94 arsym(Byte *off, size_t sz, size_t *e, int is64) in arsym() argument
100 size_t eltsize = is64 ? 8 : 4; in arsym()
105 if (is64) { in arsym()
156 if (is64) in arsym()
182 int is64; in elf_getarsym() local
205 is64 = (elf->ed_myflags & EDF_ARSYM64) != 0; in elf_getarsym()
218 if ((elf->ed_arsym = arsym(as, sz, &elf->ed_arsymsz, is64)) == 0) { in elf_getarsym()
/illumos-gate/usr/src/cmd/sgs/dump/common/
H A Dfcns.c49 size_t cnt, ptr, is64; in ar_sym_read() local
58 is64 = (_elf_getarsymwordsize(elf) == 8); in ar_sym_read()
63 if (is64) in ar_sym_read()
69 if (is64) in ar_sym_read()
/illumos-gate/usr/src/cmd/ptools/pflags/
H A Dpflags.c60 static int is64; /* Is current process 64-bit? */ variable
167 is64 = (pstatus.pr_dmodel == PR_MODEL_LP64); in look()
182 (void) printf("\tdata model = %s", is64? "_LP64" : "_ILP32"); in look()
349 dumpregs(psp->pr_reg, is64); in lwplook()
560 dumpregs(const prgregset_t reg, int is64) in dumpregs() argument
562 int width = is64? 16 : 8; in dumpregs()
563 int cols = is64? 2 : 4; in dumpregs()
567 if (!is64) { in dumpregs()
/illumos-gate/usr/src/uts/sparc/v9/os/
H A Dv9dep.c485 int is64; in setgwins() local
489 is64 = 0; in setgwins()
492 is64 = 1; in setgwins()
519 int is64; in setgwins32() local
523 is64 = 0; in setgwins32()
526 is64 = 1; in setgwins32()
558 int is64; in getgwins() local
562 is64 = 0; in getgwins()
565 is64 = 1; in getgwins()
590 int is64; in getgwins32() local
[all …]
/illumos-gate/usr/src/cmd/ptools/pstack/
H A Dpstack.c54 static int is64; variable
260 is64 = (psinfo.pr_dmodel == PR_MODEL_LP64); in main()
542 int length = (is64 ? 16 : 8); in print_java_frame()
574 int length = (is64? 16 : 8); in print_frame()
661 int length = (is64? 16 : 8); in print_zombie()
682 int length = (is64? 16 : 8); in print_syscall()
/illumos-gate/usr/src/uts/sparc/fs/proc/
H A Dprmachdep.c909 int is64; in prstop() local
915 is64 = 0; in prstop()
920 is64 = 1; in prstop()
924 if (is64 && in prstop()
927 else if (!is64 && in prstop()
936 if (is64) { in prstop()
/illumos-gate/usr/src/psm/stand/boot/common/
H A Dreadfile.c194 int is64 = (elfhdr.e_ident[EI_CLASS] == in readfile() local
205 dprintf("e_entry\t\t0x%llx\n", (is64 ? in readfile()
208 dprintf("e_shoff\t\t0x%llx\n", (is64 ? in readfile()
211 dprintf("e_shnentsize\t%d\n", (is64 ? in readfile()
213 dprintf("e_shnum\t\t%d\n", (is64 ? in readfile()
215 dprintf("e_shstrndx\t%d\n", (is64 ? in readfile()
/illumos-gate/usr/src/uts/sparc/os/
H A Dsyscall.c101 int is64; in xregrestore() local
106 is64 = 1; in xregrestore()
111 is64 = 0; in xregrestore()
114 if (is64) in xregrestore()
/illumos-gate/usr/src/cmd/sgs/ar/common/
H A Dfile.c772 int is64 = (eltsize == 8); in writesymtab() local
786 (is64 ? MSG_ORIG(MSG_STR_SYM64) : MSG_ORIG(MSG_STR_SLASH)), in writesymtab()
789 dst = is64 ? sputl64(nsyms, dst) : sputl32(nsyms, dst); in writesymtab()
796 dst = is64 ? sputl64((*ptr)->ar_offset, dst) : in writesymtab()