Searched refs:unwrap (Results 1 - 25 of 120) sorted by relevance

12345

/external/llvm/lib/Target/
H A DTarget.cpp27 inline TargetLibraryInfo *unwrap(LLVMTargetLibraryInfoRef P) { function
42 initializeTarget(*unwrap(R));
52 unwrap(PM)->add(new DataLayoutPass(*unwrap(TD)));
57 unwrap(PM)->add(new TargetLibraryInfo(*unwrap(TLI)));
61 std::string StringRep = unwrap(TD)->getStringRepresentation();
66 return unwrap(TD)->isLittleEndian() ? LLVMLittleEndian : LLVMBigEndian;
70 return unwrap(TD)->getPointerSize(0);
74 return unwrap(T
[all...]
H A DTargetMachineC.cpp33 inline TargetMachine *unwrap(LLVMTargetMachineRef P) { function
36 inline Target *unwrap(LLVMTargetRef P) { function
56 return wrap(unwrap(T)->getNext());
87 return unwrap(T)->getName();
91 return unwrap(T)->getShortDescription();
95 return unwrap(T)->hasJIT();
99 return unwrap(T)->hasTargetMachine();
103 return unwrap(T)->hasMCAsmBackend();
126 CodeModel::Model CM = unwrap(CodeModel);
145 return wrap(unwrap(
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DScalar.cpp72 initializeScalarOpts(*unwrap(R));
76 unwrap(PM)->add(createAggressiveDCEPass());
80 unwrap(PM)->add(createCFGSimplificationPass());
84 unwrap(PM)->add(createDeadStoreEliminationPass());
88 unwrap(PM)->add(createScalarizerPass());
92 unwrap(PM)->add(createGVNPass());
96 unwrap(PM)->add(createIndVarSimplifyPass());
100 unwrap(PM)->add(createInstructionCombiningPass());
104 unwrap(PM)->add(createJumpThreadingPass());
108 unwrap(P
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DVectorize.cpp35 initializeVectorization(*unwrap(R));
39 unwrap(PM)->add(createBBVectorizePass());
43 unwrap(PM)->add(createLoopVectorizePass());
47 unwrap(PM)->add(createSLPVectorizerPass());
/external/llvm/lib/Transforms/IPO/
H A DIPO.cpp51 initializeIPO(*unwrap(R));
55 unwrap(PM)->add(createArgumentPromotionPass());
59 unwrap(PM)->add(createConstantMergePass());
63 unwrap(PM)->add(createDeadArgEliminationPass());
67 unwrap(PM)->add(createFunctionAttrsPass());
71 unwrap(PM)->add(createFunctionInliningPass());
75 unwrap(PM)->add(llvm::createAlwaysInlinerPass());
79 unwrap(PM)->add(createGlobalDCEPass());
83 unwrap(PM)->add(createGlobalOptimizerPass());
87 unwrap(P
[all...]
/external/llvm/lib/IR/
H A DCore.cpp56 initializeCore(*unwrap(R));
87 unwrap(C)->setDiagnosticHandler(
96 unwrap(C)->setYieldCallback(YieldCallback, OpaqueHandle);
100 delete unwrap(C);
105 return unwrap(C)->getMDKindID(StringRef(Name, SLen));
117 unwrap(DI)->print(DP);
126 switch(unwrap(DI)->getSeverity()) {
155 return wrap(new Module(ModuleID, *unwrap(C)));
159 delete unwrap(M);
164 return unwrap(
[all...]
/external/llvm/lib/Object/
H A DObject.cpp22 inline ObjectFile *unwrap(LLVMObjectFileRef OF) { function
30 inline section_iterator *unwrap(LLVMSectionIteratorRef SI) { function
40 inline symbol_iterator *unwrap(LLVMSymbolIteratorRef SI) { function
50 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) { function
62 std::unique_ptr<MemoryBuffer> Buf(unwrap(MemBuf));
70 delete unwrap(ObjectFile);
75 section_iterator SI = unwrap(ObjectFile)->section_begin();
80 delete unwrap(SI);
85 return (*unwrap(SI) == unwrap(ObjectFil
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebServiceWorkerProxy.cpp17 ServiceWorker* WebServiceWorkerProxy::unwrap() const function in class:blink::WebServiceWorkerProxy
/external/llvm/include/llvm/Support/
H A DCBindingWrapping.h20 inline ty *unwrap(ref P) { \
32 inline T *unwrap(ref P) { \
33 return cast<T>(unwrap(P)); \
40 inline T *unwrap(ref P) { \
41 T *Q = (T*)unwrap(P); \
/external/llvm/tools/lto/
H A Dlto.cpp64 LTOCodeGenerator *CG = unwrap(cg);
149 void lto_module_dispose(lto_module_t mod) { delete unwrap(mod); }
152 return unwrap(mod)->getTargetTriple().c_str();
156 return unwrap(mod)->setTargetTriple(triple);
160 return unwrap(mod)->getSymbolCount();
164 return unwrap(mod)->getSymbolName(index);
169 return unwrap(mod)->getSymbolAttributes(index);
173 return unwrap(mod)->getDependentLibraryCount();
177 return unwrap(mod)->getDependentLibrary(index);
181 return unwrap(mo
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DWrapper.java16 public byte[] unwrap(byte[] in, int inOff, int inLen) method in interface:Wrapper
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp30 inline TargetLibraryInfo *unwrap(LLVMTargetLibraryInfoRef P) { function
50 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
62 switch (unwrap(TyRef)->getTypeID()) {
76 return unwrap(GenValRef)->IntVal.getBitWidth();
81 GenericValue *GenVal = unwrap(GenValRef);
89 return unwrap(GenVal)->PointerVal;
93 switch (unwrap(TyRef)->getTypeID()) {
95 return unwrap(GenVal)->FloatVal;
97 return unwrap(GenVal)->DoubleVal;
104 delete unwrap(GenVa
[all...]
/external/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp27 WriteBitcodeToFile(unwrap(M), OS);
35 WriteBitcodeToFile(unwrap(M), OS);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMCustomEvent.cpp46 unwrap<CustomEvent>()->initCustomEvent(type, canBubble, cancelable, serializedScriptValue.get());
H A DWebFormElement.cpp73 unwrap<HTMLFormElement>()->submit();
80 unwrap<HTMLFormElement>()->getNamedElements(name, tempVector);
99 return unwrap<HTMLFormElement>()->checkValidity();
104 unwrap<HTMLFormElement>()->finishRequestAutocomplete(static_cast<HTMLFormElement::AutocompleteResult>(result));
H A DWebLabelElement.cpp43 return WebElement(unwrap<HTMLLabelElement>()->control());
H A DWebFormControlElement.cpp67 unwrap<HTMLFormControlElement>()->dispatchFormControlChangeEvent();
77 unwrap<HTMLFormControlElement>()->setAutofilled(autofilled);
97 unwrap<HTMLInputElement>()->setValue(value, sendEvents ? DispatchInputAndChangeEvent : DispatchNoEvent);
99 unwrap<HTMLTextAreaElement>()->setValue(value, sendEvents ? DispatchInputAndChangeEvent : DispatchNoEvent);
101 unwrap<HTMLSelectElement>()->setValue(value, sendEvents);
118 unwrap<HTMLInputElement>()->setSuggestedValue(value);
120 unwrap<HTMLTextAreaElement>()->setSuggestedValue(value);
122 unwrap<HTMLSelectElement>()->setSuggestedValue(value);
148 unwrap<HTMLInputElement>()->setSelectionRange(start, end);
150 unwrap<HTMLTextAreaElemen
[all...]
H A DWebElement.cpp84 unwrap<Element>()->removeAttribute(attrName);
98 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionState);
133 return unwrap<Element>()->innerText();
143 Element* element = unwrap<Element>();
149 return unwrap<Element>()->boundsInRootViewSpace();
157 Image* image = unwrap<Element>()->imageContents();
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebServiceWorkerProxy.h33 BLINK_PLATFORM_EXPORT ServiceWorker* unwrap() const;
/external/llvm/lib/Analysis/IPA/
H A DIPA.cpp30 initializeIPA(*unwrap(R));
/external/llvm/lib/Transforms/Instrumentation/
H A DInstrumentation.cpp36 initializeInstrumentation(*unwrap(R));
/external/smack/src/org/apache/harmony/javax/security/sasl/
H A DSaslClient.java34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException; method in interface:SaslClient
H A DSaslServer.java34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException; method in interface:SaslServer
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.cpp85 llvm::unwrap(EE)->RegisterJITEventListener(llvm::JITEventListener::createOProfileJITEventListener());
87 llvm::unwrap(EE)->RegisterJITEventListener(llvm::createOProfileJITEventListener());
201 llvm::Function *func = llvm::unwrap<llvm::Function>(FF);
211 return llvm::wrap(llvm::unwrap(B)->CreateLoad(llvm::unwrap(PointerVal), true, Name));
220 llvm::unwrap<llvm::LoadInst>(Inst)->setAlignment(Align);
228 llvm::unwrap<llvm::StoreInst>(Inst)->setAlignment(Align);
253 EngineBuilder builder(unwrap(M));
282 Triple TT(unwrap(M)->getTargetTriple());
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.cpp85 llvm::unwrap(EE)->RegisterJITEventListener(llvm::JITEventListener::createOProfileJITEventListener());
87 llvm::unwrap(EE)->RegisterJITEventListener(llvm::createOProfileJITEventListener());
201 llvm::Function *func = llvm::unwrap<llvm::Function>(FF);
211 return llvm::wrap(llvm::unwrap(B)->CreateLoad(llvm::unwrap(PointerVal), true, Name));
220 llvm::unwrap<llvm::LoadInst>(Inst)->setAlignment(Align);
228 llvm::unwrap<llvm::StoreInst>(Inst)->setAlignment(Align);
253 EngineBuilder builder(unwrap(M));
282 Triple TT(unwrap(M)->getTargetTriple());

Completed in 2988 milliseconds

12345