HomeSort by: relevance | last modified time | path
    Searched defs:S0 (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/inc/mips64el/
efisetjmp_arch.h 14 UINT64 S0;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha256/cp/
hash_sha256_cp.c 78 #define S0(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22))
80 #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3)) macro
86 h += S0(a) + Maj(a, b, c);
95 s1(W[i + ii + 14]) + W[i + ii + 9] + s0(W[i + ii + 1]) + W[i + ii]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha512/cp/
hash_sha512_cp.c 94 #define S0(x) (ROTR(x, 28) ^ ROTR(x, 34) ^ ROTR(x, 39))
96 #define s0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7)) macro
102 h += S0(a) + Maj(a, b, c);
111 s1(W[i + ii + 14]) + W[i + ii + 9] + s0(W[i + ii + 1]) + W[i + ii]
  /src/lib/libm/noieee_src/
trig.h 109 * (sin(k*x)-x)/x = z*(S0 + S1*z^1 + ... + S5*z^5).
111 * sin__S(x*x) = z*(S0 + S1*z^1 + ... + S5*z^5)
127 vc(S0, -1.6666666666666646660E-1 ,aaaa,bf2a,aa71,aaaa, -2, -.AAAAAAAAAAAA71)
135 ic(S0, -1.6666666666666463126E-1 , -3, -1.555555555550C)
143 #define S0 vccast(S0)
153 # define sin__S(z) (z*(S0+z*(S1+z*(S2+z*(S3+z*(S4+z*(S5+z*S6)))))))
155 # define sin__S(z) (z*(S0+z*(S1+z*(S2+z*(S3+z*(S4+z*S5))))))
  /src/external/public-domain/xz/dist/src/liblzma/check/
sha256.c 29 + s0(W[(i - 15) & 15]))
46 h(i) += S0(a(i)) + Maj(a(i), b(i), c(i))
50 #define S0(x) rotr_32(x ^ rotr_32(x ^ rotr_32(x, 9), 11), 2)
52 #define s0(x) (rotr_32(x ^ rotr_32(x, 11), 7) ^ (x >> 3)) macro
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
MergedLoadStoreMotion.cpp 119 PHINode *getPHIOperand(BasicBlock *BB, StoreInst *S0, StoreInst *S1);
122 bool canSinkStoresAndGEPs(StoreInst *S0, StoreInst *S1) const;
208 /// Create a PHI node in BB for the operands of S0 and S1
210 PHINode *MergedLoadStoreMotion::getPHIOperand(BasicBlock *BB, StoreInst *S0,
213 Value *Opd1 = S0->getValueOperand();
220 NewPN->applyMergedLocation(S0->getDebugLoc(), S1->getDebugLoc());
221 NewPN->addIncoming(Opd1, S0->getParent());
229 bool MergedLoadStoreMotion::canSinkStoresAndGEPs(StoreInst *S0,
231 auto *A0 = dyn_cast<Instruction>(S0->getPointerOperand());
234 (A0->getParent() == S0->getParent()) && A1->hasOneUse() &
    [all...]
  /src/external/gpl3/gcc/dist/libquadmath/math/
log1pq.c 109 S0 = 1.701761051846631278975701529965589676574E6Q;
194 + S0;
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
log1pq.c 109 S0 = 1.701761051846631278975701529965589676574E6Q;
194 + S0;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonSubtarget.cpp 342 SUnit &S0 = DAG->SUnits[i];
343 MachineInstr &L0 = *S0.getInstr();
372 SDep A(&S0, SDep::Artificial);
HexagonISelDAGToDAG.cpp 959 SDValue S0 = U->getOperand(0);
961 SDValue SY = (S0.getNode() == I) ? S1 : S0;
HexagonISelLowering.cpp 2545 SDValue S0 = DAG.getNode(ISD::MUL, dl, MVT::i32, IdxV,
2548 SDValue T1 = DAG.getNode(ISD::SRL, dl, MVT::i64, T0, S0);
  /src/external/gpl3/gcc/dist/libgcc/config/h8300/
lib1funcs.S 44 #define S0 r4
435 mov S0,A0
465 mov S0,A0
519 ; S0/S1 remainder (S0P for H8/300H)
525 sub.w S0,S0 ; zero play area
526 mov.w S0,S1
740 sub.w S0,S0
769 mov.w S0,A
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/h8300/
lib1funcs.S 44 #define S0 r4
435 mov S0,A0
465 mov S0,A0
519 ; S0/S1 remainder (S0P for H8/300H)
525 sub.w S0,S0 ; zero play area
526 mov.w S0,S1
740 sub.w S0,S0
769 mov.w S0,A
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 992 StoreInst *S0 = cast<StoreInst>(Chain[0]);
1010 unsigned AS = S0->getPointerAddressSpace();
1014 Align Alignment = S0->getAlign();
1073 if (S0->getPointerAddressSpace() != DL.getAllocaAddrSpace()) {
1079 Align NewAlign = getOrEnforceKnownAlignment(S0->getPointerOperand(),
1081 DL, S0, nullptr, &DT);
1132 Builder.CreateBitCast(S0->getPointerOperand(), VecTy->getPointerTo(AS)),
  /src/external/bsd/pcc/dist/pcc/arch/mips/
macdefs.h 165 #define S0 16
278 { S0S1, -1 }, /* $s0 */ \
313 { S0, S1, S1S2, -1 }, /* $s0:$s1 */ \
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ControlHeightReduction.cpp 781 BasicBlock *S0 = BI->getSuccessor(0);
783 CHR_DEBUG(dbgs() << "S0 " << S0->getName() << "\n");
785 if (S0 != S1 && (S0 == Exit || S1 == Exit)) {
  /src/usr.sbin/moused/
moused.c 391 #define S0 0 /* start */
412 /* S0 */
413 { { S0, S2, S1, S3, S0 }, 0, ~(MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN), FALSE },
419 { { S0, S9, S9, S3, S3 }, MOUSE_BUTTON2DOWN, ~0, FALSE },
421 { { S0, S2, S1, S3, S0 }, MOUSE_BUTTON1DOWN, ~0, TRUE },
423 { { S0, S2, S5, S7, S5 }, MOUSE_BUTTON1DOWN, ~0, FALSE },
425 { { S0, S6, S1, S7, S6 }, MOUSE_BUTTON3DOWN, ~0, FALSE },
427 { { S0, S6, S5, S7, S7 }, MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN, ~0, FALSE }
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp 5749 StringRef S0 = A->getValue(), S = S0;
5758 << S0 << A->getOption().getName();
  /src/external/gpl3/binutils/dist/gas/config/
tc-mips.c 96 #define S0 16
3063 {"$s0", RTYPE_GP | 16}, \
3350 /* A continuous range of registers, e.g. $s0-$s4. */
5907 if (regno2 == FP && regno1 >= S0 && regno1 <= S7)
5921 /* The list must include both ra and s0-sN, for 0 <= N <= 3. E.g.:
5923 s0, ra
5924 s0, s1, ra, s2, s3
5925 s0-s2, ra
5936 /* The list must include at least one of ra and s0-sN,
5941 s0
6068 unsigned int arg_mask, ra, s0, s1; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-mips.c 96 #define S0 16
2854 {"$s0", RTYPE_GP | 16}, \
3115 /* A continuous range of registers, e.g. $s0-$s4. */
5598 if (regno2 == FP && regno1 >= S0 && regno1 <= S7)
5612 /* The list must include both ra and s0-sN, for 0 <= N <= 3. E.g.:
5614 s0, ra
5615 s0, s1, ra, s2, s3
5616 s0-s2, ra
5627 /* The list must include at least one of ra and s0-sN,
5632 s0
5759 unsigned int arg_mask, ra, s0, s1; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 3507 SDValue S0 = N1.getOperand(0);
3508 if ((X0 == S0 && X1 == N1) || (X0 == N1 && X1 == S0))
3511 return DAG.getNode(ISD::ABS, SDLoc(N), VT, S0);
7883 SDValue S0 = S.getOperand(0);
7884 if ((A0 == S && A1 == S0) || (A1 == S && A0 == S0))
7887 return DAG.getNode(ISD::ABS, DL, VT, S0);
12635 // bitcast(shuffle(bitcast(s0),bitcast(s1))) -> shuffle(s0,s1
    [all...]

Completed in 1050 milliseconds