/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
H A D | ubsan_handlers.cpp | 27 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) { in ignoreReport() argument 37 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename()); in ignoreReport() 91 ErrorType ET; in handleTypeMismatchImpl() local 93 ET = (Data->TypeCheckKind == TCK_NonnullAssign) in handleTypeMismatchImpl() 97 ET = ErrorType::MisalignedPointerUse; in handleTypeMismatchImpl() 99 ET = ErrorType::InsufficientObjectSize; in handleTypeMismatchImpl() 103 if (ignoreReport(Loc.getSourceLocation(), Opts, ET)) in handleTypeMismatchImpl() 112 ScopedReport R(Opts, Loc, ET); in handleTypeMismatchImpl() 114 switch (ET) { in handleTypeMismatchImpl() 117 Diag(Loc, DL_Error, ET, "%0 null pointer of type %1") in handleTypeMismatchImpl() [all …]
|
H A D | ubsan_handlers_cxx.cpp | 46 ErrorType ET = ErrorType::DynamicTypeMismatch; in HandleDynamicTypeCacheMiss() local 47 if (ignoreReport(Loc, Opts, ET)) in HandleDynamicTypeCacheMiss() 50 ScopedReport R(Opts, Loc, ET); in HandleDynamicTypeCacheMiss() 52 Diag(Loc, DL_Error, ET, in HandleDynamicTypeCacheMiss() 59 Diag(Pointer, DL_Note, ET, in HandleDynamicTypeCacheMiss() 64 Diag(Pointer, DL_Note, ET, "object has invalid vptr") in HandleDynamicTypeCacheMiss() 69 Diag(Pointer, DL_Note, ET, "object is of type %0") in HandleDynamicTypeCacheMiss() 75 Diag(Pointer - DTI.getOffset(), DL_Note, ET, in HandleDynamicTypeCacheMiss() 101 ErrorType ET = ErrorType::CFIBadType; in __ubsan_handle_cfi_bad_type() local 103 if (ignoreReport(Loc, Opts, ET)) in __ubsan_handle_cfi_bad_type() [all …]
|
H A D | ubsan_diag.h | 122 ErrorType ET; 188 Diag(Location Loc, DiagLevel Level, ErrorType ET, const char *Message) 189 : Loc(Loc), Level(Level), ET(ET), Message(Message), NumArgs(0), 211 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET); 242 bool IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename); 142 ErrorType ET; global() variable 208 Diag(Location Loc,DiagLevel Level,ErrorType ET,const char * Message) Diag() argument
|
H A D | ubsan_diag.cpp | 360 UndefinedBehaviorReport UBR{ConvertTypeToString(ET), Loc, Buffer}; in ~Diag() 429 bool __ubsan::IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename) { in IsPCSuppressed() argument 432 const char *SuppType = ConvertTypeToFlagName(ET); in IsPCSuppressed()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | 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; 356 PrinterContext(ScopedPrinter &SW, const object::ELFFile<ET> &ELF, in PrinterContext() 363 template <typename ET> 364 const size_t PrinterContext<ET>::IndexTableEntrySize = 8; 366 template <typename ET> [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaBPF.cpp | 63 } else if (const auto *ET = Ty->getAs<EnumType>()) { in isValidPreserveTypeInfoArg() local 64 if (!ET->getDecl()->getDeclName().isEmpty()) in isValidPreserveTypeInfoArg() 103 const auto *ET = Ty->getAs<EnumType>(); in isValidPreserveEnumValueArg() local 104 if (!ET) in isValidPreserveEnumValueArg() 108 return llvm::is_contained(ET->getDecl()->enumerators(), Enumerator); in isValidPreserveEnumValueArg()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | TargetBuiltins.h | 205 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { in NeonTypeFlags() argument 214 EltType ET = getEltType(); in isPoly() local 215 return ET == Poly8 || ET == Poly16 || ET == Poly64; in isPoly()
|
/freebsd/kerberos5/ |
H A D | Makefile.inc | 38 .for ET in ${ETSRCS} 39 .for _ET in ${ET:T:R} 43 ${_ET}.h ${_ET}.c: ${ET}
|
/freebsd/contrib/com_err/ |
H A D | parse.y | 59 %token ET INDEX PREFIX EC ID END 79 et : ET STRING 85 | ET STRING STRING
|
H A D | lex.l | 59 et { return ET; } 60 error_table { return ET; }
|
/freebsd/crypto/heimdal/lib/com_err/ |
H A D | parse.y | 59 %token ET INDEX PREFIX EC ID END 79 et : ET STRING 85 | ET STRING STRING
|
H A D | parse.h | 42 ET = 258, enumerator 53 #define ET 258 macro
|
H A D | lex.l | 59 et { return ET; } 60 error_table { return ET; }
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 163 ConstantArrayType::Create(const ASTContext &Ctx, QualType ET, QualType Can, in Create() argument 170 ET, Can, Sz.getBitWidth(), Sz.getZExtValue(), SzMod, Qual); in Create() 175 ConstantArrayType(ET, Can, SzPtr, SzMod, Qual); in Create() 231 const ASTContext &Context, QualType ET, in Profile() argument 234 ID.AddPointer(ET.getAsOpaquePtr()); in Profile() 252 QualType ET, in Profile() argument 256 ID.AddPointer(ET.getAsOpaquePtr()); in Profile() 689 if (const auto *ET = getAs<EnumType>()) in isScopedEnumeralType() local 690 return ET->getDecl()->isScoped(); in isScopedEnumeralType() 2065 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) in isIntegralType() local [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
H A D | GVNExpression.h | 67 Expression(ExpressionType ET = ET_Base, unsigned O = ~2U) 68 : EType(ET), Opcode(O) {} in EType() argument 149 BasicExpression(unsigned NumOperands, ExpressionType ET) in BasicExpression() argument 150 : Expression(ET), MaxOperands(NumOperands) {} in BasicExpression() 157 ExpressionType ET = EB->getExpressionType(); in classof() local 158 return ET > ET_BasicStart && ET < ET_BasicEnd; in classof()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64AddressingModes.h | 151 inline unsigned getExtendEncoding(AArch64_AM::ShiftExtendType ET) { 152 switch (ET) { in getExtendEncoding() argument 170 static inline unsigned getArithExtendImm(AArch64_AM::ShiftExtendType ET, 173 return (getExtendEncoding(ET) << 3) | (Imm & 0x7); in getArithExtendImm() 200 static inline unsigned getMemExtendImm(AArch64_AM::ShiftExtendType ET, 202 return (getExtendEncoding(ET) << 1) | unsigned(DoShift); in getMemExtendImm() 171 getArithExtendImm(AArch64_AM::ShiftExtendType ET,unsigned Imm) getArithExtendImm() argument 201 getMemExtendImm(AArch64_AM::ShiftExtendType ET,bool DoShift) getMemExtendImm() argument
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | NonnullGlobalConstantsChecker.cpp | 118 } else if (const auto *ET = dyn_cast<ElaboratedType>(T)) { in isGlobalConstString() local 119 const auto *TT = dyn_cast<TypedefType>(ET->getNamedType()); in isGlobalConstString()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/ |
H A D | WebAssemblyDisassembler.cpp | 172 if (WasmInst->ET == ET_Prefix) { in getInstruction() 190 if (WasmInst->ET == ET_Unused) in getInstruction() 193 assert(WasmInst->ET == ET_Instruction); in getInstruction()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
H A D | RefCntblBaseVirtualDtorChecker.cpp | 83 while (auto *ET = dyn_cast<ElaboratedType>(PointeeType)) { in VisitCXXDeleteExpr() local 84 if (ET->isSugared()) in VisitCXXDeleteExpr() 85 PointeeType = ET->desugar(); in VisitCXXDeleteExpr()
|
/freebsd/usr.bin/tip/tip/ |
H A D | remote.c | 193 if (cgetnum(bp, "et", &ET) == -1) in getremcap() 194 ET = 10; in getremcap()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGHLSLRuntime.cpp | 201 llvm::hlsl::ElementType ET, in addBufferResourceAnnotation() argument 224 GV, RK, ET, IsROV, Binding.Reg.value_or(UINT_MAX), Binding.Space); in addBufferResourceAnnotation() 291 llvm::hlsl::ElementType ET = calculateElementType(CGM.getContext(), Ty); in annotateHLSLResource() local 294 addBufferResourceAnnotation(GV, RC, RK, IsROV, ET, Binding); in annotateHLSLResource()
|
/freebsd/tools/kerneldoc/subsys/ |
H A D | Doxyfile-dev_et | 6 PROJECT_NAME = "FreeBSD kernel ET device code"
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | XCore.cpp | 414 static bool appendEnumType(SmallStringEnc &Enc, const EnumType *ET, in appendEnumType() argument 431 if (const EnumDecl *ED = ET->getDecl()->getDefinition()) { in appendEnumType() 617 if (const EnumType *ET = QT->getAs<EnumType>()) in appendType() local 618 return appendEnumType(Enc, ET, TSC, QT.getBaseTypeIdentifier()); in appendType()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | RangeSelector.cpp | 227 auto ET = Loc.getAs<ElaboratedTypeLoc>(); in name() local 228 if (!ET.isNull()) in name() 229 Loc = ET.getNamedTypeLoc(); in name()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
H A D | AArch64AsmParser.cpp | 1536 AArch64_AM::ShiftExtendType ET = getShiftExtendType(); in isExtend() local 1537 return (ET == AArch64_AM::UXTB || ET == AArch64_AM::SXTB || in isExtend() 1538 ET == AArch64_AM::UXTH || ET == AArch64_AM::SXTH || in isExtend() 1539 ET == AArch64_AM::UXTW || ET == AArch64_AM::SXTW || in isExtend() 1540 ET == AArch64_AM::UXTX || ET == AArch64_AM::SXTX || in isExtend() 1541 ET == AArch64_AM::LSL) && in isExtend() 1549 AArch64_AM::ShiftExtendType ET = getShiftExtendType(); in isExtend64() local 1550 return ET == AArch64_AM::UXTB || ET == AArch64_AM::SXTB || in isExtend64() 1551 ET == AArch64_AM::UXTH || ET == AArch64_AM::SXTH || in isExtend64() 1552 ET == AArch64_AM::UXTW || ET == AArch64_AM::SXTW; in isExtend64() [all …]
|