OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_Unwind_GetGR
(Results
1 - 22
of
22
) sorted by null
/external/libunwind/src/unwind/
GetGR.c
29
_Unwind_GetGR
(struct _Unwind_Context *context, int index)
43
ALIAS (
_Unwind_GetGR
);
/development/ndk/sources/android/libportable/arch-arm/
unwind.c
59
uint64_t WRAP(
_Unwind_GetGR
)(struct _Unwind_Context* ctx, int index) {
71
return WRAP(
_Unwind_GetGR
)(ctx, UNWIND_IP_REG) & ~1; // thumb bit
77
uint32_t thumbState = WRAP(
_Unwind_GetGR
)(ctx, UNWIND_IP_REG) & 1;
/external/libcxxabi/src/Unwind/
Unwind-sjlj.c
359
_LIBUNWIND_EXPORT uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context,
361
_LIBUNWIND_TRACE_API("
_Unwind_GetGR
(context=%p, reg=%d)\n",
UnwindLevel1.c
420
_LIBUNWIND_EXPORT uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context,
425
_LIBUNWIND_TRACE_API("
_Unwind_GetGR
(context=%p, reg=%d) => 0x%llX\n",
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-sjlj.c
359
_LIBUNWIND_EXPORT uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context,
361
_LIBUNWIND_TRACE_API("
_Unwind_GetGR
(context=%p, reg=%d)\n",
UnwindLevel1.c
424
_LIBUNWIND_EXPORT uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context,
429
_LIBUNWIND_TRACE_API("
_Unwind_GetGR
(context=%p, reg=%d) => 0x%llX\n",
/external/clang/lib/Headers/
unwind.h
166
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *__context, int __index) {
180
_Unwind_Word __ip =
_Unwind_GetGR
(__context, 15);
186
_Unwind_Word __thumb_mode_bit =
_Unwind_GetGR
(__context, 15) & 0x1;
190
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *, int);
/prebuilts/clang/darwin-x86/host/3.4/lib/clang/3.4/include/
unwind.h
166
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *__context, int __index) {
180
_Unwind_Word __ip =
_Unwind_GetGR
(__context, 15);
186
_Unwind_Word __thumb_mode_bit =
_Unwind_GetGR
(__context, 15) & 0x1;
190
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *, int);
/prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/
unwind.h
166
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *__context, int __index) {
180
_Unwind_Word __ip =
_Unwind_GetGR
(__context, 15);
186
_Unwind_Word __thumb_mode_bit =
_Unwind_GetGR
(__context, 15) & 0x1;
190
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *, int);
/prebuilts/clang/linux-x86/host/3.4/lib/clang/3.4/include/
unwind.h
166
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *__context, int __index) {
180
_Unwind_Word __ip =
_Unwind_GetGR
(__context, 15);
186
_Unwind_Word __thumb_mode_bit =
_Unwind_GetGR
(__context, 15) & 0x1;
190
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *, int);
/prebuilts/clang/linux-x86/host/3.5/lib/clang/3.5/include/
unwind.h
166
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *__context, int __index) {
180
_Unwind_Word __ip =
_Unwind_GetGR
(__context, 15);
186
_Unwind_Word __thumb_mode_bit =
_Unwind_GetGR
(__context, 15) & 0x1;
190
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *, int);
/prebuilts/sdk/renderscript/clang-include/
unwind.h
166
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *__context, int __index) {
180
_Unwind_Word __ip =
_Unwind_GetGR
(__context, 15);
186
_Unwind_Word __thumb_mode_bit =
_Unwind_GetGR
(__context, 15) & 0x1;
190
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *, int);
/prebuilts/sdk/tools/darwin/renderscript/clang-include/
unwind.h
166
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *__context, int __index) {
180
_Unwind_Word __ip =
_Unwind_GetGR
(__context, 15);
186
_Unwind_Word __thumb_mode_bit =
_Unwind_GetGR
(__context, 15) & 0x1;
190
_Unwind_Word
_Unwind_GetGR
(struct _Unwind_Context *, int);
/external/libcxxabi/include/
unwind.h
210
static inline uintptr_t
_Unwind_GetGR
(struct _Unwind_Context* context,
225
return (
_Unwind_GetGR
(context, 15) & (~(uintptr_t)0x1));
230
uintptr_t thumb_bit =
_Unwind_GetGR
(context, 15) & ((uintptr_t)0x1);
234
extern uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context, int index);
/ndk/sources/cxx-stl/gabi++/include/
unwind-arm.h
147
static inline uint32_t
_Unwind_GetGR
( _Unwind_Context* ctx, int reg) {
158
return
_Unwind_GetGR
(ctx, UNWIND_IP_REG) & ~1; // thumb bit
162
uint32_t thumbState =
_Unwind_GetGR
(ctx, UNWIND_IP_REG) & 1;
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
unwind.h
217
static inline uintptr_t
_Unwind_GetGR
(struct _Unwind_Context* context,
232
return (
_Unwind_GetGR
(context, 15) & (~(uintptr_t)0x1));
237
uintptr_t thumb_bit =
_Unwind_GetGR
(context, 15) & ((uintptr_t)0x1);
241
extern uintptr_t
_Unwind_GetGR
(struct _Unwind_Context *context, int index);
/prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
unwind-arm.h
148
static inline uint32_t
_Unwind_GetGR
( _Unwind_Context* ctx, int reg) {
159
return
_Unwind_GetGR
(ctx, UNWIND_IP_REG) & ~1; // thumb bit
163
uint32_t thumbState =
_Unwind_GetGR
(ctx, UNWIND_IP_REG) & 1;
/prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
unwind-arm.h
148
static inline uint32_t
_Unwind_GetGR
( _Unwind_Context* ctx, int reg) {
159
return
_Unwind_GetGR
(ctx, UNWIND_IP_REG) & ~1; // thumb bit
163
uint32_t thumbState =
_Unwind_GetGR
(ctx, UNWIND_IP_REG) & 1;
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
unwind-arm-common.h
220
_Unwind_GetGR
(_Unwind_Context *context, int regno)
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.8/lib/gcc/arm-linux-androideabi/4.8/include/
unwind-arm-common.h
220
_Unwind_GetGR
(_Unwind_Context *context, int regno)
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
unwind-arm-common.h
220
_Unwind_GetGR
(_Unwind_Context *context, int regno)
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.8/lib/gcc/arm-linux-androideabi/4.8/include/
unwind-arm-common.h
220
_Unwind_GetGR
(_Unwind_Context *context, int regno)
Completed in 1434 milliseconds