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

1 2 3 4 5 6

  /external/llvm/lib/Target/
Target.cpp 32 initializeTarget(*unwrap(R));
40 unwrap(PM)->add(new TargetData(*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();
62 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext()));
66 return unwrap(TD)->getTypeSizeInBits(unwrap(Ty))
    [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/Vectorize/
Vectorize.cpp 33 initializeVectorization(*unwrap(R));
37 unwrap(PM)->add(createBBVectorizePass());
  /external/llvm/lib/Transforms/Scalar/
Scalar.cpp 71 initializeScalarOpts(*unwrap(R));
75 unwrap(PM)->add(createAggressiveDCEPass());
79 unwrap(PM)->add(createCFGSimplificationPass());
83 unwrap(PM)->add(createDeadStoreEliminationPass());
87 unwrap(PM)->add(createGVNPass());
91 unwrap(PM)->add(createIndVarSimplifyPass());
95 unwrap(PM)->add(createInstructionCombiningPass());
99 unwrap(PM)->add(createJumpThreadingPass());
103 unwrap(PM)->add(createLICMPass());
107 unwrap(PM)->add(createLoopDeletionPass())
    [all...]
  /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/VMCore/
Core.cpp 47 initializeCore(*unwrap(R));
68 delete unwrap(C);
73 return unwrap(C)->getMDKindID(StringRef(Name, SLen));
89 return wrap(new Module(ModuleID, *unwrap(C)));
93 delete unwrap(M);
98 return unwrap(M)->getDataLayout().c_str();
102 unwrap(M)->setDataLayout(Triple);
107 return unwrap(M)->getTargetTriple().c_str();
111 unwrap(M)->setTargetTriple(Triple);
115 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/llvm/lib/Analysis/IPA/
IPA.cpp 28 initializeIPA(*unwrap(R));
  /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 26 WriteBitcodeToFile(unwrap(M), OS);
34 WriteBitcodeToFile(unwrap(M), OS);
  /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 35 initializeInstrumentation(*unwrap(R));
  /external/llvm/lib/Transforms/Utils/
Utils.cpp 36 initializeTransformUtils(*unwrap(R));
  /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/compile/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"));
  /packages/apps/Mms/src/com/android/mms/util/
SimpleCache.java 70 private static <V> V unwrap(SoftReference<V> ref) { method in class:SimpleCache
103 return mSoftReferences != null ? unwrap(mSoftReferences.get(key))
112 unwrap(mSoftReferences.put(key, new SoftReference<V>(value)))
132 return unwrap(mSoftReferences.remove(key));
  /external/guava/guava-tests/test/com/google/common/primitives/
PrimitivesTest.java 44 assertSame(int.class, Primitives.unwrap(Integer.class));
45 assertSame(int.class, Primitives.unwrap(int.class));
46 assertSame(String.class, Primitives.unwrap(String.class));
  /external/llvm/lib/Analysis/
Analysis.cpp 76 initializeAnalysis(*unwrap(R));
83 LLVMBool Result = verifyModule(*unwrap(M),
94 return verifyFunction(*unwrap<Function>(Fn),
99 Function *F = unwrap<Function>(Fn);
104 Function *F = unwrap<Function>(Fn);

Completed in 1117 milliseconds

1 2 3 4 5 6