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

1 2 3 4 5 6

  /src/crypto/external/apache2/openssl/dist/crypto/modes/asm/
ghash-riscv64-zvkb-zvbc.pl 69 my ($V0,$V1,$V2,$V3,$V4,$V5,$V6) = ("v0","v1","v2","v3","v4","v5","v6");
86 @{[vle64_v $V2, $TMP2]} # vle64.v v2, (t2)
109 @{[vxor_vv_v0t $V1, $V1, $V2]} # vxor.vv v1, v1, v2, v0.t
125 my ($V0,$V1,$V2,$V3,$V4,$V5,$V6) = ("v0","v1","v2","v3","v4","v5","v6");
167 # v2 = (a1b1)h,(a1b0)h
168 @{[vclmulh_vx $V2, $V5, $TMP1]} # vclmulh.vx v2, v5, t
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/sha/asm/
sha256-riscv64-zvkb-zvknha_or_zvknhb.pl 63 my ($V0, $V1, $V2, $V3, $V4, $V5, $V6, $V7,
164 @{[vle32_v $V2, $INP]}
165 @{[vrev8_v $V2, $V2]}
174 # Quad-round 0 (+0, Wt from oldest to newest in v1->v2->v3->v4)
178 @{[vmerge_vvm $V5, $V3, $V2, $V0]}
181 # Quad-round 1 (+1, v2->v3->v4->v1)
182 @{[vadd_vv $V5, $V11, $V2]}
186 @{[vsha2ms_vv $V2, $V5, $V1]} # Generate W[23:20]
188 # Quad-round 2 (+2, v3->v4->v1->v2)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
251 const llvm::APSInt& V1, const llvm::APSInt& V2) {
257 return &getValue( V1 * V2 );
260 if (V2 == 0) // Avoid division by zero
262 return &getValue( V1 / V2 );
265 if (V2 == 0) // Avoid division by zero
267 return &getValue( V1 % V2 );
270 return &getValue( V1 + V2 );
273 return &getValue( V1 - V2 );
279 if (V2.isSigned() && V2.isNegative()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
36 Constant *V1, Constant *V2);
40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
48 Constant *V2);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysisEvaluator.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
73 for (Value *V2 : Values) {
74 StringRef NameV2 = getName(V2);
78 if (PA.related(V1, V2))
  /src/external/apache2/llvm/dist/llvm/lib/Support/
xxhash.cpp 81 uint64_t V2 = Seed + PRIME64_2;
88 V2 = round(V2, endian::read64le(P));
96 H64 = rotl64(V1, 1) + rotl64(V2, 7) + rotl64(V3, 12) + rotl64(V4, 18);
98 H64 = mergeRound(H64, V2);
FileUtilities.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
92 double V1 = 0.0, V2 = 0.0;
111 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
129 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
146 if (AbsTolerance < std::abs(V1-V2)) {
149 if (V2)
150 Diff = std::abs(V1/V2 - 1.0);
152 Diff = std::abs(V2/V1 - 1.0);
158 << "Compared: " << V1 << " and " << V2 << '\n'
159 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n
    [all...]
StringMap.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
177 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength()));
178 (void)V2;
179 assert(V == V2 && "Didn't find key?");
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
pod_char_traits.h 60 template<typename V2>
62 from(const V2& v)
68 template<typename V2>
69 static V2
72 V2 ret = { static_cast<V2>(c.value) };
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
max-depth.c 219 struct V2 : virtual V1 { int v2 = 2; } v2; variable in typeref:struct:V1
221 struct V4 : virtual V2 { int v4 = 4; } v4;
222 struct V5 : virtual V2 { int v5 = 1; } v5;
223 struct V6 : virtual V2, virtual V3 { int v6 = 1; } v6;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
max-depth.c 219 struct V2 : virtual V1 { int v2 = 2; } v2; variable in typeref:struct:V1
221 struct V4 : virtual V2 { int v4 = 4; } v4;
222 struct V5 : virtual V2 { int v5 = 1; } v5;
223 struct V6 : virtual V2, virtual V3 { int v6 = 1; } v6;
  /src/external/apache2/llvm/dist/clang/lib/Headers/
shaintrin.h 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
20 #define _mm_sha1rnds4_epu32(V1, V2, M) \
21 __builtin_ia32_sha1rnds4((__v4si)(__m128i)(V1), (__v4si)(__m128i)(V2), (M))
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APSInt.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
339 inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; }
340 inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; }
341 inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; }
342 inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; }
343 inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V1;
    [all...]
