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

1 2 3 4 5 6 7 8 91011>>

  /src/tools/m4/bootstrap/
parser.h 6 #define NE 262
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckPlacementNew.cpp 25 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,
66 const Expr *Place = NE->getPlacementArg(0);
70 SVal PlacementNewChecker::getExtentSizeOfNewTarget(const CXXNewExpr *NE,
75 QualType ElementType = NE->getAllocatedType();
79 if (NE->isArray())
    [all...]
PointerArithChecker.cpp 49 AllocKind getKindOfNewOp(const CXXNewExpr *NE, const FunctionDecl *FD) const;
68 void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const;
90 AllocKind PointerArithChecker::getKindOfNewOp(const CXXNewExpr *NE,
98 if (NE->isArray())
240 void PointerArithChecker::checkPostStmt(const CXXNewExpr *NE,
242 const FunctionDecl *FD = NE->getOperatorNew();
246 AllocKind Kind = getKindOfNewOp(NE, FD);
249 SVal AllocedVal = C.getSVal(NE);
AnalysisOrderChecker.cpp 85 void checkPreStmt(const CXXNewExpr *NE, CheckerContext &C) const {
90 void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const {
95 void checkPreStmt(const CXXDeleteExpr *NE, CheckerContext &C) const {
100 void checkPostStmt(const CXXDeleteExpr *NE, CheckerContext &C) const {
105 void checkPreStmt(const CXXConstructExpr *NE, CheckerContext &C) const {
110 void checkPostStmt(const CXXConstructExpr *NE, CheckerContext &C) const {
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
AnyCall.h 81 AnyCall(const CXXNewExpr *NE)
82 : E(NE), D(NE->getOperatorNew()), K(Allocator) {}
84 AnyCall(const CXXDeleteExpr *NE)
85 : E(NE), D(NE->getOperatorDelete()), K(Deallocator) {}
87 AnyCall(const CXXConstructExpr *NE)
88 : E(NE), D(NE->getConstructor()), K(Constructor) {}
ConstructionContext.h 90 ConstructionContextItem(const CXXNewExpr *NE)
91 : Data(NE), Kind(NewAllocatorKind) {}
441 const CXXNewExpr *NE;
445 explicit NewAllocatedObjectConstructionContext(const CXXNewExpr *NE)
447 NE(NE) {
448 assert(NE);
452 const CXXNewExpr *getCXXNewExpr() const { return NE; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
ARMBaseInfo.h 32 NE, // Not equal Not equal, or unordered
51 case EQ: return NE;
52 case NE: return EQ;
75 case ARMCC::NE: return ARMCC::NE;
149 case ARMCC::NE: return "ne";
170 .Case("ne", ARMCC::NE)
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/MCTargetDesc/
ARCInfo.h 27 NE = 0x2,
42 NZ = 0x12 // Low 4-bits = NE
  /src/external/bsd/pcc/dist/pcc/f77/fcom/
scjdefs.h 26 #define P2NE NE
  /src/sys/arch/arm/xscale/
ixp425-fw.mk 4 # For IXP425 NE support, this file must be included by the board-specific
  /src/usr.bin/m4/
parser.y 37 %left EQ NE
72 | expr NE expr { $$ = $1 != $3; }
tokenizer.l 63 "!=" { return(NE); }
  /src/external/lgpl3/gmp/dist/demos/calc/
calc.h 79 NE = 280, /* NE */
114 #define NE 280
calclex.l 79 "!=" { return NE; }
  /src/external/bsd/pcc/dist/pcc/cc/cpp/
cpy.y 86 %term EQ NE LE GE LS RS
99 %binary EQ NE
144 | e NE e
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
AtomicChange.cpp 243 NormalizedAtomicChange NE;
245 YAML >> NE;
246 AtomicChange E(NE.Key, NE.FilePath, NE.Error, NE.InsertedHeaders,
247 NE.RemovedHeaders, tooling::Replacements());
248 for (const auto &R : NE.Replaces) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTX.h 29 NE,
151 NE,
  /src/usr.bin/xlint/lint1/
op.h 91 NE,
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
Graph.h 218 EdgeEntry &NE = getEdge(EId);
221 NE.connect(*this, EId);
320 AdjEdgeIdSet(const NodeEntry &NE) : NE(NE) {}
323 return NE.getAdjEdgeIds().begin();
327 return NE.getAdjEdgeIds().end();
330 bool empty() const { return NE.getAdjEdgeIds().empty(); }
333 return NE.getAdjEdgeIds().size();
337 const NodeEntry ≠
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Descriptor.cpp 35 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) {
42 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) {
49 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) {
  /src/external/gpl3/gcc/dist/gcc/
jump.cc 387 case NE:
389 /* It is always safe to reverse EQ and NE, even for the floating
508 return NE;
509 case NE:
555 return NE;
556 case NE:
597 case NE:
644 case NE:
673 case NE:
724 if (code2 == UNLE || code2 == NE)
    [all...]
dojump.cc 216 && !can_compare_p (NE, int_mode, ccp_jump))
220 do_compare_and_jump (op0, op1, NE, NE, if_false_label, if_true_label,
622 NE, TYPE_UNSIGNED (TREE_TYPE (exp)),
700 do_compare_rtx_and_jump (op0_word, op1_word, NE, unsignedp, NULL,
876 case NE:
911 *code2 = NE;
998 || (! HONOR_SNANS (mode) && (code == EQ || code == NE))))
1106 case NE:
1144 else if ((orig_code == EQ || orig_code == NE)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
jump.cc 384 case NE:
386 /* It is always safe to reverse EQ and NE, even for the floating
505 return NE;
506 case NE:
552 return NE;
553 case NE:
594 case NE:
641 case NE:
670 case NE:
721 if (code2 == UNLE || code2 == NE)
    [all...]
dojump.cc 216 && !can_compare_p (NE, int_mode, ccp_jump))
220 do_compare_and_jump (op0, op1, NE, NE, if_false_label, if_true_label,
624 NE, TYPE_UNSIGNED (TREE_TYPE (exp)),
702 do_compare_rtx_and_jump (op0_word, op1_word, NE, unsignedp, word_mode,
878 case NE:
913 *code2 = NE;
983 || (! HONOR_SNANS (mode) && (code == EQ || code == NE))))
1091 case NE:
1129 else if ((orig_code == EQ || orig_code == NE)
    [all...]
  /src/external/bsd/pcc/dist/pcc/arch/pdp11/
local2.c 158 case NE:
160 cb2 = NE;
163 cb1 = NE;
205 case NE:
207 cbgen(NE, p->n_label);
209 cbgen(NE, p->n_label);
593 case NE: /* Hack not to clear bits if FORCC */

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011>>