OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_Unwind_GetGR
(Results
1 - 12
of
12
) sorted by null
/external/libunwind/src/unwind/
GetGR.c
29
_Unwind_GetGR
(struct _Unwind_Context *context, int index)
43
ALIAS (
_Unwind_GetGR
);
/external/linux-kselftest/tools/testing/selftests/x86/
unwind_vdso.c
111
unsigned long eax =
_Unwind_GetGR
(ctx, 0);
112
unsigned long ecx =
_Unwind_GetGR
(ctx, 1);
113
unsigned long edx =
_Unwind_GetGR
(ctx, 2);
114
unsigned long ebx =
_Unwind_GetGR
(ctx, 3);
115
unsigned long ebp =
_Unwind_GetGR
(ctx, 5);
116
unsigned long esi =
_Unwind_GetGR
(ctx, 6);
117
unsigned long edi =
_Unwind_GetGR
(ctx, 7);
/external/clang/lib/Headers/
unwind.h
183
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *__context, int __index) {
197
_Unwind_Word __ip =
_Unwind_GetGR
(__context, 15);
203
_Unwind_Word __thumb_mode_bit =
_Unwind_GetGR
(__context, 15) & 0x1;
207
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *, int);
/external/libunwind/include/
unwind.h
90
extern unsigned long
_Unwind_GetGR
(struct _Unwind_Context *, int);
/external/libunwind_llvm/include/
unwind.h
221
extern uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context, int index);
243
uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context, int index) {
258
return
_Unwind_GetGR
(context, 15) & (~(uintptr_t)0x1);
263
uintptr_t thumb_bit =
_Unwind_GetGR
(context, 15) & ((uintptr_t)0x1);
/external/libunwind_llvm/src/
Unwind_AppleExtras.cpp
87
NOT_HERE_BEFORE_10_6(
_Unwind_GetGR
)
134
NOT_HERE_BEFORE_5_0(
_Unwind_GetGR
)
Unwind-sjlj.c
403
_LIBUNWIND_EXPORT uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context,
405
_LIBUNWIND_TRACE_API("
_Unwind_GetGR
(context=%p, reg=%d)", (void *)context,
UnwindLevel1.c
468
_Unwind_GetGR
(struct _Unwind_Context *context, int index) {
472
_LIBUNWIND_TRACE_API("
_Unwind_GetGR
(context=%p, reg=%d) => 0x%" PRIxPTR,
/external/libcxxabi/src/
cxa_personality.cpp
[
all
...]
/external/libunwind/tests/
check-namespace.sh.in
262
match
_Unwind_GetGR
/external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp
132
extern uintptr_t
_Unwind_GetGR
(_Unwind_Context_t c, int i);
[
all
...]
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
ExceptionDemo.cpp
135
extern uintptr_t
_Unwind_GetGR
(_Unwind_Context_t c, int i);
[
all
...]
Completed in 1425 milliseconds