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

1 23 4 5 6 7 8

  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 36 import org.stringtemplate.v4.ST;
572 ST outputFileST = new ST(
590 ST createParserST =
591 new ST(
597 new ST(
608 ST outputFileST = new ST(
636 ST outputFileST = new ST(
    [all...]
TestLexer.java 32 import org.stringtemplate.v4.ST;
247 ST codeST = generator.getRecognizerST();
  /external/openssl/crypto/bn/asm/
mips.pl 57 $ST="sd";
72 $ST="sw";
163 $ST $t1,0($a0)
176 $ST $t3,$BNSZ($a0)
190 $ST $ta1,-2*$BNSZ($a0)
202 $ST $ta3,-$BNSZ($a0)
224 $ST $t1,0($a0)
239 $ST $t1,$BNSZ($a0)
253 $ST $t1,2*$BNSZ($a0)
316 $ST $v0,0($a0
    [all...]
mips-mont.pl 75 $ST="sd";
82 $ST="sw";
226 $ST $lo1,($tp)
246 $ST $lo1,($tp)
250 $ST $hi1,$BNSZ($tp)
251 $ST $at,2*$BNSZ($tp)
321 $ST $lo1,($tp)
340 $ST $lo1,($tp)
347 $ST $lo1,$BNSZ($tp)
348 $ST $hi1,2*$BNSZ($tp
    [all...]
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/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST.stg 34 /* ST returnInterface.memVars */
35 ST *st;
40 /* ST returnScope.properties */
41 @property (retain, getter=getST, setter=setST:) ST *st;
46 /* ST AST returnScopeInterface.methodsDecl */
53 /* ST returnScopeInterface */
65 /* ST returnScope.synthesize */
66 @synthesize st;
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]
  /external/openssl/crypto/sha/asm/
sha512-sparcv9.pl 57 $ST="stx"; # store to memory
83 $ST="st"; # store to memory
185 $ST $tmp2,[%sp+`$bias+$frame+$i*$SZ`]
204 $ST $tmp2,[%sp+`$bias+$frame+$i*$SZ`]
379 $ST $T1,[%sp+`$bias+$frame+($i%16)*$SZ`]
509 $ST $A,[$ctx+`0*$SZ`]
511 $ST $B,[$ctx+`1*$SZ`]
513 $ST $C,[$ctx+`2*$SZ`]
515 $ST $D,[$ctx+`3*$SZ`
    [all...]
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...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
BuildDependencyGenerator.java 33 import org.stringtemplate.v4.ST;
42 * Using ST, emit a simple "make compatible" list of dependencies.
118 ST headerExtST = null;
119 ST extST = generator.getTemplates().getInstanceOf("codeFileExtension");
202 public ST getDependencies() {
204 ST dependenciesST = templates.getInstanceOf("dependencies");
GrammarNonDeterminismMessage.java 34 import org.stringtemplate.v4.ST;
68 ST st = getMessageTemplate(); local
72 st.add("input", input);
85 st.add("disabled", tokenName);
89 st.add("disabled", probe.getDisabledAlternatives(problemState));
109 st.addAggr("paths.{alt, states}", displayAltI, path);
116 st.add("conflictingTokens", tokenName);
119 st.add("conflictingAlts", displayAltI);
124 st.add("hasPredicateBlockedByAction", problemState.dfa.hasPredicateBlockedByAction)
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 103 KeyTy(const StructType* ST) :
104 ETypes(ArrayRef<Type*>(ST->element_begin(), ST->element_end())),
105 isPacked(ST->isPacked()) {}
128 static unsigned getHashValue(const StructType *ST) {
129 return getHashValue(KeyTy(ST));
Type.cpp 411 StructType *ST;
415 ST = new (Context.pImpl->TypeAllocator) StructType(Context);
416 ST->setSubclassData(SCDB_IsLiteral); // Literal struct.
417 ST->setBody(ETypes, isPacked);
418 Context.pImpl->AnonStructTypes[ST] = true;
420 ST = I->first;
423 return ST;
495 StructType *ST = new (Context.pImpl->TypeAllocator) StructType(Context);
497 ST->setName(Name);
498 return ST;
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16RegisterInfo.cpp 45 Mips16RegisterInfo::Mips16RegisterInfo(const MipsSubtarget &ST,
47 : MipsRegisterInfo(ST), TII(I) {}
MipsRegisterInfo.cpp 45 MipsRegisterInfo::MipsRegisterInfo(const MipsSubtarget &ST)
46 : MipsGenRegisterInfo(Mips::RA), Subtarget(ST) {}
  /external/llvm/lib/Target/R600/
AMDILDevice.cpp 15 AMDGPUDevice::AMDGPUDevice(AMDGPUSubtarget *ST) : mSTM(ST) {
  /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
  /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 145 const StructType *ST = dyn_cast<StructType>(Ty);
146 if (!ST) return false;
148 for (StructType::element_iterator I = ST->element_begin(),
149 E = ST->element_end(); I != E; ++I)
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.h 41 explicit SparcInstrInfo(SparcSubtarget &ST);
  /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/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 164 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
165 EVT StVT = ST->getMemoryVT();
166 MVT ValVT = ST->getValue().getSimpleValueType();
167 if (StVT.isVector() && ST->isTruncatingStore())
523 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
524 SDValue Chain = ST->getChain();
525 SDValue BasePTR = ST->getBasePtr();
526 SDValue Value = ST->getValue();
527 EVT StVT = ST->getMemoryVT();
529 unsigned Alignment = ST->getAlignment()
    [all...]
  /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/XCore/
XCoreISelLowering.cpp 505 StoreSDNode *ST = cast<StoreSDNode>(Op);
506 assert(!ST->isTruncatingStore() && "Unexpected store type");
507 assert(ST->getMemoryVT() == MVT::i32 && "Unexpected store EVT");
508 if (allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
512 getABITypeAlignment(ST->getMemoryVT().getTypeForEVT(*DAG.getContext()));
514 if (ST->getAlignment() >= ABIAlignment) {
517 SDValue Chain = ST->getChain();
518 SDValue BasePtr = ST->getBasePtr();
519 SDValue Value = ST->getValue();
522 if (ST->getAlignment() == 2)
    [all...]

Completed in 704 milliseconds

1 23 4 5 6 7 8