Home
last modified time | relevance | path

Searched refs:NE (Results 1 – 25 of 151) sorted by relevance

1234567

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckPlacementNew.cpp25 void checkPreStmt(const CXXNewExpr *NE, CheckerContext &C) const;
28 bool checkPlaceCapacityIsSufficient(const CXXNewExpr *NE,
31 bool checkPlaceIsAlignedProperly(const CXXNewExpr *NE,
36 SVal getExtentSizeOfNewTarget(const CXXNewExpr *NE, CheckerContext &C,
40 SVal getExtentSizeOfPlace(const CXXNewExpr *NE, CheckerContext &C) const;
64 SVal PlacementNewChecker::getExtentSizeOfPlace(const CXXNewExpr *NE, in getExtentSizeOfPlace() argument
66 const Expr *Place = NE->getPlacementArg(0); in getExtentSizeOfPlace()
70 SVal PlacementNewChecker::getExtentSizeOfNewTarget(const CXXNewExpr *NE, in getExtentSizeOfNewTarget() argument
75 QualType ElementType = NE->getAllocatedType(); in getExtentSizeOfNewTarget()
79 if (NE->isArray()) { in getExtentSizeOfNewTarget()
[all …]
H A DAnalysisOrderChecker.cpp85 void checkPreStmt(const CXXNewExpr *NE, CheckerContext &C) const { in checkPreStmt() argument
90 void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const { in checkPostStmt() argument
95 void checkPreStmt(const CXXDeleteExpr *NE, CheckerContext &C) const { in checkPreStmt() argument
100 void checkPostStmt(const CXXDeleteExpr *NE, CheckerContext &C) const { in checkPostStmt() argument
105 void checkPreStmt(const CXXConstructExpr *NE, CheckerContext &C) const { in checkPreStmt() argument
110 void checkPostStmt(const CXXConstructExpr *NE, CheckerContext &C) const { in checkPostStmt() argument
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnyCall.h82 AnyCall(const CXXNewExpr *NE) in AnyCall() argument
83 : E(NE), D(NE->getOperatorNew()), K(Allocator) {} in AnyCall()
85 AnyCall(const CXXDeleteExpr *NE) in AnyCall() argument
86 : E(NE), D(NE->getOperatorDelete()), K(Deallocator) {} in AnyCall()
88 AnyCall(const CXXConstructExpr *NE) in AnyCall() argument
89 : E(NE), D(NE->getConstructor()), K(Constructor) {} in AnyCall()
H A DConstructionContext.h93 ConstructionContextItem(const CXXNewExpr *NE) in ConstructionContextItem() argument
94 : Data(NE), Kind(NewAllocatorKind) {} in ConstructionContextItem()
464 const CXXNewExpr *NE; variable
468 explicit NewAllocatedObjectConstructionContext(const CXXNewExpr *NE) in NewAllocatedObjectConstructionContext() argument
470 NE(NE) { in NewAllocatedObjectConstructionContext()
471 assert(NE); in NewAllocatedObjectConstructionContext()
475 const CXXNewExpr *getCXXNewExpr() const { return NE; } in getCXXNewExpr()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h32 NE, // Not equal Not equal, or unordered enumerator
51 case EQ: return NE; in getOppositeCondition()
52 case NE: return EQ; in getOppositeCondition()
75 case ARMCC::NE: return ARMCC::NE; in getSwappedCondition()
149 case ARMCC::NE: return "ne"; in ARMCondCodeToString()
170 .Case("ne", ARMCC::NE) in ARMCondCodeFromString()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DGraph.h218 EdgeEntry &NE = getEdge(EId); in addConstructedEdge() local
221 NE.connect(*this, EId); in addConstructedEdge()
320 AdjEdgeIdSet(const NodeEntry &NE) : NE(NE) {} in AdjEdgeIdSet() argument
323 return NE.getAdjEdgeIds().begin(); in begin()
327 return NE.getAdjEdgeIds().end(); in end()
330 bool empty() const { return NE.getAdjEdgeIds().empty(); } in empty()
333 return NE.getAdjEdgeIds().size(); in size()
337 const NodeEntry ≠
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp243 NormalizedAtomicChange NE; in convertFromYAML() local
245 YAML >> NE; in convertFromYAML()
246 AtomicChange E(NE.Key, NE.FilePath, NE.Error, NE.InsertedHeaders, in convertFromYAML()
247 NE.RemovedHeaders, tooling::Replacements()); in convertFromYAML()
248 for (const auto &R : NE.Replaces) { in convertFromYAML()
/freebsd/usr.bin/m4/
H A Dparser.y33 %left EQ NE
70 | expr NE expr { $$ = $1 != $3; }
H A Dtokenizer.l60 "!=" { return(NE); }
/freebsd/sys/dev/sound/pcm/
H A Dfeeder_volume.c86 FEEDVOLUME_DECLARE(S, 8, NE)
89 FEEDVOLUME_DECLARE(U, 8, NE)
125 FEEDVOLUME_ENTRY(S, 8, NE),
128 FEEDVOLUME_ENTRY(U, 8, NE),
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DDescriptor.cpp47 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in ctorArrayTy() local
59 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in dtorArrayTy() local
77 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in moveArrayTy() local
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTX.h30 NE, enumerator
156 NE, enumerator
/freebsd/contrib/one-true-awk/
H A Dawkgram.y54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN
82 %nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|'
234 | pattern NE pattern { $$ = op2($2, $1, $3); }
498 case LE: case LT: case EQ: case NE: case GT: case GE:
502 return op2(NE, n, nullnode);
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/
H A DARCInfo.h27 NE = 0x2, enumerator
/freebsd/share/msgdef/
H A Dsl_SI.ISO8859-2.src8 ne:n:NE:N:no:n:NO:N
H A Dcs_CZ.ISO8859-2.src16 ne:n:NE:N:no:n:NO:N
H A Dlt_LT.ISO8859-13.src16 ne:n:NE:N:no:n:NO:N
/freebsd/share/msgdef_unicode/
H A Dsr_RS.UTF-8@latin.src16 ne:n:NE:N:no:n:NO:N
H A Dcs_CZ.UTF-8.src16 ne:n:NE:N:no:n:NO:N
H A Dlt_LT.UTF-8.src16 ne:n:NE:N:no:n:NO:N
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DConstructionContext.cpp184 const auto *NE = cast<CXXNewExpr>(TopItem.getStmt()); in createFromLayers() local
185 return create<NewAllocatedObjectConstructionContext>(C, NE); in createFromLayers()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDominanceFrontierImpl.h194 NE = currentNode->end(); in calculate()
195 NI != NE; ++NI) { in calculate() local
/freebsd/bin/expr/
H A Dexpr.y85 %left <val> '=' '>' '<' GE LE NE
106 | expr NE expr { $$ = op_ne($1, $3); }
248 case '!': return (NE); in yylex()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h257 NE = 0x1, // Not equal Not equal, or unordered enumerator
276 ANY_ACTIVE = NE, // (!Z)
286 case NE: return "ne"; in getCondCodeName()
320 case NE: return 0; // Z == 0 in getNZCVToSatisfyCondCode()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp82 for (auto NI = path::begin(File), NE = path::end(File), in getRelativeIncludeName() local
86 while (NI != NE && *NI == ".") in getRelativeIncludeName()
88 if (NI == NE) in getRelativeIncludeName()

1234567