HomeSort by relevance Sort by last modified time
    Searched refs:CheckFailed (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 202 void NORETURN CheckFailed(const char *file, int line, const char *cond,
221 __sanitizer::CheckFailed(__FILE__, __LINE__, \
sanitizer_common.cc 73 void NORETURN CheckFailed(const char *file, int line, const char *cond,
sanitizer_common.h 216 CheckFailed(const char *file, int line, const char *cond, u64 v1, u64 v2);
225 // Specific tools may override behavior of "Die" and "CheckFailed" functions
  /external/llvm/lib/Analysis/
Lint.cpp 136 // CheckFailed - A check failed, so print out the condition and the message
139 void CheckFailed(const Twine &Message,
162 do { if (!(C)) { CheckFailed(M); return; } } while (0)
164 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
166 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
168 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
170 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
  /external/llvm/lib/IR/
Verifier.cpp 116 // CheckFailed - A check failed, so print out the condition and the message
119 void CheckFailed(const Twine &Message, const Value *V1 = nullptr,
130 void CheckFailed(const Twine &Message, const Value *V1, Type *T2,
139 void CheckFailed(const Twine &Message, Type *T1, Type *T2 = nullptr,
148 void CheckFailed(const Twine &Message, const Comdat *C) {
360 do { if (!(C)) { CheckFailed(M); return; } } while (0)
362 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
364 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
366 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
368 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0
    [all...]

Completed in 146 milliseconds