Home
last modified time | relevance | path

Searched refs:ET (Results 1 – 25 of 125) sorted by relevance

12345

/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp27 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 Dubsan_handlers_cxx.cpp46 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 Dubsan_diag.h122 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
/freebsd/crypto/krb5/src/
H A DMakefile.in316 ET = lib/krb5/error_tables/
324 $(INC)asn1_err.h $(ET)asn1_err.c \
325 $(INC)kdb5_err.h $(ET)kdb5_err.c \
326 $(INC)krb5_err.h $(ET)krb5_err.c \
327 $(INC)k5e1_err.h $(ET)k5e1_err.c \
328 $(INC)kv5m_err.h $(ET)kv5m_err.c \
329 $(INC)krb524_err.h $(ET)krb524_err.c \
349 $(INC)asn1_err.h: $(AH) $(ET)asn1_err.et
350 $(AWK) -f $(AH) outfile=$@ $(ET)asn1_err.et
351 $(INC)kdb5_err.h: $(AH) $(ET)kdb5_err.et
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h322 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/include/clang/Basic/
H A DTargetBuiltins.h278 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { in NeonTypeFlags() argument
287 EltType ET = getEltType(); in isPoly() local
288 return ET == Poly8 || ET == Poly16 || ET == Poly64; in isPoly()
291 EltType ET = getEltType(); in isFloatingPoint() local
292 return ET == Float16 || ET == Float32 || ET == Float64 || ET == BFloat16; in isFloatingPoint()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaBPF.cpp63 } 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/kerberos5/
H A DMakefile.inc34 .for ET in ${ETSRCS}
35 .for _ET in ${ET:T:R}
39 ${_ET}.h ${_ET}.c: ${ET}
/freebsd/contrib/com_err/
H A Dparse.y59 %token ET INDEX PREFIX EC ID END
79 et : ET STRING
85 | ET STRING STRING
H A Dlex.l59 et { return ET; }
60 error_table { return ET; }
/freebsd/crypto/heimdal/lib/com_err/
H A Dparse.y59 %token ET INDEX PREFIX EC ID END
79 et : ET STRING
85 | ET STRING STRING
H A Dparse.h42 ET = 258, enumerator
53 #define ET 258 macro
H A Dlex.l59 et { return ET; }
60 error_table { return ET; }
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp198 ConstantArrayType::Create(const ASTContext &Ctx, QualType ET, QualType Can, in Create() argument
205 ET, Can, Sz.getBitWidth(), Sz.getZExtValue(), SzMod, Qual); in Create()
210 ConstantArrayType(ET, Can, SzPtr, SzMod, Qual); in Create()
267 const ASTContext &Context, QualType ET, in Profile() argument
270 ID.AddPointer(ET.getAsOpaquePtr()); in Profile()
291 const ASTContext &Context, QualType ET, in Profile() argument
294 ID.AddPointer(ET.getAsOpaquePtr()); in Profile()
738 if (const auto *ET = getAs<EnumType>()) in isScopedEnumeralType() local
739 return ET->getDecl()->isScoped(); in isScopedEnumeralType()
2116 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) in isIntegralType() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.h109 inline bool isPackedElementTy(EVT ET) { in isPackedElementTy() argument
111 [ET](EVT OVT) { return OVT.getVectorElementType() == ET; }); in isPackedElementTy()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h67 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/clang/lib/StaticAnalyzer/Checkers/
H A DNonnullGlobalConstantsChecker.cpp117 } else if (const auto *ET = dyn_cast<ElaboratedType>(T)) { in isGlobalConstString() local
118 const auto *TT = dyn_cast<TypedefType>(ET->getNamedType()); in isGlobalConstString()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AddressingModes.h151 inline unsigned getExtendEncoding(AArch64_AM::ShiftExtendType ET) { in getExtendEncoding() argument
152 switch (ET) { in getExtendEncoding()
170 static inline unsigned getArithExtendImm(AArch64_AM::ShiftExtendType ET, in getArithExtendImm() argument
173 return (getExtendEncoding(ET) << 3) | (Imm & 0x7); in getArithExtendImm()
200 static inline unsigned getMemExtendImm(AArch64_AM::ShiftExtendType ET, in getMemExtendImm() argument
202 return (getExtendEncoding(ET) << 1) | unsigned(DoShift); in getMemExtendImm()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp173 if (WasmInst->ET == ET_Prefix) { in getInstruction()
191 if (WasmInst->ET == ET_Unused) in getInstruction()
194 assert(WasmInst->ET == ET_Instruction); in getInstruction()
/freebsd/usr.bin/tip/tip/
H A Dremote.c193 if (cgetnum(bp, "et", &ET) == -1) in getremcap()
194 ET = 10; in getremcap()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRefCntblBaseVirtualDtorChecker.cpp116 while (auto *ET = dyn_cast<ElaboratedType>(PointeeType)) { in VisitCXXDeleteExpr() local
117 if (ET->isSugared()) in VisitCXXDeleteExpr()
118 PointeeType = ET->desugar(); in VisitCXXDeleteExpr()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDXILResource.cpp91 static StringRef getElementTypeName(ElementType ET) { in getElementTypeName() argument
92 switch (ET) { in getElementTypeName()
135 static StringRef getElementTypeNameForTemplate(ElementType ET) { in getElementTypeNameForTemplate() argument
136 switch (ET) { in getElementTypeNameForTemplate()
272 ElementType ET = toDXILElementType(ContainedType, IsSigned); in formatTypeName() local
273 if (ET != ElementType::Invalid) { in formatTypeName()
274 ElementName = getElementTypeNameForTemplate(ET); in formatTypeName()
537 dxil::ElementType ET = toDXILElementType(ElTy, IsSigned); in getTyped() local
541 return {ET, Count}; in getTyped()
/freebsd/tools/kerneldoc/subsys/
H A DDoxyfile-dev_et6 PROJECT_NAME = "FreeBSD kernel ET device code"
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DXCore.cpp414 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 DRangeSelector.cpp226 auto ET = Loc.getAs<ElaboratedTypeLoc>(); in name() local
227 if (!ET.isNull()) in name()
228 Loc = ET.getNamedTypeLoc(); in name()

12345