/external/scudo/standalone/ |
D | report.h | 19 void NORETURN reportError(const char *Message); 22 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value); 25 void NORETURN reportHeaderCorruption(void *Ptr); 26 void NORETURN reportHeaderRace(void *Ptr); 29 void NORETURN reportSanityCheckError(const char *Field); 32 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment); 33 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, 35 void NORETURN reportOutOfMemory(uptr RequestedSize); 42 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr); 43 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr); [all …]
|
D | report.cpp | 27 NORETURN ~ScopedErrorReport() { in ~ScopedErrorReport() 37 inline void NORETURN trap() { __builtin_trap(); } in trap() 40 void NORETURN reportCheckFailed(const char *File, int Line, in reportCheckFailed() 53 void NORETURN reportError(const char *Message) { in reportError() 58 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value) { in reportInvalidFlag() 65 void NORETURN reportHeaderCorruption(void *Ptr) { in reportHeaderCorruption() 73 void NORETURN reportHeaderRace(void *Ptr) { in reportHeaderRace() 80 void NORETURN reportSanityCheckError(const char *Field) { in reportSanityCheckError() 87 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment) { in reportAlignmentTooBig() 95 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, in reportAllocationSizeTooBig() [all …]
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/ |
D | report.h | 19 void NORETURN reportError(const char *Message); 22 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value); 25 void NORETURN reportHeaderCorruption(void *Ptr); 26 void NORETURN reportHeaderRace(void *Ptr); 29 void NORETURN reportSanityCheckError(const char *Field); 32 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment); 33 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, 35 void NORETURN reportOutOfMemory(uptr RequestedSize); 42 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr); 43 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr); [all …]
|
D | report.cpp | 27 NORETURN ~ScopedErrorReport() { in ~ScopedErrorReport() 37 inline void NORETURN trap() { __builtin_trap(); } in trap() 40 void NORETURN reportCheckFailed(const char *File, int Line, in reportCheckFailed() 53 void NORETURN reportError(const char *Message) { in reportError() 58 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value) { in reportInvalidFlag() 65 void NORETURN reportHeaderCorruption(void *Ptr) { in reportHeaderCorruption() 73 void NORETURN reportHeaderRace(void *Ptr) { in reportHeaderRace() 80 void NORETURN reportSanityCheckError(const char *Field) { in reportSanityCheckError() 87 void NORETURN reportAlignmentTooBig(uptr Alignment, uptr MaxAlignment) { in reportAlignmentTooBig() 95 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, in reportAllocationSizeTooBig() [all …]
|
D | internal_defs.h | 38 #define NORETURN __attribute__((noreturn)) macro 66 void NORETURN die(); 78 void NORETURN reportCheckFailed(const char *File, int Line,
|
/external/llvm-project/compiler-rt/lib/scudo/ |
D | scudo_errors.h | 20 void NORETURN reportCallocOverflow(uptr Count, uptr Size); 21 void NORETURN reportPvallocOverflow(uptr Size); 22 void NORETURN reportAllocationAlignmentTooBig(uptr Alignment, 24 void NORETURN reportAllocationAlignmentNotPowerOfTwo(uptr Alignment); 25 void NORETURN reportInvalidPosixMemalignAlignment(uptr Alignment); 26 void NORETURN reportInvalidAlignedAllocAlignment(uptr Size, uptr Alignment); 27 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, 29 void NORETURN reportRssLimitExceeded(); 30 void NORETURN reportOutOfMemory(uptr RequestedSize);
|
D | scudo_errors.cpp | 19 void NORETURN reportCallocOverflow(uptr Count, uptr Size) { in reportCallocOverflow() 24 void NORETURN reportPvallocOverflow(uptr Size) { in reportPvallocOverflow() 30 void NORETURN reportAllocationAlignmentTooBig(uptr Alignment, in reportAllocationAlignmentTooBig() 36 void NORETURN reportAllocationAlignmentNotPowerOfTwo(uptr Alignment) { in reportAllocationAlignmentNotPowerOfTwo() 41 void NORETURN reportInvalidPosixMemalignAlignment(uptr Alignment) { in reportInvalidPosixMemalignAlignment() 48 void NORETURN reportInvalidAlignedAllocAlignment(uptr Size, uptr Alignment) { in reportInvalidAlignedAllocAlignment() 60 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, in reportAllocationSizeTooBig() 67 void NORETURN reportRssLimitExceeded() { in reportRssLimitExceeded() 72 void NORETURN reportOutOfMemory(uptr RequestedSize) { in reportOutOfMemory()
|
D | scudo_termination.cpp | 27 void NORETURN Die() { in Die() 35 void NORETURN CheckFailed(const char *File, int Line, const char *Condition, in CheckFailed()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator_report.h | 22 void NORETURN ReportCallocOverflow(uptr count, uptr size, 24 void NORETURN ReportReallocArrayOverflow(uptr count, uptr size, 26 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack); 27 void NORETURN ReportInvalidAllocationAlignment(uptr alignment, 29 void NORETURN ReportInvalidAlignedAllocAlignment(uptr size, uptr alignment, 31 void NORETURN ReportInvalidPosixMemalignAlignment(uptr alignment, 33 void NORETURN ReportAllocationSizeTooBig(uptr user_size, uptr max_size, 35 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack); 36 void NORETURN ReportRssLimitExceeded(const StackTrace *stack);
|
D | sanitizer_allocator_report.cpp | 43 void NORETURN ReportCallocOverflow(uptr count, uptr size, in ReportCallocOverflow() 54 void NORETURN ReportReallocArrayOverflow(uptr count, uptr size, in ReportReallocArrayOverflow() 66 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack) { in ReportPvallocOverflow() 76 void NORETURN ReportInvalidAllocationAlignment(uptr alignment, in ReportInvalidAllocationAlignment() 86 void NORETURN ReportInvalidAlignedAllocAlignment(uptr size, uptr alignment, in ReportInvalidAlignedAllocAlignment() 104 void NORETURN ReportInvalidPosixMemalignAlignment(uptr alignment, in ReportInvalidPosixMemalignAlignment() 118 void NORETURN ReportAllocationSizeTooBig(uptr user_size, uptr max_size, in ReportAllocationSizeTooBig() 128 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack) { in ReportOutOfMemory() 137 void NORETURN ReportRssLimitExceeded(const StackTrace *stack) { in ReportRssLimitExceeded()
|
/external/llvm-project/flang/runtime/ |
D | stop.h | 19 NORETURN void RTNAME(StopStatement)(int code DEFAULT_VALUE(EXIT_SUCCESS), 21 NORETURN void RTNAME(StopStatementText)(const char *, size_t, 26 NORETURN void RTNAME(FailImageStatement)(NO_ARGUMENTS); 27 NORETURN void RTNAME(ProgramEndStatement)(NO_ARGUMENTS);
|
/external/dtc/ |
D | util.h | 20 #define NORETURN __attribute__((noreturn)) macro 23 #define NORETURN macro 31 static inline void NORETURN PRINTF(1, 2) die(const char *str, ...) in die() 183 void NORETURN util_version(void); 197 void NORETURN util_usage(const char *errmsg, const char *synopsis,
|
/external/ms-tpm-20-ref/TPMCmd/tpm/include/ |
D | CompilerDependencies.h | 66 # define NORETURN __declspec(noreturn) macro 103 # define NORETURN __attribute__((noreturn)) macro 108 #ifndef NORETURN 109 # define NORETURN macro
|
/external/tcpdump/ |
D | funcattrs.h | 78 #define NORETURN __attribute((noreturn)) macro 83 #define NORETURN __declspec(noreturn) macro 85 #define NORETURN macro
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | attr-noreturn.m | 32 …8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN:#[0-9]+]] 63 …tcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN]] 80 …tcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN]] 89 ….)* @objc_msgSendSuper2 to void ([[SUPER_T]]*, i8*)*)([[SUPER_T]]* {{.*}}, i8* {{.*}}) [[NORETURN]] 95 ….)* @objc_msgSendSuper2 to void ([[SUPER_T]]*, i8*)*)([[SUPER_T]]* {{.*}}, i8* {{.*}}) [[NORETURN]] 98 // CHECK: attributes [[NORETURN]] = { noreturn }
|
/external/clang/test/CodeGenObjC/ |
D | attr-noreturn.m | 32 …8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN:#[0-9]+]] 63 …tcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN]] 80 …tcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)(i8* {{.*}}, i8* {{.*}}) [[NORETURN]] 89 ….)* @objc_msgSendSuper2 to void ([[SUPER_T]]*, i8*)*)([[SUPER_T]]* {{.*}}, i8* {{.*}}) [[NORETURN]] 95 ….)* @objc_msgSendSuper2 to void ([[SUPER_T]]*, i8*)*)([[SUPER_T]]* {{.*}}, i8* {{.*}}) [[NORETURN]] 98 // CHECK: attributes [[NORETURN]] = { noreturn }
|
/external/compiler-rt/lib/scudo/ |
D | scudo_termination.cpp | 26 void NORETURN Die() { in Die() 34 void NORETURN CheckFailed(const char *file, int line, const char *cond, in CheckFailed()
|
/external/skqp/src/sksl/ |
D | SkSLDefines.h | 39 #define NORETURN __declspec(noreturn) macro 41 #define NORETURN __attribute__((__noreturn__)) macro
|
/external/compiler-rt/lib/builtins/ |
D | int_util.c | 26 NORETURN extern void panic(const char *, ...); 37 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
|
/external/llvm-project/compiler-rt/lib/builtins/ |
D | int_util.c | 22 NORETURN extern void panic(const char *, ...); 33 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
|
/external/mesa3d/src/util/ |
D | macros.h | 176 #ifndef NORETURN 178 # define NORETURN __declspec(noreturn) macro 180 # define NORETURN __attribute__((__noreturn__)) macro 182 # define NORETURN macro
|
/external/mtools/ |
D | sysincludes.h | 109 # define NORETURN __attribute__ ((noreturn)) macro 124 #ifndef NORETURN 125 # define NORETURN /* */ macro 470 void myexit(int code) NORETURN;
|
D | mshortname.c | 34 static void usage(int ret) NORETURN; 45 void mshortname(int argc, char **argv, int type UNUSEDP) NORETURN;
|
D | mclasserase.c | 58 static void usage(int ret) NORETURN; 79 static void do_mclasserase(char drive,int debug) NORETURN; 281 void mclasserase(int argc, char **argv, int type UNUSEDP) NORETURN;
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_termination.cc | 51 void NORETURN Die() { in Die() 70 void NORETURN CheckFailed(const char *file, int line, const char *cond, in CheckFailed()
|