HomeSort by relevance Sort by last modified time
    Searched defs:landingPad (Results 1 - 10 of 10) sorted by null

  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/src/
dwarf_helper.h 74 uintptr_t landingPad; // null -> nothing found, else something found
helper_func_internal.cc 67 results.landingPad = 0;
121 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding);
124 if (landingPad == 0) {
130 landingPad = (uintptr_t)lpStart + landingPad;
135 results.landingPad = landingPad;
161 results.landingPad = landingPad;
193 results.landingPad = landingPad
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/src/
dwarf_helper.h 74 uintptr_t landingPad; // null -> nothing found, else something found
helper_func_internal.cc 67 results.landingPad = 0;
121 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding);
124 if (landingPad == 0) {
130 landingPad = (uintptr_t)lpStart + landingPad;
135 results.landingPad = landingPad;
161 results.landingPad = landingPad;
193 results.landingPad = landingPad
    [all...]
  /external/compiler-rt/lib/builtins/
gcc_personality_v0.c 220 uintptr_t landingPad = readEncodedPointer(&p, callSiteEncoding);
222 if ( landingPad == 0 )
233 _Unwind_SetIP(context, (funcStart + landingPad));
  /external/libcxxabi/src/
cxa_personality.cpp 64 | | landingPad | (encoded with callSiteEncoding) | offset relative to lpStart | |
77 | | landingPad | (ULEB128) | offset relative to lpStart | |
130 * landingPad can be 0, this implies there is nothing to be done.
132 * landingPad != 0 and actionEntry == 0 implies a cleanup needs to be done
133 @landingPad.
135 * A cleanup can also be found under landingPad != 0 and actionEntry != 0 in
509 uintptr_t landingPad; // null -> nothing found, else something found
531 _Unwind_SetIP(context, results.landingPad);
563 results.landingPad = 0;
660 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_personality.cpp 66 | | landingPad | (encoded with callSiteEncoding) | offset relative to lpStart | |
79 | | landingPad | (ULEB128) | offset relative to lpStart | |
132 * landingPad can be 0, this implies there is nothing to be done.
134 * landingPad != 0 and actionEntry == 0 implies a cleanup needs to be done
135 @landingPad.
137 * A cleanup can also be found under landingPad != 0 and actionEntry != 0 in
499 uintptr_t landingPad; // null -> nothing found, else something found
518 _Unwind_SetIP(context, results.landingPad);
550 results.landingPad = 0;
647 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/src/
cxa_personality.cpp 64 | | landingPad | (encoded with callSiteEncoding) | offset relative to lpStart | |
77 | | landingPad | (ULEB128) | offset relative to lpStart | |
130 * landingPad can be 0, this implies there is nothing to be done.
132 * landingPad != 0 and actionEntry == 0 implies a cleanup needs to be done
133 @landingPad.
135 * A cleanup can also be found under landingPad != 0 and actionEntry != 0 in
503 uintptr_t landingPad; // null -> nothing found, else something found
525 _Unwind_SetIP(context, results.landingPad);
557 results.landingPad = 0;
654 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding)
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 708 uintptr_t landingPad = readEncodedPointer(&callSitePtr,
720 if (landingPad == 0) {
789 _Unwind_SetIP(context, funcStart + landingPad);
    [all...]
  /external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
ExceptionDemo.cpp 684 uintptr_t landingPad = readEncodedPointer(&callSitePtr,
697 if (landingPad == 0) {
765 _Unwind_SetIP(context, funcStart + landingPad);
973 /// @param caughtResultStorage reference to landingpad result storage
    [all...]

Completed in 1400 milliseconds