Searched defs:si (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/gen/
H A Dpsignal.c82 psiginfo(const siginfo_t *si, const char *s) argument
84 psignal(si->si_signo, s);
/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_nan.c53 int si; /* index into s */ local
63 for (si = 0; isxdigit(s[si]); si++)
72 if (--si < 0)
74 words[bitpos / 32] |= digittoint(s[si]) << (bitpos % 32);
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
H A Ddmisc.c123 ULong si, z, zs; local
155 si = *sx++;
156 ys = (si & 0xffff) * q + carry;
157 zs = (si >> 16) * q + (ys >> 16);
196 si = *sx++;
197 ys = (si & 0xffff) + carry;
198 zs = (si >> 16) + (ys >> 16);
/bionic/libc/bionic/
H A Dposix_timers.cpp79 siginfo_t si; local
80 memset(&si, 0, sizeof(si));
81 int rc = __rt_sigtimedwait(sigset.get(), &si, NULL, sizeof(sigset));
86 if (si.si_code == SI_TIMER) {
89 } else if (si.si_code == SI_TKILL) {
/bionic/linker/
H A Ddlfcn.cpp107 soinfo* si = find_containing_library(caller_addr); local
110 if (si && si->next) {
111 sym = dlsym_linear_lookup(symbol, &found, si->next);
136 soinfo* si = find_containing_library(addr); local
137 if (si == NULL) {
143 info->dli_fname = si->name;
145 info->dli_fbase = reinterpret_cast<void*>(si->base);
148 ElfW(Sym)* sym = dladdr_find_symbol(si, addr);
150 info->dli_sname = si
[all...]
H A Dlinker.cpp81 static bool soinfo_link_image(soinfo* si, const android_dlextinfo* extinfo);
293 soinfo* si = g_soinfo_allocator.alloc(); local
296 memset(si, 0, sizeof(soinfo));
297 strlcpy(si->name, name, sizeof(si->name));
298 si->flags = FLAG_NEW_SOINFO;
301 si->set_st_dev(file_stat->st_dev);
302 si->set_st_ino(file_stat->st_ino);
305 sonext->next = si;
306 sonext = si;
312 soinfo_free(soinfo* si) argument
431 soinfo_elf_lookup(soinfo* si, unsigned hash, const char* name) argument
482 soinfo_do_lookup(soinfo* si, const char* name, soinfo** lsi, soinfo* needed[]) argument
616 dlsym_handle_lookup(soinfo* si, soinfo** found, const char* name) argument
685 dladdr_find_symbol(soinfo* si, const void* addr) argument
787 soinfo* si = soinfo_alloc(SEARCH_NAME(name), &file_stat); local
825 soinfo* si = find_loaded_library_by_name(name); local
843 soinfo* si = find_library_internal(name, dlflags, extinfo); local
850 soinfo_unload(soinfo* si) argument
920 soinfo* si = find_library(name, flags, extinfo); local
928 do_dlclose(soinfo* si) argument
935 soinfo_relocate(soinfo* si, ElfW(Rela)* rela, unsigned count, soinfo* needed[]) argument
1199 soinfo_relocate(soinfo* si, ElfW(Rel)* rel, unsigned count, soinfo* needed[]) argument
1396 mips_relocate_got(soinfo* si, soinfo* needed[]) argument
1673 soinfo_link_image(soinfo* si, const android_dlextinfo* extinfo) argument
2044 soinfo* si = soinfo_alloc("[vdso]", NULL); local
2139 soinfo* si = soinfo_alloc(args.argv[0], NULL); local
[all...]
/bionic/libc/kernel/uapi/asm-x86/asm/
H A Dsigcontext32.h74 unsigned int si; member in struct:sigcontext_ia32

Completed in 3946 milliseconds