HomeSort by relevance Sort by last modified time
    Searched refs:longjmp (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
longjmp.c 2 The longjmp function.
3 The C standard requires that longjmp be a function and not a macro.
17 void longjmp(jmp_buf env, int val) function
  /device/linaro/bootloader/edk2/StdLib/Include/
setjmp.h 2 This file defines the macro setjmp, and declares the function longjmp
21 macro consists of information sufficient for a call to the longjmp function
30 later use by the longjmp function.
41 returns the value zero. If the return is from a call to the longjmp
43 of the second argument to the longjmp function.
47 /** The longjmp function restores the environment saved by the most recent
58 @return After longjmp is completed, program execution continues as if the
60 specified by val. The longjmp function cannot cause the setjmp macro to
63 extern void longjmp(jmp_buf env, int val);
  /external/libcxx/test/std/depr/depr.c.headers/
setjmp_h.pass.cpp 23 static_assert((std::is_same<decltype(longjmp(jb, 0)), void>::value),
24 "std::is_same<decltype(longjmp(jb, 0)), void>::value");
  /external/libcxx/test/std/language.support/support.runtime/
csetjmp.pass.cpp 23 static_assert((std::is_same<decltype(std::longjmp(jb, 0)), void>::value),
24 "std::is_same<decltype(std::longjmp(jb, 0)), void>::value");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
setjmp_h.pass.cpp 23 static_assert((std::is_same<decltype(longjmp(jb, 0)), void>::value),
24 "std::is_same<decltype(longjmp(jb, 0)), void>::value");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.runtime/
csetjmp.pass.cpp 23 static_assert((std::is_same<decltype(std::longjmp(jb, 0)), void>::value),
24 "std::is_same<decltype(std::longjmp(jb, 0)), void>::value");
  /external/syslinux/com32/include/
setjmp.h 21 __extern __noreturn longjmp(jmp_buf, int);
26 #define siglongjmp(__env, __val) longjmp(__env, __val)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
setjmp2.h 24 /* Variant of the longjmp functions which perform some sanity checking. */
26 extern void __REDIRECT_NTHNL (longjmp,
38 # define longjmp __longjmp_chk macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
setjmp2.h 24 /* Variant of the longjmp functions which perform some sanity checking. */
26 extern void __REDIRECT_NTHNL (longjmp,
38 # define longjmp __longjmp_chk macro
  /external/syslinux/com32/lib/x86_64/
setjmp.S 4 # setjmp/longjmp for the x86-64 architecture
41 .globl longjmp
42 .type longjmp, @function
43 longjmp: label
54 .size longjmp,.-longjmp
  /external/syslinux/com32/lib/i386/
setjmp.S 4 * setjmp/longjmp for the i386 architecture
47 .globl longjmp
48 .type longjmp, @function
49 longjmp: label
63 .size longjmp,.-longjmp
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-spu/
ovl2.s 15 .type longjmp,@function
16 longjmp: label
18 .size longjmp,.-longjmp
38 br longjmp
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
csetjmp 48 using ::longjmp;
  /external/compiler-rt/test/tsan/
longjmp.cc 3 // Longjmp assembly has not been implemented for mips64 yet
11 longjmp(env, 42);
ignore_lib4.cc 6 // Longjmp assembly has not been implemented for mips64 yet
15 // Test longjmp in ignored lib.
31 longjmp(env, 1);
longjmp3.cc 3 // Longjmp assembly has not been implemented for mips64 yet
13 longjmp(env, 42);
longjmp4.cc 3 // Longjmp assembly has not been implemented for mips64 yet
16 longjmp(env2, 42);
  /external/libunwind/src/setjmp/
longjmp.c 45 This makes it impossible to implement longjmp, as we
49 so we simply defer to glibc longjmp here. */
51 #define longjmp __nonworking_longjmp macro
53 static void longjmp (jmp_buf env, int val);
105 void longjmp (jmp_buf env, int val)
110 longjmp (jmp_buf env, int val) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
setjmpex.h 15 #define longjmp _longjmpex macro
  /external/syslinux/gpxe/src/arch/i386/core/
setjmp.S 1 /* setjmp and longjmp. Use of these functions is deprecated. */
26 LONGJMP - Non-local jump to a saved stack context
28 .globl longjmp
29 longjmp: label
  /external/syslinux/gpxe/src/arch/i386/include/
setjmp.h 27 extern void __asmcall longjmp ( jmp_buf env, int val );
37 longjmp ( (_env)->env, (_val) ); \
  /bionic/tests/headers/posix/
setjmp_h.c 38 FUNCTION(longjmp, void (*f)(jmp_buf, int));
  /external/compiler-rt/test/asan/TestCases/Windows/
longjmp.cc 3 // FIXME: merge this with the common longjmp test when we can run common
20 longjmp(buf, 1);
  /external/compiler-rt/test/asan/TestCases/
longjmp.cc 17 longjmp(buf, 1);
  /external/clang/test/Sema/
implicit-builtin-decl.c 59 void longjmp(); // expected-warning{{declaration of built-in function 'longjmp' requires inclusion of the header <setjmp.h>}}

Completed in 753 milliseconds

1 2 3 4 5 6 7 8 9