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

  /device/linaro/bootloader/edk2/StdLib/Include/
setjmp.h 3 and the type jmp_buf, for bypassing the normal function call and return discipline.
19 /** jmp_buf is an array type suitable for holding the information needed to
27 typedef BASE_LIBRARY_JUMP_BUFFER jmp_buf[1]; typedef
29 /** The setjmp macro saves its calling environment in its jmp_buf argument for
37 @param[in,out] env A jmp_buf type object into which
49 the corresponding jmp_buf argument. If there has been no such invocation,
63 extern void longjmp(jmp_buf env, int val);
  /external/clang/test/CodeGen/
ms-setjmp.c 5 typedef char jmp_buf[1]; typedef
8 int _setjmp(jmp_buf env);
9 int _setjmpex(jmp_buf env);
12 jmp_buf jb;
function-attributes.c 95 typedef int jmp_buf[((9 * 2) + 3 + 16)]; typedef
96 int setjmp(jmp_buf);
106 int _setjmp(jmp_buf);
  /external/clang/test/Headers/Inputs/include/
setjmp.h 6 } jmp_buf; typedef in typeref:struct:__anon17485
  /external/clang/test/Sema/
builtin-longjmp.c 16 typedef void *jmp_buf; typedef
17 jmp_buf buf;
return.c 201 typedef struct __jmp_buf_tag{} jmp_buf[1]; typedef in typeref:struct:__jmp_buf_tag
206 jmp_buf test30_j;
uninit-variables.c 470 typedef char jmp_buf[256]; typedef
471 extern int setjmp(jmp_buf env); // implicitly returns_twice
473 void do_stuff_and_longjmp(jmp_buf env, int *result) __attribute__((noreturn));
478 jmp_buf env;
  /external/u-boot/arch/arm/include/asm/
setjmp.h 22 typedef struct jmp_buf_data jmp_buf[1]; typedef in typeref:struct:jmp_buf_data
24 int setjmp(jmp_buf jmp);
25 void longjmp(jmp_buf jmp, int ret);
  /external/u-boot/arch/sandbox/include/asm/
setjmp.h 25 typedef struct jmp_buf_data jmp_buf[1]; typedef in typeref:struct:jmp_buf_data
27 int setjmp(jmp_buf jmp);
28 __noreturn void longjmp(jmp_buf jmp, int ret);
  /bionic/libc/include/
setjmp.h 62 typedef long jmp_buf[_JBLEN]; typedef
68 int _setjmp(jmp_buf __env);
69 void _longjmp(jmp_buf __env, int __value);
71 int setjmp(jmp_buf __env);
72 void longjmp(jmp_buf __env, int __value);
  /external/u-boot/arch/riscv/include/asm/
setjmp.h 20 typedef struct jmp_buf_data jmp_buf[1]; typedef in typeref:struct:jmp_buf_data
22 int setjmp(jmp_buf jmp);
23 void longjmp(jmp_buf jmp, int ret);
  /external/skia/src/codec/
SkJpegPriv.h 43 operator jmp_buf&() { return fJmpBuf; }
47 jmp_buf fJmpBuf;
50 SkSTArray<4, jmp_buf*> fJmpBufStack;
  /external/skqp/src/codec/
SkJpegPriv.h 43 operator jmp_buf&() { return fJmpBuf; }
47 jmp_buf fJmpBuf;
50 SkSTArray<4, jmp_buf*> fJmpBufStack;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
Enquire.c 612 #define jmp_buf int macro
733 typedef int jmp_buf; typedef
735 int setjmp ARGS((jmp_buf lab));
737 jmp_buf lab, mlab;
738 int setjmp(jmp_buf lab) { return(0); }
739 void longjmp(jmp_buf lab, int val) { return; }
744 jmp_buf lab, mlab;
    [all...]

Completed in 1884 milliseconds