Home
last modified time | relevance | path

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

12345678910>>...32

/external/guava/android/guava-tests/test/com/google/common/collect/
DMultisetsImmutableEntryTest.java31 private static final String NE = null; field in MultisetsImmutableEntryTest
47 assertEquals("null", entry(NE, 1).toString()); in testToStringNull()
48 assertEquals("null x 2", entry(NE, 2).toString()); in testToStringNull()
61 assertEquals(control(NE, 1), entry(NE, 1)); in testEqualsNull()
62 assertFalse(control(NE, 1).equals(entry(NE, 2))); in testEqualsNull()
63 assertFalse(entry(NE, 1).equals(control("bar", 1))); in testEqualsNull()
64 assertFalse(entry(NE, 1).equals(new Object())); in testEqualsNull()
65 assertFalse(entry(NE, 1).equals(null)); in testEqualsNull()
74 assertEquals(control(NE, 1).hashCode(), entry(NE, 1).hashCode()); in testHashCodeNull()
/external/guava/guava-tests/test/com/google/common/collect/
DMultisetsImmutableEntryTest.java31 private static final String NE = null; field in MultisetsImmutableEntryTest
47 assertEquals("null", entry(NE, 1).toString()); in testToStringNull()
48 assertEquals("null x 2", entry(NE, 2).toString()); in testToStringNull()
61 assertEquals(control(NE, 1), entry(NE, 1)); in testEqualsNull()
62 assertFalse(control(NE, 1).equals(entry(NE, 2))); in testEqualsNull()
63 assertFalse(entry(NE, 1).equals(control("bar", 1))); in testEqualsNull()
64 assertFalse(entry(NE, 1).equals(new Object())); in testEqualsNull()
65 assertFalse(entry(NE, 1).equals(null)); in testEqualsNull()
74 assertEquals(control(NE, 1).hashCode(), entry(NE, 1).hashCode()); in testHashCodeNull()
/external/clang/test/Preprocessor/
Dmacro_with_initializer_list.cpp74 #define NE(x,y) (void)(x != y) // expected-note 6{{defined here}} macro
80 NE(F,F); in test_NE()
82 NE(F,Foo()); in test_NE()
84 NE(F,Foo({1,2,3})); in test_NE()
86 NE((Foo{1,2,3}),(Foo{1,2,3})); in test_NE()
89 NE(F,Foo{1,2,3}); in test_NE()
93 NE(Foo{1,2,3},F); in test_NE()
97 NE(Foo{1,2,3},Foo{1,2,3}); in test_NE()
102 NE(Foo{1,2,3} + Foo{1,2,3}, F); in test_NE()
106 NE(F, Foo({1,2,3}) + Foo{1,2,3}); in test_NE()
[all …]
/external/u-boot/cmd/
Ditest.c23 #define NE 1 macro
43 { "-ne", NE },
44 { "!=" , NE },
45 { "<>" , NE },
126 case NE: return (p != 0); in stringcomp()
144 case NE: return (l != r); in arithcomp()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/Utils/
DARMBaseInfo.h33 NE, // Not equal Not equal, or unordered enumerator
52 case EQ: return NE; in getOppositeCondition()
53 case NE: return EQ; in getOppositeCondition()
73 case ARMCC::NE: return "ne"; in ARMCondCodeToString()
94 .Case("ne", ARMCC::NE) in ARMCondCodeFromString()
/external/ltp/testcases/lib/
Dtst_kvcmp.c14 NE, enumerator
30 return NE; in strtop()
128 case NE: in main()
169 case NE: in main()
/external/clang/lib/StaticAnalyzer/Checkers/
DPointerArithChecker.cpp51 AllocKind getKindOfNewOp(const CXXNewExpr *NE, const FunctionDecl *FD) const;
70 void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const;
92 AllocKind PointerArithChecker::getKindOfNewOp(const CXXNewExpr *NE, in getKindOfNewOp() argument
100 if (NE->isArray()) in getKindOfNewOp()
243 void PointerArithChecker::checkPostStmt(const CXXNewExpr *NE, in checkPostStmt() argument
245 const FunctionDecl *FD = NE->getOperatorNew(); in checkPostStmt()
249 AllocKind Kind = getKindOfNewOp(NE, FD); in checkPostStmt()
252 SVal AllocedVal = State->getSVal(NE, C.getLocationContext()); in checkPostStmt()
DMallocChecker.cpp203 void checkPostStmt(const CXXNewExpr *NE, CheckerContext &C) const;
873 else if (const CXXNewExpr *NE = dyn_cast<CXXNewExpr>(E)) { in ProcessZeroAllocation() local
874 if (NE->isArray()) in ProcessZeroAllocation()
875 Arg = NE->getArraySize(); in ProcessZeroAllocation()
935 static bool treatUnusedNewEscaped(const CXXNewExpr *NE) { in treatUnusedNewEscaped() argument
937 const CXXConstructExpr *ConstructE = NE->getConstructExpr(); in treatUnusedNewEscaped()
941 if (!NE->getAllocatedType()->getAsCXXRecordDecl()) in treatUnusedNewEscaped()
962 void MallocChecker::checkPostStmt(const CXXNewExpr *NE, in checkPostStmt() argument
965 if (NE->getNumPlacementArgs()) in checkPostStmt()
966 for (CXXNewExpr::const_arg_iterator I = NE->placement_arg_begin(), in checkPostStmt()
[all …]
/external/llvm/include/llvm/CodeGen/PBQP/
DGraph.h231 EdgeEntry &NE = getEdge(EId); in addConstructedEdge() local
234 NE.connect(*this, EId); in addConstructedEdge()
331 AdjEdgeIdSet(const NodeEntry &NE) : NE(NE) { } in AdjEdgeIdSet() argument
333 return NE.getAdjEdgeIds().begin(); in begin()
336 return NE.getAdjEdgeIds().end(); in end()
338 bool empty() const { return NE.getAdjEdgeIds().empty(); } in empty()
340 return NE.getAdjEdgeIds().size(); in size()
343 const NodeEntry &NE;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/PBQP/
DGraph.h219 EdgeEntry &NE = getEdge(EId); in addConstructedEdge() local
222 NE.connect(*this, EId); in addConstructedEdge()
321 AdjEdgeIdSet(const NodeEntry &NE) : NE(NE) {} in AdjEdgeIdSet() argument
324 return NE.getAdjEdgeIds().begin(); in begin()
328 return NE.getAdjEdgeIds().end(); in end()
331 bool empty() const { return NE.getAdjEdgeIds().empty(); } in empty()
334 return NE.getAdjEdgeIds().size(); in size()
338 const NodeEntry &NE;
/external/llvm/test/CodeGen/Mips/
Dselect.ll521 ; 32R6: selnez $[[NE:[0-9]+]], $4, $[[CCGPR]]
522 ; 32R6: or $2, $[[NE]], $[[EQ]]
536 ; 64R6: selnez $[[NE:[0-9]+]], $4, $[[CCGPR]]
537 ; 64R6: or $2, $[[NE]], $[[EQ]]
566 ; 32R6: selnez $[[NE:[0-9]+]], $4, $[[CCGPR]]
567 ; 32R6: or $2, $[[NE]], $[[EQ]]
581 ; 64R6: selnez $[[NE:[0-9]+]], $4, $[[CCGPR]]
582 ; 64R6: or $2, $[[NE]], $[[EQ]]
610 ; 32R6: selnez $[[NE:[0-9]+]], $4, $[[CCGPR]]
611 ; 32R6: or $2, $[[NE]], $[[EQ]]
[all …]
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringARM32.def49 X(Une , NE , kNone, eq , none , false, true) \
57 X(Eq , false , false , EQ, EQ , NE , eq , false, false) \
58 X(Ne , false , false , NE, NE , EQ , eq , false, true) \
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMBaseInfo.h31 NE, // Not equal Not equal, or unordered enumerator
50 case EQ: return NE; in getOppositeCondition()
51 case NE: return EQ; in getOppositeCondition()
71 case ARMCC::NE: return "ne"; in ARMCondCodeToString()
/external/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_compiler_nir_emit.c72 …OPC(seq, SET, 0_1_X, EQ), OPC(sne, SET, 0_1_X, NE), OPC(sge, SET, 0_1_X, GE), OPC(slt, SET, 0_1_X,…
84 OPC(f2b32, CMP, 0_X_X, NE), /* != 0.0 */
85 UOPC(i2b32, CMP, 0_X_X, NE), /* != 0 */
104 OPC(fneu32, CMP, 0_1_X, NE),
108 IOPC(ine32, CMP, 0_1_X, NE),
/external/OpenCSD/decoder/tests/snapshots/juno_r1_1/pkt_proc_logs/
Dtrc_pkt_lister_0x15.ppl81 Idx:59190; ID:15; I_ATOM_F2 : Atom format 2.; NE
84 Idx:59195; ID:15; I_ATOM_F2 : Atom format 2.; NE
105 Idx:59271; ID:15; I_ATOM_F2 : Atom format 2.; NE
142 Idx:59433; ID:15; I_ATOM_F2 : Atom format 2.; NE
155 Idx:59477; ID:15; I_ATOM_F2 : Atom format 2.; NE
215 Idx:59834; ID:15; I_ATOM_F2 : Atom format 2.; NE
311 Idx:60396; ID:15; I_ATOM_F2 : Atom format 2.; NE
328 Idx:60584; ID:15; I_ATOM_F2 : Atom format 2.; NE
351 Idx:60680; ID:15; I_ATOM_F2 : Atom format 2.; NE
353 Idx:60683; ID:15; I_ATOM_F2 : Atom format 2.; NE
[all …]
Dtrc_pkt_lister_0x10.ppl106 Idx:1787; ID:10; I_ATOM_F2 : Atom format 2.; NE
131 Idx:1847; ID:10; I_ATOM_F2 : Atom format 2.; NE
186 Idx:1961; ID:10; I_ATOM_F2 : Atom format 2.; NE
203 Idx:1990; ID:10; I_ATOM_F2 : Atom format 2.; NE
215 Idx:2013; ID:10; I_ATOM_F2 : Atom format 2.; NE
221 Idx:2026; ID:10; I_ATOM_F2 : Atom format 2.; NE
270 Idx:2129; ID:10; I_ATOM_F2 : Atom format 2.; NE
286 Idx:2169; ID:10; I_ATOM_F2 : Atom format 2.; NE
290 Idx:2178; ID:10; I_ATOM_F2 : Atom format 2.; NE
319 Idx:2242; ID:10; I_ATOM_F2 : Atom format 2.; NE
[all …]
Dtrc_pkt_lister_all.ppl111 Idx:1787; ID:10; I_ATOM_F2 : Atom format 2.; NE
136 Idx:1847; ID:10; I_ATOM_F2 : Atom format 2.; NE
191 Idx:1961; ID:10; I_ATOM_F2 : Atom format 2.; NE
208 Idx:1990; ID:10; I_ATOM_F2 : Atom format 2.; NE
220 Idx:2013; ID:10; I_ATOM_F2 : Atom format 2.; NE
226 Idx:2026; ID:10; I_ATOM_F2 : Atom format 2.; NE
275 Idx:2129; ID:10; I_ATOM_F2 : Atom format 2.; NE
291 Idx:2169; ID:10; I_ATOM_F2 : Atom format 2.; NE
295 Idx:2178; ID:10; I_ATOM_F2 : Atom format 2.; NE
324 Idx:2242; ID:10; I_ATOM_F2 : Atom format 2.; NE
[all …]
Dtrc_pkt_lister_0x11.ppl76 Idx:5020; ID:11; I_ATOM_F2 : Atom format 2.; NE
94 Idx:5216; ID:11; I_ATOM_F2 : Atom format 2.; NE
114 Idx:5468; ID:11; I_ATOM_F2 : Atom format 2.; NE
124 Idx:5569; ID:11; I_ATOM_F2 : Atom format 2.; NE
166 Idx:5928; ID:11; I_ATOM_F2 : Atom format 2.; NE
182 Idx:6083; ID:11; I_ATOM_F2 : Atom format 2.; NE
186 Idx:6131; ID:11; I_ATOM_F2 : Atom format 2.; NE
253 Idx:6697; ID:11; I_ATOM_F2 : Atom format 2.; NE
271 Idx:6834; ID:11; I_ATOM_F2 : Atom format 2.; NE
291 Idx:6978; ID:11; I_ATOM_F2 : Atom format 2.; NE
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
DNVPTX.h36 NE, enumerator
142 NE, enumerator
/external/llvm/lib/Target/NVPTX/
DNVPTX.h36 NE, enumerator
144 NE, enumerator
/external/toybox/toys/pending/
Dexpr.c132 enum { OR = 1, AND, EQ, NE, GT, GTE, LT, LTE, ADD, SUB, MUL, DIVI, MOD, RE }; enumerator
143 {"=", 3, SI_TO_I, EQ }, {"==", 3, SI_TO_I, EQ }, {"!=", 3, SI_TO_I, NE },
179 case NE: x = cmp != 0; break; in eval_op()
/external/one-true-awk/
Dytab.h83 NE = 289, enumerator
181 #define NE 289 macro
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 '|'
233 | pattern NE pattern { $$ = op2($2, $1, $3); }
475 case LE: case LT: case EQ: case NE: case GT: case GE:
479 return op2(NE, n, nullnode);
/external/v8/src/base/
Dlogging.h300 DEFINE_SIGNED_MISMATCH_COMP(is_signed_vs_unsigned, NE, !CmpEQImpl(lhs, rhs))
304 DEFINE_SIGNED_MISMATCH_COMP(is_unsigned_vs_signed, NE, CmpNEImpl(rhs, lhs))
338 DEFINE_CHECK_OP_IMPL(NE, !=)
346 #define CHECK_NE(lhs, rhs) CHECK_OP(NE, !=, lhs, rhs)
364 #define DCHECK_NE(lhs, rhs) DCHECK_OP(NE, !=, lhs, rhs)
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dbranch-07.ll22 ; Test NE.
112 ; Test a vector of 0/-1 results for i32 NE.
143 ; Test a vector of 0/-1 results for i64 NE.

12345678910>>...32