HomeSort by relevance Sort by last modified time
    Searched refs:ST (Results 51 - 75 of 171) sorted by null

1 23 4 5 6 7

  /external/openssl/crypto/sha/asm/
sha512-mips.pl 82 $ST="sd"; # store to memory
96 $ST="sw"; # store to memory
187 $ST @X[0],`($i%16)*$SZ`($sp) # offload to ring buffer
342 $ST $A,0*$SZ($ctx)
344 $ST $B,1*$SZ($ctx)
346 $ST $C,2*$SZ($ctx)
348 $ST $D,3*$SZ($ctx)
349 $ST $E,4*$SZ($ctx)
350 $ST $F,5*$SZ($ctx)
351 $ST $G,6*$SZ($ctx
    [all...]
sha512-ppc.pl 75 $ST="std";
87 $ST="stw";
362 $ST $A,`0*$SZ`($ctx)
364 $ST $B,`1*$SZ`($ctx)
366 $ST $C,`2*$SZ`($ctx)
368 $ST $D,`3*$SZ`($ctx)
370 $ST $E,`4*$SZ`($ctx)
372 $ST $F,`5*$SZ`($ctx)
373 $ST $G,`6*$SZ`($ctx)
375 $ST $H,`7*$SZ`($ctx
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CPPTarget.java 31 import org.stringtemplate.v4.ST;
89 ST headerFileST,
CSharp3Target.java 38 import org.stringtemplate.v4.ST;
82 protected void genRecognizerFile(Tool tool, CodeGenerator generator, Grammar grammar, ST outputFileST) throws IOException
Target.java 33 import org.stringtemplate.v4.ST;
89 ST outputFileST)
100 ST headerFileST,
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ST.stg 38 using Antlr3.ST;
39 using Antlr3.ST.Language;
145 /** An action has %st.attrName=expr; or %{st}.attrName=expr; */
146 actionSetAttribute(st,attrName,expr) ::= <<
147 (<st>).SetAttribute("<attrName>",<expr>);
  /external/llvm/lib/CodeGen/
StackProtector.cpp 124 const StructType *ST = dyn_cast<StructType>(Ty);
125 if (!ST) return false;
127 for (StructType::element_iterator I = ST->element_begin(),
128 E = ST->element_end(); I != E; ++I)
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.h 41 explicit SparcInstrInfo(SparcSubtarget &ST);
  /external/llvm/test/MC/X86/
intel-syntax.s 56 // CHECK: fld %st(0)
57 fld ST(0)
  /external/openssl/crypto/bn/asm/
ppc-mont.pl 38 $ST= "stw"; # store
46 $PUSH= $ST;
58 $ST= "std"; # store
66 $PUSH= $ST;
191 $ST $lo1,0($tp) ; tp[j-1]
204 $ST $lo1,0($tp) ; tp[j-1]
209 $ST $hi1,$BNSZ($tp)
257 $ST $lo1,0($tp) ; tp[j-1]
271 $ST $lo1,0($tp) ; tp[j-1]
277 $ST $hi1,$BNSZ($tp
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 84 SDNode *SelectBaseOffsetStore(StoreSDNode *ST, DebugLoc dl);
85 SDNode *SelectIndexedStore(StoreSDNode *ST, DebugLoc dl);
596 SDNode *HexagonDAGToDAGISel::SelectIndexedStore(StoreSDNode *ST, DebugLoc dl) {
597 SDValue Chain = ST->getChain();
598 SDValue Base = ST->getBasePtr();
599 SDValue Offset = ST->getOffset();
600 SDValue Value = ST->getValue();
604 EVT StoredVT = ST->getMemoryVT();
624 MemOp[0] = ST->getMemOperand();
627 ReplaceUses(ST, Result)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 71 SDValue OptimizeFloatStore(StoreSDNode *ST);
297 static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
300 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
302 SDValue Chain = ST->getChain();
303 SDValue Ptr = ST->getBasePtr();
304 SDValue Val = ST->getValue();
306 int Alignment = ST->getAlignment();
307 DebugLoc dl = ST->getDebugLoc();
308 if (ST->getMemoryVT().isFloatingPoint() ||
309 ST->getMemoryVT().isVector())
    [all...]
LegalizeVectorOps.cpp 143 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
144 EVT StVT = ST->getMemoryVT();
145 EVT ValVT = ST->getValue().getValueType();
146 if (StVT.isVector() && ST->isTruncatingStore())
393 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
394 SDValue Chain = ST->getChain();
395 SDValue BasePTR = ST->getBasePtr();
396 SDValue Value = ST->getValue();
397 EVT StVT = ST->getMemoryVT();
399 unsigned Alignment = ST->getAlignment()
    [all...]
LegalizeFloatTypes.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 62 SROA(int T, bool hasDT, char &ID, int ST, int AT, int SLT)
68 if (ST == -1)
71 StructMemberThreshold = ST;
191 SROA_DT(int T = -1, int ST = -1, int AT = -1, int SLT = -1) :
192 SROA(T, true, ID, ST, AT, SLT) {
208 SROA_SSAUp(int T = -1, int ST = -1, int AT = -1, int SLT = -1) :
209 SROA(T, false, ID, ST, AT, SLT) {
    [all...]
  /external/llvm/lib/VMCore/
Type.cpp 434 StructType *ST;
438 ST = new (Context.pImpl->TypeAllocator) StructType(Context);
439 ST->setSubclassData(SCDB_IsLiteral); // Literal struct.
440 ST->setBody(ETypes, isPacked);
441 Context.pImpl->AnonStructTypes[ST] = true;
443 ST = I->first;
446 return ST;
518 StructType *ST = new (Context.pImpl->TypeAllocator) StructType(Context);
520 ST->setName(Name);
521 return ST;
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestLexer.java 32 import org.stringtemplate.v4.ST;
247 ST codeST = generator.getRecognizerST();
  /external/llvm/lib/Target/MBlaze/
MBlazeRegisterInfo.cpp 45 MBlazeRegisterInfo(const MBlazeSubtarget &ST, const TargetInstrInfo &tii)
46 : MBlazeGenRegisterInfo(MBlaze::R15), Subtarget(ST), TII(tii) {}
  /external/llvm/lib/Target/Mips/
MipsRegisterInfo.cpp 45 MipsRegisterInfo::MipsRegisterInfo(const MipsSubtarget &ST)
46 : MipsGenRegisterInfo(Mips::RA), Subtarget(ST) {}
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/dialogs/
CertificateInfoDialog.java 100 x500name.getRDNs(BCStyle.ST).length >= 1 ? x500name.getRDNs(BCStyle.ST)[0]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 504 StoreSDNode *ST = cast<StoreSDNode>(Op);
505 assert(!ST->isTruncatingStore() && "Unexpected store type");
506 assert(ST->getMemoryVT() == MVT::i32 && "Unexpected store EVT");
507 if (allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
511 getABITypeAlignment(ST->getMemoryVT().getTypeForEVT(*DAG.getContext()));
513 if (ST->getAlignment() >= ABIAlignment) {
516 SDValue Chain = ST->getChain();
517 SDValue BasePtr = ST->getBasePtr();
518 SDValue Value = ST->getValue();
521 if (ST->getAlignment() == 2)
    [all...]
  /external/qemu/
i386-dis.c 64 eg. `fsub %st(3),%st' results in st = st - st(3) as expected, but
65 `fsub %st,%st(3)' results in st(3) = st - st(3), rather tha
    [all...]
  /external/openssl/crypto/
pariscid.pl 10 $ST ="std";
14 $ST ="stw";
116 $ST %r0,0($inp)
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 151 void EnumerateValueSymbolTable(const ValueSymbolTable &ST);
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp     [all...]

Completed in 407 milliseconds

1 23 4 5 6 7