EquivalenceClasses.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
217 member_iterator unionSets(const ElemTy &V1, const ElemTy &V2) {
218 iterator V1I = insert(V1), V2I = insert(V2);
241 // isEquivalent - Return true if V1 is equivalent to V2. This can happen if
242 // V1 is equal to V2 or if they belong to one equivalence class.
243 bool isEquivalent(const ElemTy &V1, const ElemTy &V2) const {
245 if (V1 == V2)
248 return It != member_end() && It == findLeader(V2);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
BasicAliasAnalysis.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
205 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2);
211 const Value *V2, LocationSize V2Size,
216 const Value *V2, LocationSize V2Size, AAQueryInfo &AAQI);
219 const Value *V2, LocationSize V2Size,
223 const Value *V2, LocationSize V2Size,
227 const Value *V2, LocationSize V2Size,
ConstantFolding.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
93 Constant *V2);
128 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
  /src/external/bsd/iscsi/dist/include/
iscsiutil.h 423 #define RETURN_NOT_EQUAL(NAME, V1, V2, CU, RC) \
424 if ((V1)!=(V2)) { \
425 iscsi_err(__FILE__, __LINE__, "Bad \"%s\": Got %u expected %u.\n", NAME, V1, V2); \
432 #define ERROR_NOT_EQUAL(NAME, V1, V2, CU) do { \
433 if ((V1)!=(V2)) { \
435 "Bad \"%s\": Got %u expected %u.\n", NAME, V1, V2); \
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
InstrTypes.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
233 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
235 return Create(Instruction::OPC, V1, V2, Name);\
239 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
241 return Create(Instruction::OPC, V1, V2, Name, BB);\
245 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
247 return Create(Instruction::OPC, V1, V2, Name, I);\
252 Value *V1, Value *V2,
255 BinaryOperator *BO = Create(Opc, V1, V2, Name);
260 static BinaryOperator *CreateFAddFMF(Value *V1, Value *V2,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
BitTracker.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
441 const BitValue &V2 = A2[I];
442 if (!V1.num() || !V2.num())
444 unsigned S = bool(V1) + bool(V2) + Carry;
450 const BitValue &V2 = A2[I];
454 Res[I] = BitValue::ref(V2);
455 else if (V2.is(Carry))
474 const BitValue &V2 = A2[I];
475 if (!V1.num() || !V2.num())
477 unsigned S = bool(V1) - bool(V2) - Borrow
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
1015 /// We know that V1 is a GEP, but we don't know anything about V2.
1017 /// V2.
1020 const Value *V2, LocationSize V2Size,
1025 if (!isa<GEPOperator>(V2))
1038 DecomposedGEP DecompGEP2 = DecomposeGEPExpression(V2, DL, &AC, DT);
1062 if (isa<GEPOperator>(V2)) {
1097 // Initialize for Off >= 0 (V2 <= GEP1) case.
1098 const Value *LeftPtr = V2;
1110 // GEP1 V2
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
atomic.d 290 bool cas(T, V1, V2)(T* here, V1 ifThis, V2 writeThis) pure nothrow @nogc @trusted
309 bool cas(T, V1, V2)(shared(T)* here, V1 ifThis, V2 writeThis) pure nothrow @nogc @trusted
317 static if (is (V2 == shared U2, U2))
322 static assert(!hasUnsharedIndirections!V2,
323 "Copying `" ~ V2.stringof ~ "* writeThis` to `" ~
325 alias Thunk2 = V2;
331 bool cas(T, V1, V2)(shared(T)* here, shared(V1) ifThis, shared(V2) writeThis
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGValue.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
49 llvm::PointerIntPair<llvm::Value *, 1, bool> V2;
56 bool isVolatileQualified() const { return V2.getInt(); }
67 return std::make_pair(V1.getPointer(), V2.getPointer());
73 auto align = reinterpret_cast<uintptr_t>(V2.getPointer()) >> AggAlignShift;
90 ER.V2.setInt(false);
93 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
96 ER.V2.setPointer(V2);
98 ER.V2.setInt(false)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
75 Register V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(MF);
80 V2 = RegInfo.createVirtualRegister(RC);
88 BuildMI(MBB, I, DL, TII.get(Mips::SllX16), V2).addReg(V0).addImm(16);
91 .addReg(V2);
  /src/external/lgpl3/gmp/dist/tests/rand/
gmpstat.h 63 vz_dot (mpz_t rop, mpz_t V1[], mpz_t V2[], unsigned int n);

Completed in 42 milliseconds

1 2 3 4 5 6