Home
last modified time | relevance | path

Searched refs:stackp (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Modules/_ctypes/libffi/src/m88k/
Dffi.c76 char *argp, *stackp; in ffi_prep_args() local
83 stackp = (char *)(regp + 8); in ffi_prep_args()
115 argp = stackp; in ffi_prep_args()
131 argp = stackp; in ffi_prep_args()
135 if (argp == stackp && a > sizeof (int)) in ffi_prep_args()
137 stackp = (char *) ALIGN(stackp, a); in ffi_prep_args()
138 argp = stackp; in ffi_prep_args()
192 stackp += z; in ffi_prep_args()
268 char *stackp) in ffi_prep_closure_args_OBSD() argument
301 argp = stackp; in ffi_prep_closure_args_OBSD()
[all …]
/external/libffi/src/m88k/
Dffi.c76 char *argp, *stackp; in ffi_prep_args() local
83 stackp = (char *)(regp + 8); in ffi_prep_args()
115 argp = stackp; in ffi_prep_args()
131 argp = stackp; in ffi_prep_args()
135 if (argp == stackp && a > sizeof (int)) in ffi_prep_args()
137 stackp = (char *) FFI_ALIGN(stackp, a); in ffi_prep_args()
138 argp = stackp; in ffi_prep_args()
192 stackp += z; in ffi_prep_args()
268 char *stackp) in ffi_prep_closure_args_OBSD() argument
301 argp = stackp; in ffi_prep_closure_args_OBSD()
[all …]
/external/llvm-project/compiler-rt/lib/safestack/
Dsafestack.cpp175 thread_stack_ll **stackp = &temp_stacks; in thread_cleanup_handler() local
176 while (*stackp) { in thread_cleanup_handler()
177 thread_stack_ll *stack = *stackp; in thread_cleanup_handler()
181 *stackp = stack->next; in thread_cleanup_handler()
184 stackp = &stack->next; in thread_cleanup_handler()
197 *stackp = thread_stacks; in thread_cleanup_handler()
/external/libffi/src/vax/
Dffi.c201 ffi_prep_closure_elfbsd (ffi_cif *cif, void **avalue, char *stackp) in ffi_prep_closure_elfbsd() argument
214 *p_argv = stackp; in ffi_prep_closure_elfbsd()
221 stackp += z; in ffi_prep_closure_elfbsd()
/external/python/cpython2/Modules/_ctypes/libffi/src/vax/
Dffi.c201 ffi_prep_closure_elfbsd (ffi_cif *cif, void **avalue, char *stackp) in ffi_prep_closure_elfbsd() argument
214 *p_argv = stackp; in ffi_prep_closure_elfbsd()
221 stackp += z; in ffi_prep_closure_elfbsd()
/external/angle/third_party/abseil-cpp/absl/strings/internal/
Dcordz_info_test.cc58 for (void* stackp : raw_stack) { in FormatStack() local
59 if (absl::Symbolize(stackp, buf.get(), buf_size)) { in FormatStack()