HomeSort by: relevance | last modified time | path
    Searched refs:ET (Results 1 - 25 of 96) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_handlers.cpp 27 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) {
37 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename());
91 ErrorType ET;
93 ET = (Data->TypeCheckKind == TCK_NonnullAssign)
97 ET = ErrorType::MisalignedPointerUse;
99 ET = ErrorType::InsufficientObjectSize;
103 if (ignoreReport(Loc.getSourceLocation(), Opts, ET))
112 ScopedReport R(Opts, Loc, ET);
114 switch (ET) {
117 Diag(Loc, DL_Error, ET, "%0 null pointer of type %1"
    [all...]
ubsan_handlers_cxx.cpp 46 ErrorType ET = ErrorType::DynamicTypeMismatch;
47 if (ignoreReport(Loc, Opts, ET))
50 ScopedReport R(Opts, Loc, ET);
52 Diag(Loc, DL_Error, ET,
59 Diag(Pointer, DL_Note, ET,
64 Diag(Pointer, DL_Note, ET, "object has invalid vptr")
69 Diag(Pointer, DL_Note, ET, "object is of type %0")
75 Diag(Pointer - DTI.getOffset(), DL_Note, ET,
101 ErrorType ET = ErrorType::CFIBadType;
103 if (ignoreReport(Loc, Opts, ET))
    [all...]
ubsan_diag.h 142 ErrorType ET;
208 Diag(Location Loc, DiagLevel Level, ErrorType ET, const char *Message)
209 : Loc(Loc), Level(Level), ET(ET), Message(Message), NumArgs(0),
231 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET);
262 bool IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename);
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_handlers.cpp 27 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) {
37 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename());
91 ErrorType ET;
93 ET = (Data->TypeCheckKind == TCK_NonnullAssign)
97 ET = ErrorType::MisalignedPointerUse;
99 ET = ErrorType::InsufficientObjectSize;
103 if (ignoreReport(Loc.getSourceLocation(), Opts, ET))
112 ScopedReport R(Opts, Loc, ET);
114 switch (ET) {
117 Diag(Loc, DL_Error, ET, "%0 null pointer of type %1"
    [all...]
ubsan_handlers_cxx.cpp 46 ErrorType ET = ErrorType::DynamicTypeMismatch;
47 if (ignoreReport(Loc, Opts, ET))
50 ScopedReport R(Opts, Loc, ET);
52 Diag(Loc, DL_Error, ET,
59 Diag(Pointer, DL_Note, ET,
64 Diag(Pointer, DL_Note, ET, "object has invalid vptr")
69 Diag(Pointer, DL_Note, ET, "object is of type %0")
75 Diag(Pointer - DTI.getOffset(), DL_Note, ET,
101 ErrorType ET = ErrorType::CFIBadType;
103 if (ignoreReport(Loc, Opts, ET))
    [all...]
ubsan_diag.h 142 ErrorType ET;
208 Diag(Location Loc, DiagLevel Level, ErrorType ET, const char *Message)
209 : Loc(Loc), Level(Level), ET(ET), Message(Message), NumArgs(0),
231 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET);
262 bool IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename);
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_handlers.cc 27 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) {
37 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename());
52 ErrorType ET;
54 ET = ErrorType::NullPointerUse;
56 ET = ErrorType::MisalignedPointerUse;
58 ET = ErrorType::InsufficientObjectSize;
62 if (ignoreReport(Loc.getSourceLocation(), Opts, ET))
71 ScopedReport R(Opts, Loc, ET);
73 switch (ET) {
75 Diag(Loc, DL_Error, ET, "%0 null pointer of type %1"
    [all...]
ubsan_handlers_cxx.cc 47 ErrorType ET = ErrorType::DynamicTypeMismatch;
48 if (ignoreReport(Loc, Opts, ET))
51 ScopedReport R(Opts, Loc, ET);
53 Diag(Loc, DL_Error, ET,
60 Diag(Pointer, DL_Note, ET,
65 Diag(Pointer, DL_Note, ET, "object has invalid vptr")
70 Diag(Pointer, DL_Note, ET, "object is of type %0")
76 Diag(Pointer - DTI.getOffset(), DL_Note, ET,
102 ErrorType ET = ErrorType::CFIBadType;
104 if (ignoreReport(Loc, Opts, ET))
    [all...]
ubsan_diag.h 143 ErrorType ET;
209 Diag(Location Loc, DiagLevel Level, ErrorType ET, const char *Message)
210 : Loc(Loc), Level(Level), ET(ET), Message(Message), NumArgs(0),
232 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET);
266 bool IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename);
  /src/crypto/external/bsd/heimdal/dist/lib/com_err/
lex.l 61 et { return ET; }
62 error_table { return ET; }
parse.h 59 ET = 258, /* ET */
75 #define ET 258
parse.y 61 %token ET INDEX PREFIX EC ID END
71 header : id et
72 | et
81 et : ET STRING label
87 | ET STRING STRING
  /src/lib/librumpuser/
rumpuser_int.h 100 #define ET(_v_) return (_v_);
102 #define ET(_v_) return (_v_) ? rumpuser__errtrans(_v_) : 0;
rumpuser_mem.c 65 ET(rv);
102 ET(rv);
rumpuser.c 70 ET(rv);
110 ET(rv);
171 ET(rv);
220 ET(rv);
rumpuser_random.c 83 ET(errno);
rumpuser_file.c 183 ET(rv);
220 ET(rv);
233 ET(0);
275 ET(rv);
312 ET(rv);
349 ET(rv);
rumpuser_daemonize.c 135 ET(rv);
179 ET(rv);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SnippetRepetitor.cpp 59 const auto &ET = State.getExegesisTarget();
68 ET.setRegTo(State.getSubtargetInfo(), LoopCounter, LoopCount))
82 ET.decrementLoopCounterAndJump(*Loop.MBB, *Loop.MBB,
ParallelSnippetGenerator.cpp 98 const auto &ET = State.getExegesisTarget();
99 const unsigned MemStep = ET.getMaxMemoryAccessSize();
103 ET.fillMemoryOperands(IT, ScratchSpacePointerInReg, I * MemStep);
109 ET.fillMemoryOperands(IT, ScratchSpacePointerInReg, I * MemStep);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 322 template <typename ET>
324 typedef typename ET::Sym Elf_Sym;
325 typedef typename ET::Shdr Elf_Shdr;
326 typedef typename ET::Rel Elf_Rel;
327 typedef typename ET::Word Elf_Word;
330 const object::ELFFile<ET> &ELF;
355 PrinterContext(ScopedPrinter &SW, const object::ELFFile<ET> &ELF,
362 template <typename ET>
363 const size_t PrinterContext<ET>::IndexTableEntrySize = 8;
365 template <typename ET>
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetBuiltins.h 165 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
174 EltType ET = getEltType();
175 return ET == Poly8 || ET == Poly16 || ET == Poly64;
  /src/external/mpl/bind/dist/bin/tests/system/statschannel/
tests_xml.py 16 import xml.etree.ElementTree as ET
53 root = ET.fromstring(r.text)
76 root = ET.fromstring(r.text)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-send-packet.py 16 import xml.etree.ElementTree as ET
62 threads_xml = ET.fromstring(str)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-send-packet.py 16 import xml.etree.ElementTree as ET
62 threads_xml = ET.fromstring(str)

Completed in 86 milliseconds

1 2 3 4