/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Utils/ |
H A D | ARMBaseInfo.h | 32 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()
|
/third_party/ltp/testcases/lib/ |
H A D | tst_kvcmp.c | 14 NE, enumerator 30 return NE; in strtop() 128 case NE: in main() 169 case NE: in main()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/ |
H A D | 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...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vsrc_life.c | 299 enum { NW, N, NE, W, E, SW, S, SE }; in evolve() enumerator 308 pos[NE][0] = (i-1) < 0 ? life->h-1 : i-1; pos[NE][1] = (j+1) == life->w ? 0 : j+1; in evolve() 317 pos[NE][0] = (i-1) < 0 ? -1 : i-1; pos[NE][1] = (j+1) == life->w ? -1 : j+1; in evolve() 328 (pos[NE][0] == -1 || pos[NE][1] == -1 ? 0 : oldbuf[pos[NE][0]*life->w + pos[NE][1]] == ALIVE_CELL) + in evolve()
|
H A D | vsrc_cellauto.c | 235 enum { NW, N, NE }; in evolve() enumerator 245 pos[NE] = i+1 == s->w ? 0 : i+1; in evolve() 246 v = prev_row[pos[NW]]<<2 | prev_row[pos[N]]<<1 | prev_row[pos[NE]]; in evolve()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir_emit.c | 73 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, LT), 85 OPC(f2b32, CMP, 0_X_X, NE), /* != 0.0 */ 86 UOPC(i2b32, CMP, 0_X_X, NE), /* != 0 */ 105 OPC(fneu32, CMP, 0_1_X, NE), 109 IOPC(ine32, CMP, 0_1_X, NE),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVPTX.h | 29 NE, enumerator 133 NE, enumerator
|
/third_party/toybox/toys/pending/ |
H A D | expr.c | 132 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()
|
/third_party/node/deps/v8/src/base/ |
H A D | logging.h | 332 DEFINE_SIGNED_MISMATCH_COMP(is_signed_vs_unsigned, NE, !CmpEQImpl(lhs, rhs)) 336 DEFINE_SIGNED_MISMATCH_COMP(is_unsigned_vs_signed, NE, CmpNEImpl(rhs, lhs)) 370 DEFINE_CHECK_OP_IMPL(NE, !=) 378 #define CHECK_NE(lhs, rhs) CHECK_OP(NE, !=, lhs, rhs) 396 #define DCHECK_NE(lhs, rhs) DCHECK_OP(NE, !=, lhs, rhs)
|
/third_party/ffmpeg/libavcodec/ |
H A D | g2meet.c | 358 NE = above_row[(x) + 1]; \ 369 N = NE; \ 370 NE = above_row[(x) + 1]; \ 602 uint32_t W, WW, N, NN, NW, NE, NWW, NNW, NNE; in epic_decode_run_length() local 614 (N != NE) << 5 | in epic_decode_run_length() 617 (NNE != NE) << 2 | in epic_decode_run_length() 651 (N != NE) << 5 | in epic_decode_run_length() 654 (NNE != NE) << 2 | in epic_decode_run_length() 679 if (!NWneW && NW == N && N == NE) { in epic_decode_run_length() 717 (N != NE) << in epic_decode_run_length() 759 uint32_t NE = above_row[pos + 1]; epic_predict_from_NW_NE() local [all...] |
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | enum-base-type.c | 6 NE = 1ULL, enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/MCTargetDesc/ |
H A D | ARCInfo.h | 27 NE = 0x2, enumerator 42 NZ = 0x12 // Low 4-bits = NE
|
H A D | ARCInstPrinter.cpp | 58 case ARCCC::NE: in ARCCondCodeToString()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | DominanceFrontierImpl.h | 196 NE = currentNode->end(); in calculate() 197 NI != NE; ++NI) { in calculate()
|
/third_party/python/Lib/tkinter/ |
H A D | constants.py | 14 NE='ne' variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Utils/ |
H A D | AArch64BaseInfo.h | 237 NE = 0x1, // Not equal Not equal, or unordered enumerator 256 ANY_ACTIVE = NE, // (!Z) 266 case NE: return "ne"; in getCondCodeName() 300 case NE: return 0; // Z == 0 in getNZCVToSatisfyCondCode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
H A D | ELFEmitter.cpp | 1210 for (const ELFYAML::NoteEntry &NE : *Section.Notes) { in writeSectionContent() 1212 if (NE.Name.empty()) in writeSectionContent() 1215 support::endian::write<uint32_t>(OS, NE.Name.size() + 1, in writeSectionContent() 1219 if (NE.Desc.binary_size() == 0) in writeSectionContent() 1222 support::endian::write<uint32_t>(OS, NE.Desc.binary_size(), in writeSectionContent() 1226 support::endian::write<uint32_t>(OS, NE.Type, ELFT::TargetEndianness); in writeSectionContent() 1229 if (!NE.Name.empty()) { in writeSectionContent() 1230 support::endian::write<uint8_t>(OS, arrayRefFromStringRef(NE.Name), in writeSectionContent() 1237 if (NE.Desc.binary_size() != 0) { in writeSectionContent() 1238 NE in writeSectionContent() [all...] |
/third_party/libinput/src/ |
H A D | libinput-private.h | 885 NE = bit(1), enumerator 906 dir = N | NE | E; in xy_get_direction() 912 dir = NE | E | SE; in xy_get_direction() 918 dir = NE | N | NW; in xy_get_direction()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instr_mem.cpp | 55 #define NE(X) (X != rhs. X) in is_equal_to() macro 57 if (NE(m_op) || in is_equal_to() 58 NE(m_src) || in is_equal_to() 59 NE(m_uav_base)) in is_equal_to()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCExpr.cpp | 127 case MCBinaryExpr::NE: OS << "!="; break; in print() 797 case MCBinaryExpr::NE: in evaluateAsRelocatableImpl() 860 case MCBinaryExpr::NE: Result = LHS != RHS; break; in evaluateAsRelocatableImpl() 876 case MCBinaryExpr::NE: in evaluateAsRelocatableImpl()
|
/third_party/gn/src/base/ |
H A D | logging.h | 560 DEFINE_CHECK_OP_IMPL(NE, !=) 568 #define CHECK_NE(val1, val2) CHECK_OP(NE, !=, val1, val2) 726 #define DCHECK_NE(val1, val2) DCHECK_OP(NE, !=, val1, val2)
|
/third_party/node/deps/v8/src/asmjs/ |
H A D | asm-names.h | 91 V("!=", NE) \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonHardwareLoops.cpp | 133 NE = 0x02, enumerator 157 if ((Cmp & NE) || (Cmp & EQ)) in getNegatedComparison() 158 return (Kind)(Cmp ^ (EQ | NE)); in getNegatedComparison() 521 Cmp = Comparison::NE; in getComparisonKind() 788 if (Cmp == Comparison::NE) { in computeCount() 878 if (Cmp != Comparison::NE) { in computeCount() 1485 if ((Cmp & Comparison::G) || Cmp == Comparison::NE) in loopCountMayWrapOrUnderFlow()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/ |
H A D | ARCBranchFinalize.cpp | 71 // NE -- 001 80 case ARCCC::NE: in getCCForBRcc()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCExpr.h | 442 NE, ///< Inequality comparison. enumerator 529 return create(NE, LHS, RHS, Ctx); in createNE()
|