HomeSort by relevance Sort by last modified time
    Searched defs:ST (Results 26 - 50 of 68) sorted by null

12 3

  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java 94 public static final ASN1ObjectIdentifier ST = new ASN1ObjectIdentifier("2.5.4.8");
271 DefaultSymbols.put(ST, "ST");
303 RFC2253Symbols.put(ST, "ST");
313 RFC1779Symbols.put(ST, "ST");
322 DefaultLookUp.put("st", ST);
587 * Takes an X509 dir name as a string of the format "C=AU, ST=Victoria", o
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp     [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 57 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
58 SchedModel.init(*ST.getSchedModel(), &ST, TII);
246 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
275 ST.adjustSchedDependency(SU, UseSU, Dep);
431 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
432 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
    [all...]
RegisterCoalescer.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp     [all...]
SelectionDAGISel.cpp 226 const TargetSubtargetInfo &ST = IS->TM.getSubtarget<TargetSubtargetInfo>();
228 if (OptLevel == CodeGenOpt::None || ST.enableMachineScheduler() ||
362 TargetSubtargetInfo &ST =
364 ST.resetSubtargetFeatures(MF);
    [all...]
LegalizeVectorTypes.cpp     [all...]
SelectionDAG.cpp 440 const StoreSDNode *ST = cast<StoreSDNode>(N);
441 ID.AddInteger(ST->getMemoryVT().getRawBits());
442 ID.AddInteger(ST->getRawSubclassData());
443 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 659 SymbolRef::Type ST;
660 getSymbolType(Symb, ST);
661 if (ST == SymbolRef::ST_Unknown) {
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMBaseInfo.h 137 ST = 14,
145 case ST: return "st";
285 // and store ops only. Generic "updating" flag is used for ld/st multiple.
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 579 StructType* ST = cast<StructType>(Ty);
580 if (!ST->isLiteral()) {
582 printEscapedString(ST->getName());
589 printEscapedString(ST->getName());
600 StructType::element_iterator EI = ST->element_begin();
601 StructType::element_iterator EE = ST->element_end();
611 if (ST->isLiteral()) {
621 << (ST->isPacked() ? "true" : "false") << ");";
623 if (!ST->isLiteral()) {
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 101 SDNode *SelectBaseOffsetStore(StoreSDNode *ST, DebugLoc dl);
102 SDNode *SelectIndexedStore(StoreSDNode *ST, DebugLoc dl);
634 SDNode *HexagonDAGToDAGISel::SelectIndexedStore(StoreSDNode *ST, DebugLoc dl) {
635 SDValue Chain = ST->getChain();
636 SDValue Base = ST->getBasePtr();
637 SDValue Offset = ST->getOffset();
638 SDValue Value = ST->getValue();
642 EVT StoredVT = ST->getMemoryVT();
662 MemOp[0] = ST->getMemOperand();
665 ReplaceUses(ST, Result)
    [all...]
  /external/llvm/lib/Target/R600/
AMDILPeepholeOptimizer.cpp 126 size_t getTypeSize(StructType * const ST, bool dereferencePtr = false);
192 const StructType *ST = dyn_cast<StructType>(Ty);
193 for (StructType::element_iterator stb = ST->element_begin(),
194 ste = ST->element_end(); stb != ste; ++stb) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 375 StructType *ST = cast<StructType>(II->getType());
376 Constant *Struct = ConstantStruct::get(ST, V);
389 StructType *ST = cast<StructType>(II->getType());
390 Constant *Struct = ConstantStruct::get(ST, V);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 176 StructType *ST = cast<StructType>(T);
177 if (ST->isLiteral()) {
186 const std::string &Str = ST->getName();
347 StructType *ST = cast<StructType>(T);
349 TypeVals.push_back(ST->isPacked());
351 for (StructType::element_iterator I = ST->element_begin(),
352 E = ST->element_end(); I != E; ++I)
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 287 StructType *ST = cast<StructType>(T);
289 TypeVals.push_back(ST->isPacked());
291 for (StructType::element_iterator I = ST->element_begin(),
292 E = ST->element_end(); I != E; ++I)
295 if (ST->isLiteral()) {
299 if (ST->isOpaque()) {
307 if (!ST->getName().empty())
308 WriteStringRecord(bitc::TYPE_CODE_STRUCT_NAME, ST->getName(),
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 296 StructType *ST = cast<StructType>(T);
298 TypeVals.push_back(ST->isPacked());
300 for (StructType::element_iterator I = ST->element_begin(),
301 E = ST->element_end(); I != E; ++I)
304 if (ST->isLiteral()) {
308 if (ST->isOpaque()) {
316 if (!ST->getName().empty())
317 WriteStringRecord(bitc::TYPE_CODE_STRUCT_NAME, ST->getName(),
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 340 StructType *ST = cast<StructType>(T);
342 TypeVals.push_back(ST->isPacked());
344 for (StructType::element_iterator I = ST->element_begin(),
345 E = ST->element_end(); I != E; ++I)
348 if (ST->isLiteral()) {
352 if (ST->isOpaque()) {
360 if (!ST->getName().empty())
361 WriteStringRecord(bitc::TYPE_CODE_STRUCT_NAME, ST->getName(),
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
NVPTXISelLowering.cpp     [all...]
  /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...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 36 public static final int ST = 5;
162 protocols.add(ST, "st");
632 rdataFromString(Tokenizer st, Name origin) throws IOException {
633 String s = st.getString();
636 throw st.exception("invalid address");
638 s = st.getString();
641 throw st.exception("Invalid IP protocol: " + s);
646 Tokenizer.Token t = st.get();
651 throw st.exception("Invalid TCP/UDP service: "
    [all...]

Completed in 1021 milliseconds

12 3