Home
last modified time | relevance | path

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

12345678910>>...24

/netbsd-src/external/apache2/llvm/dist/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 DPointerArithChecker.cpp49 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, in getKindOfNewOp() argument
98 if (NE->isArray()) in getKindOfNewOp()
240 void PointerArithChecker::checkPostStmt(const CXXNewExpr *NE, in checkPostStmt() argument
242 const FunctionDecl *FD = NE->getOperatorNew(); in checkPostStmt()
246 AllocKind Kind = getKindOfNewOp(NE, FD); in checkPostStmt()
249 SVal AllocedVal = C.getSVal(NE); in checkPostStmt()
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
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnyCall.h81 AnyCall(const CXXNewExpr *NE) in AnyCall() argument
82 : E(NE), D(NE->getOperatorNew()), K(Allocator) {} in AnyCall()
84 AnyCall(const CXXDeleteExpr *NE) in AnyCall() argument
85 : E(NE), D(NE->getOperatorDelete()), K(Deallocator) {} in AnyCall()
87 AnyCall(const CXXConstructExpr *NE) in AnyCall() argument
88 : E(NE), D(NE->getConstructor()), K(Constructor) {} in AnyCall()
H A DConstructionContext.h90 ConstructionContextItem(const CXXNewExpr *NE) in ConstructionContextItem() argument
91 : Data(NE), Kind(NewAllocatorKind) {} in ConstructionContextItem()
441 const CXXNewExpr *NE; variable
445 explicit NewAllocatedObjectConstructionContext(const CXXNewExpr *NE) in NewAllocatedObjectConstructionContext() argument
447 NE(NE) { in NewAllocatedObjectConstructionContext()
448 assert(NE); in NewAllocatedObjectConstructionContext()
452 const CXXNewExpr *getCXXNewExpr() const { return NE; } in getCXXNewExpr()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/s390/
H A Ds390-modes.def38 CCZ: EQ NE NE NE
39 CCZ1: EQ NE (CS)
43 CCU: EQ LTU GTU NE (CLG/R, CL/R/Y, CLM/Y, CLI/Y)
44 CCUR: EQ GTU LTU NE (CLGF/R)
66 CCO: EQ EQ EQ NE (AGR, AGHI, SGR, MSC, ...)
70 CCL: EQ NE EQ NE (ALGF/R, ALG/R, AL/R/Y,
80 CCT: EQ NE NE NE (ICM/Y, TML, CG/R, CGHI,
83 CCT1: NE EQ NE NE (TMH, TML)
84 CCT2: NE NE EQ NE (TMH, TML)
85 CCT3: NE NE NE EQ (TMH, TML)
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/s390/
H A Ds390-modes.def41 CCZ: EQ NE NE NE
42 CCZ1: EQ NE (CS)
46 CCU: EQ LTU GTU NE (CLG/R, CL/R/Y, CLM/Y, CLI/Y)
47 CCUR: EQ GTU LTU NE (CLGF/R)
69 CCO: EQ EQ EQ NE (AGR, AGHI, SGR, MSC, ...)
73 CCL: EQ NE EQ NE (ALGF/R, ALG/R, AL/R/Y,
83 CCT: EQ NE NE NE (ICM/Y, TML, CG/R, CGHI,
86 CCT1: NE EQ NE NE (TMH, TML)
87 CCT2: NE NE EQ NE (TMH, TML)
88 CCT3: NE NE NE EQ (TMH, TML)
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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 ≠
/netbsd-src/share/misc/
H A Dzipcodes29971 68001:Bruno, NE
29972 68002:Arlington, NE
29973 68003:Ashland, NE
29974 68004:Bancroft, NE
29975 68005:Bellevue, NE
29976 68007:Bennington, NE
29977 68008:Blair, NE
29978 68009:Blair, NE
29979 68010:Boys Town, NE
29980 68014:Bruno, NE
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Djump.cc380 case NE: in reversed_comparison_code_parts()
500 return NE; in reverse_condition()
501 case NE: in reverse_condition()
547 return NE; in reverse_condition_maybe_unordered()
548 case NE: in reverse_condition_maybe_unordered()
589 case NE: in swap_condition()
636 case NE: in unsigned_condition()
665 case NE: in signed_condition()
715 if (code2 == UNLE || code2 == NE) in comparison_dominates_p()
720 if (code2 == LE || code2 == NE || code2 == ORDERED || code2 == LTGT) in comparison_dominates_p()
[all …]
H A Ddojump.cc215 && !can_compare_p (NE, int_mode, ccp_jump)) in do_jump_1()
219 do_compare_and_jump (op0, op1, NE, NE, if_false_label, if_true_label, in do_jump_1()
623 NE, TYPE_UNSIGNED (TREE_TYPE (exp)), in do_jump()
700 do_compare_rtx_and_jump (op0_word, op1_word, NE, unsignedp, word_mode, in do_jump_by_parts_greater_rtx()
874 case NE: in split_comparison()
909 *code2 = NE; in split_comparison()
979 || (! HONOR_SNANS (mode) && (code == EQ || code == NE)))) in do_compare_rtx_and_jump()
1087 case NE: in do_compare_rtx_and_jump()
1125 else if ((orig_code == EQ || orig_code == NE) in do_compare_rtx_and_jump()
1199 if (orig_code == NE && can_compare_p (UNEQ, mode, ccp_jump)) in do_compare_rtx_and_jump()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Djump.c380 case NE: in reversed_comparison_code_parts()
500 return NE; in reverse_condition()
501 case NE: in reverse_condition()
547 return NE; in reverse_condition_maybe_unordered()
548 case NE: in reverse_condition_maybe_unordered()
589 case NE: in swap_condition()
636 case NE: in unsigned_condition()
665 case NE: in signed_condition()
715 if (code2 == UNLE || code2 == NE) in comparison_dominates_p()
720 if (code2 == LE || code2 == NE || code2 == ORDERED || code2 == LTGT) in comparison_dominates_p()
[all …]
H A Ddojump.c215 && !can_compare_p (NE, int_mode, ccp_jump)) in do_jump_1()
219 do_compare_and_jump (op0, op1, NE, NE, if_false_label, if_true_label, in do_jump_1()
623 NE, TYPE_UNSIGNED (TREE_TYPE (exp)), in do_jump()
700 do_compare_rtx_and_jump (op0_word, op1_word, NE, unsignedp, word_mode, in do_jump_by_parts_greater_rtx()
874 case NE: in split_comparison()
909 *code2 = NE; in split_comparison()
979 || (! HONOR_SNANS (mode) && (code == EQ || code == NE)))) in do_compare_rtx_and_jump()
1087 case NE: in do_compare_rtx_and_jump()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DDescriptor.cpp35 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in ctorArrayTy() local
42 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in dtorArrayTy() local
49 for (unsigned I = 0, NE = D->getNumElems(); I < NE; ++I) { in moveArrayTy() local
/netbsd-src/external/bsd/pcc/dist/pcc/arch/pdp11/
H A Dlocal2.c158 case NE: in twolcomp()
160 cb2 = NE; in twolcomp()
163 cb1 = NE; in twolcomp()
205 case NE: in lcomp()
207 cbgen(NE, p->n_label); in lcomp()
209 cbgen(NE, p->n_label); in lcomp()
593 case NE: /* Hack not to clear bits if FORCC */ in fixops()
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cpp/
H A Dcpy.y86 %term EQ NE LE GE LS RS
99 %binary EQ NE
144 | e NE e
/netbsd-src/external/lgpl3/gmp/dist/demos/calc/
H A Dcalc.h79 NE = 280, /* NE */ enumerator
114 #define NE 280 macro
/netbsd-src/usr.bin/m4/
H A Dparser.y37 %left EQ NE
72 | expr NE expr { $$ = $1 != $3; }
/netbsd-src/external/gpl3/gcc/dist/gcc/config/nds32/
H A Dnds32-md-auxiliary.cc89 case NE: in nds32_inverse_cond_code()
92 return NE; in nds32_inverse_cond_code()
111 case NE: in nds32_cond_code_str()
454 cmp_code = NE; in nds32_expand_cbranch()
496 PUT_CODE (operands[0], NE); in nds32_expand_cbranch()
553 PUT_CODE (operands[0], NE); in nds32_expand_cbranch()
579 cmp_code = NE; in nds32_expand_cbranch()
647 case NE: in nds32_expand_cbranch()
677 case NE: in nds32_expand_cstore()
903 case NE: in nds32_expand_float_cbranch()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nds32/
H A Dnds32-md-auxiliary.c89 case NE: in nds32_inverse_cond_code()
92 return NE; in nds32_inverse_cond_code()
111 case NE: in nds32_cond_code_str()
454 cmp_code = NE; in nds32_expand_cbranch()
496 PUT_CODE (operands[0], NE); in nds32_expand_cbranch()
553 PUT_CODE (operands[0], NE); in nds32_expand_cbranch()
579 cmp_code = NE; in nds32_expand_cbranch()
647 case NE: in nds32_expand_cbranch()
677 case NE: in nds32_expand_cstore()
903 case NE: in nds32_expand_float_cbranch()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTX.h29 NE, enumerator
151 NE, enumerator
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/mmix/
H A Dpredicates.md42 && (code == NE || code == EQ || code == GE || code == GT
79 && (code == NE || code == EQ))
83 && (code == NE || code == EQ || code == GE || code == GT
86 && (code == NE || code == EQ || code == GE || code == GT
/netbsd-src/external/gpl3/gcc/dist/gcc/config/mmix/
H A Dpredicates.md42 && (code == NE || code == EQ || code == GE || code == GT
79 && (code == NE || code == EQ))
83 && (code == NE || code == EQ || code == GE || code == GT
86 && (code == NE || code == EQ || code == GE || code == GT

12345678910>>...24