HomeSort by relevance Sort by last modified time
    Searched refs:unwrap (Results 1 - 25 of 154) sorted by null

1 2 3 4 5 6 7

  /external/llvm/lib/Target/
Target.cpp 32 initializeTarget(*unwrap(R));
40 unwrap(PM)->add(new DataLayout(*unwrap(TD)));
45 unwrap(PM)->add(new TargetLibraryInfo(*unwrap(TLI)));
49 std::string StringRep = unwrap(TD)->getStringRepresentation();
54 return unwrap(TD)->isLittleEndian() ? LLVMLittleEndian : LLVMBigEndian;
58 return unwrap(TD)->getPointerSize(0);
62 return unwrap(TD)->getPointerSize(AS);
66 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext()))
    [all...]
TargetMachineC.cpp 38 return wrap(unwrap(T)->getNext());
42 return unwrap(T)->getName();
46 return unwrap(T)->getShortDescription();
50 return unwrap(T)->hasJIT();
54 return unwrap(T)->hasTargetMachine();
58 return unwrap(T)->hasMCAsmBackend();
119 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM,
125 delete unwrap(T);
129 const Target* target = &(unwrap(T)->getTarget());
134 std::string StringRep = unwrap(T)->getTargetTriple()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Scalar.cpp 67 initializeScalarOpts(*unwrap(R));
71 unwrap(PM)->add(createAggressiveDCEPass());
75 unwrap(PM)->add(createCFGSimplificationPass());
79 unwrap(PM)->add(createDeadStoreEliminationPass());
83 unwrap(PM)->add(createGVNPass());
87 unwrap(PM)->add(createIndVarSimplifyPass());
91 unwrap(PM)->add(createInstructionCombiningPass());
95 unwrap(PM)->add(createJumpThreadingPass());
99 unwrap(PM)->add(createLICMPass());
103 unwrap(PM)->add(createLoopDeletionPass())
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
Vectorize.cpp 34 initializeVectorization(*unwrap(R));
38 unwrap(PM)->add(createBBVectorizePass());
42 unwrap(PM)->add(createLoopVectorizePass());
  /external/llvm/lib/Transforms/IPO/
IPO.cpp 50 initializeIPO(*unwrap(R));
54 unwrap(PM)->add(createArgumentPromotionPass());
58 unwrap(PM)->add(createConstantMergePass());
62 unwrap(PM)->add(createDeadArgEliminationPass());
66 unwrap(PM)->add(createFunctionAttrsPass());
70 unwrap(PM)->add(createFunctionInliningPass());
74 unwrap(PM)->add(llvm::createAlwaysInlinerPass());
78 unwrap(PM)->add(createGlobalDCEPass());
82 unwrap(PM)->add(createGlobalOptimizerPass());
86 unwrap(PM)->add(createIPConstantPropagationPass())
    [all...]
  /external/llvm/lib/IR/
Core.cpp 50 initializeCore(*unwrap(R));
75 delete unwrap(C);
80 return unwrap(C)->getMDKindID(StringRef(Name, SLen));
96 return wrap(new Module(ModuleID, *unwrap(C)));
100 delete unwrap(M);
105 return unwrap(M)->getDataLayout().c_str();
109 unwrap(M)->setDataLayout(Triple);
114 return unwrap(M)->getTargetTriple().c_str();
118 unwrap(M)->setTargetTriple(Triple);
122 unwrap(M)->dump()
    [all...]
  /libcore/luni/src/main/java/java/sql/
Wrapper.java 39 <T> T unwrap(Class<T> iface) throws SQLException; method in interface:Wrapper
  /external/llvm/lib/Object/
Object.cpp 23 return wrap(ObjectFile::createObjectFile(unwrap(MemBuf)));
27 delete unwrap(ObjectFile);
32 section_iterator SI = unwrap(ObjectFile)->begin_sections();
37 delete unwrap(SI);
42 return (*unwrap(SI) == unwrap(ObjectFile)->end_sections()) ? 1 : 0;
47 unwrap(SI)->increment(ec);
53 if (error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
59 symbol_iterator SI = unwrap(ObjectFile)->begin_symbols()
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 29 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
41 switch (unwrap(TyRef)->getTypeID()) {
55 return unwrap(GenValRef)->IntVal.getBitWidth();
60 GenericValue *GenVal = unwrap(GenValRef);
68 return unwrap(GenVal)->PointerVal;
72 switch (unwrap(TyRef)->getTypeID()) {
74 return unwrap(GenVal)->FloatVal;
76 return unwrap(GenVal)->DoubleVal;
83 delete unwrap(GenVal);
92 EngineBuilder builder(unwrap(M))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Wrapper.java 16 public byte[] unwrap(byte[] in, int inOff, int inLen) method in interface:Wrapper
  /external/webkit/Source/WebKit/chromium/src/
WebDOMMouseEvent.cpp 62 return unwrap<MouseEvent>()->layerX();
67 return unwrap<MouseEvent>()->layerY();
72 return unwrap<MouseEvent>()->offsetX();
77 return unwrap<MouseEvent>()->offsetY();
WebInputElement.cpp 80 unwrap<HTMLInputElement>()->setActivatedSubmit(activated);
90 unwrap<HTMLInputElement>()->setValue(value, sendChangeEvent);
100 unwrap<HTMLInputElement>()->setSuggestedValue(value);
110 unwrap<HTMLInputElement>()->setPlaceholder(value);
125 unwrap<HTMLInputElement>()->setAutofilled(autoFilled);
130 unwrap<HTMLInputElement>()->setSelectionRange(start, end);
176 InputElement* inputElement = webElement->unwrap<Element>()->toInputElement();
180 ASSERT(webElement->unwrap<Element>()->isHTMLElement());
WebOptionElement.cpp 46 return unwrap<HTMLOptionElement>()->setValue(newValue);
71 return unwrap<HTMLOptionElement>()->setDefaultSelected(newSelected);
WebLabelElement.cpp 45 return WebElement(unwrap<HTMLLabelElement>()->control());
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 25 WriteBitcodeToFile(unwrap(M), OS);
33 WriteBitcodeToFile(unwrap(M), OS);
  /external/llvm/lib/Analysis/IPA/
IPA.cpp 30 initializeIPA(*unwrap(R));
  /external/llvm/lib/Bitcode/Reader/
BitReader.cpp 34 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
54 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
  /external/llvm/lib/Transforms/Instrumentation/
Instrumentation.cpp 37 initializeInstrumentation(*unwrap(R));
  /external/llvm/lib/Transforms/Utils/
Utils.cpp 37 initializeTransformUtils(*unwrap(R));
  /external/smack/src/org/apache/harmony/javax/security/sasl/
SaslClient.java 34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException; method in interface:SaslClient
SaslServer.java 34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException; method in interface:SaslServer
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitReader.cpp 34 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
54 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitReader.cpp 34 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
54 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
  /frameworks/rs/driver/linkloader/android/
librsloader.cpp 35 static inline ELFObject<32> *unwrap(RSExecRef object) { function
72 ELFObject<32>* object = unwrap(object_);
80 ELFObject<32> *object = unwrap(object_);
101 delete unwrap(object);
106 ELFObject<32> *object = unwrap(object_);
128 ELFObject<32> *object = unwrap(object_);
149 unwrap(object)->getSectionByName(".symtab"));
162 unwrap(object)->getSectionByName(".symtab"));
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARC.cpp 47 initializeObjCARCOpts(*unwrap(R));

Completed in 607 milliseconds

1 2 3 4 5 6 7