| /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"); 85 @{[vlse64_v $V1, $H, $TMP0]} # vlse64.v v1, (a1), t0 89 @{[vsrl_vx $V3, $V1, $TMP1]} # vsrl.vx v3, v1, t1 90 @{[vsll_vi $V1, $V1, 1]} # vsll.vi v1, v1, [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/aes/asm/ |
| aes-riscv64-zvkned.pl | 61 my ($V0, $V1, $V2, $V3, $V4, $V5, $V6, $V7, 67 # Load all 11 round keys to v1-v11 registers. 73 @{[vle32_v $V1, $KEYP]} 99 # Load all 13 round keys to v1-v13 registers. 105 @{[vle32_v $V1, $KEYP]} 135 # Load all 15 round keys to v1-v15 registers. 141 @{[vle32_v $V1, $KEYP]} 175 # aes-128 encryption with round keys v1-v11 178 @{[vaesz_vs $V24, $V1]} # with round key w[ 0, 3] 194 # aes-128 decryption with round keys v1-v1 [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, 159 # Load the 512-bits of the message block in v1-v4 and perform 161 @{[vle32_v $V1, $INP]} 162 @{[vrev8_v $V1, $V1]} 174 # Quad-round 0 (+0, Wt from oldest to newest in v1->v2->v3->v4) 175 @{[vadd_vv $V5, $V10, $V1]} 179 @{[vsha2ms_vv $V1, $V5, $V4]} # Generate W[19:16] 181 # Quad-round 1 (+1, v2->v3->v4->v1) 186 @{[vsha2ms_vv $V2, $V5, $V1]} # Generate W[23:20 [all...] |
| sha512-riscv64-zvkb-zvknhb.pl | 63 my ($V0, $V1, $V2, $V3, $V4, $V5, $V6, $V7, 85 # We use index-load with the following index pattern at v1. 94 @{[vmv_v_x $V1, $INDEX_PATTERN]} 100 @{[vluxei8_v $V22, $H, $V1]} 101 @{[vluxei8_v $V24, $H2, $V1]} 210 @{[vsuxei8_v $V22, ($H), $V1]} 211 @{[vsuxei8_v $V24, ($H2), $V1]}
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| BasicValueFactory.cpp | 251 const llvm::APSInt& V1, const llvm::APSInt& V2) { 257 return &getValue( V1 * V2 ); 262 return &getValue( V1 / V2 ); 267 return &getValue( V1 % V2 ); 270 return &getValue( V1 + V2 ); 273 return &getValue( V1 - V2 ); 284 if (Amt >= V1.getBitWidth()) 288 if (V1.isSigned() && V1.isNegative()) 291 if (V1.isSigned() && Amt > V1.countLeadingZeros() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| ConstantFold.h | 36 Constant *V1, Constant *V2); 40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, 47 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/ |
| ProvenanceAnalysisEvaluator.cpp | 71 for (Value *V1 : Values) { 72 StringRef NameV1 = getName(V1); 78 if (PA.related(V1, V2))
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| xxhash.cpp | 80 uint64_t V1 = Seed + PRIME64_1 + PRIME64_2; 86 V1 = round(V1, endian::read64le(P)); 96 H64 = rotl64(V1, 1) + rotl64(V2, 7) + rotl64(V3, 12) + rotl64(V4, 18); 97 H64 = mergeRound(H64, V1);
|
| FileUtilities.cpp | 92 double V1 = 0.0, V2 = 0.0; 110 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); 119 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); 146 if (AbsTolerance < std::abs(V1-V2)) { 150 Diff = std::abs(V1/V2 - 1.0); 151 else if (V1) 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'
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| shaintrin.h | 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 | 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 | 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) 247 auto It = findLeader(V1);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| max-depth.c | 218 struct V1 { int v1 = 1; } v1; variable in typeref:struct:V1 219 struct V2 : virtual V1 { int v2 = 2; } v2; 220 struct V3 : virtual V1 { int v3 = 3; } v3;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| max-depth.c | 218 struct V1 { int v1 = 1; } v1; variable in typeref:struct:V1 219 struct V2 : virtual V1 { int v2 = 2; } v2; 220 struct V3 : virtual V1 { int v3 = 3; } v3;
|
| /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 291 if (!is(T == shared) && is(T : V1)) 309 bool cas(T, V1, V2)(shared(T)* here, V1 ifThis, V2 writeThis) pure nothrow @nogc @trusted 310 if (!is(T == class) && (is(T : V1) || is(shared T : V1))) 313 static if (is (V1 == shared U1, U1)) 316 alias Thunk1 = V1; 331 bool cas(T, V1, V2)(shared(T)* here, shared(V1) ifThis, shared(V2) writeThis [all...] |
| /src/tests/sbin/resize_ffs/ |
| t_check.sh | 41 atf_check -o ignore -e ignore newfs -V1 -s 6144 -F ${IMG}
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGValue.h | 47 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1; 52 bool isScalar() const { return V1.getInt() == Scalar; } 53 bool isComplex() const { return V1.getInt() == Complex; } 54 bool isAggregate() const { return V1.getInt() == Aggregate; } 61 return V1.getPointer(); 67 return std::make_pair(V1.getPointer(), V2.getPointer()); 74 return Address(V1.getPointer(), CharUnits::fromQuantity(align)); 78 return V1.getPointer(); 88 ER.V1.setPointer(V); 89 ER.V1.setInt(Scalar) [all...] |
| /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 | 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, 263 return CreateWithCopiedFlags(Instruction::FAdd, V1, V2, FMFSource, Name) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| BitTracker.cpp | 440 const BitValue &V1 = A1[I]; 442 if (!V1.num() || !V2.num()) 444 unsigned S = bool(V1) + bool(V2) + Carry; 449 const BitValue &V1 = A1[I]; 453 if (V1.is(Carry)) 456 Res[I] = BitValue::ref(V1); 473 const BitValue &V1 = A1[I]; 475 if (!V1.num() || !V2.num()) 477 unsigned S = bool(V1) - bool(V2) - Borrow; 482 const BitValue &V1 = A1[I] [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| MipsMachineFunction.cpp | 77 Register V1 = RegInfo.createVirtualRegister(RC); 84 // daddu $v1, $v0, $t9 85 // daddiu $globalbasereg, $v1, %lo(%neg(%gp_rel(fname))) 89 BuildMI(MBB, I, DL, TII.get(Mips::DADDu), V1).addReg(V0) 91 BuildMI(MBB, I, DL, TII.get(Mips::DADDiu), GlobalBaseReg).addReg(V1) 113 // addu $v1, $v0, $t9 114 // addiu $globalbasereg, $v1, %lo(%neg(%gp_rel(fname))) 118 BuildMI(MBB, I, DL, TII.get(Mips::ADDu), V1).addReg(V0).addReg(Mips::T9); 119 BuildMI(MBB, I, DL, TII.get(Mips::ADDiu), GlobalBaseReg).addReg(V1)
|
| /src/external/gpl3/gdb/dist/sim/common/ |
| sim-trace.h | 531 #define TRACE_ALU_INPUT2(V0,V1) \ 534 trace_input_word2 (SD, CPU, TRACE_ALU_IDX, (V0), (V1)); \ 537 #define TRACE_ALU_INPUT3(V0,V1,V2) \ 540 trace_input_word3 (SD, CPU, TRACE_ALU_IDX, (V0), (V1), (V2)); \ 543 #define TRACE_ALU_INPUT4(V0,V1,V2,V3) \ 546 trace_input_word4 (SD, CPU, TRACE_ALU_IDX, (V0), (V1), (V2), (V3)); \ 583 #define TRACE_BRANCH_INPUT2(V0,V1) \ 586 trace_input_word2 (SD, CPU, TRACE_BRANCH_IDX, (V0), (V1)); \ 603 #define TRACE_FP_INPUT2(V0,V1) \ 606 trace_input_fp2 (SD, CPU, TRACE_FPU_IDX, (V0), (V1)); \ [all...] |
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| sim-trace.h | 531 #define TRACE_ALU_INPUT2(V0,V1) \ 534 trace_input_word2 (SD, CPU, TRACE_ALU_IDX, (V0), (V1)); \ 537 #define TRACE_ALU_INPUT3(V0,V1,V2) \ 540 trace_input_word3 (SD, CPU, TRACE_ALU_IDX, (V0), (V1), (V2)); \ 543 #define TRACE_ALU_INPUT4(V0,V1,V2,V3) \ 546 trace_input_word4 (SD, CPU, TRACE_ALU_IDX, (V0), (V1), (V2), (V3)); \ 583 #define TRACE_BRANCH_INPUT2(V0,V1) \ 586 trace_input_word2 (SD, CPU, TRACE_BRANCH_IDX, (V0), (V1)); \ 603 #define TRACE_FP_INPUT2(V0,V1) \ 606 trace_input_fp2 (SD, CPU, TRACE_FPU_IDX, (V0), (V1)); \ [all...] |
| /src/external/gpl2/dtc/dist/ |
| dtc-lexer.l | 12 %s V1 47 #define BEGIN_DEFAULT() DPRINT("<V1>\n"); \ 48 BEGIN(V1); \ 105 <*>"/dts-v1/" { 106 DPRINT("Keyword: /dts-v1/\n"); 157 <V1>([0-9]+|0[xX][0-9a-fA-F]+)(U|L|UL|LL|ULL)? {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| ConstantFolding.h | 92 Constant *ConstantFoldSelectInstruction(Constant *Cond, Constant *V1, 128 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
|