Searched defs:Extract (Results 1 - 25 of 31) sorted by relevance

12

/external/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp135 // Extract aliases via regular expression matching.
169 // Extract globals via regular expression matching.
201 // Extract functions via regular expression matching.
247 legacy::PassManager Extract; local
248 Extract.add(createGVExtractionPass(Gvs, DeleteFn));
249 Extract.run(*M);
/external/libtextclassifier/datetime/
H A Dextractor.cc23 bool DatetimeExtractor::Extract(DateParseData* result, function in class:libtextclassifier2::DatetimeExtractor
/external/libtextclassifier/
H A Dtoken-feature-extractor.cc82 bool TokenFeatureExtractor::Extract(const Token& token, bool is_in_span, function in class:libtextclassifier2::TokenFeatureExtractor
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DStreamArray.h114 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
115 auto EC = Extract(IterRef, ThisLen, ThisValue);
122 explicit VarStreamArrayIterator(const Extractor &E) : Extract(E) {}
157 auto EC = Extract(IterRef, ThisLen, ThisValue);
193 Extractor Extract; member in class:llvm::codeview::VarStreamArrayIterator
/external/llvm/lib/CodeGen/
H A DInterleavedAccessPass.cpp209 auto *Extract = dyn_cast<ExtractElementInst>(*UI); local
210 if (Extract && isa<ConstantInt>(Extract->getIndexOperand())) {
211 Extracts.push_back(Extract);
280 for (auto *Extract : Extracts) {
283 auto *IndexOperand = cast<ConstantInt>(Extract->getIndexOperand());
293 if (!DT->dominates(Shuffle, Extract))
303 assert(Extract->getOperand(0) == Shuffle->getOperand(0) &&
305 ReplacementMap[Extract] = std::make_pair(Shuffle, I);
310 if (ReplacementMap.count(Extract))
323 auto *Extract = Replacement.first; local
[all...]
/external/tensorflow/tensorflow/core/lib/gtl/
H A Dtop_n.h19 // a vector of the top elements sorted in descending order (through Extract() or
37 // vector for each Extract.
125 // Peeks the bottom result without calling Extract()
128 // Extract the elements as a vector sorted in descending order. The caller
131 // after Extract() is Reset().
132 std::vector<T> *Extract();
134 // Similar to Extract(), but makes no guarantees the elements are in sorted
135 // order. As with Extract(), the caller assumes ownership of the vector and
140 // A non-destructive version of Extract(). Copy the elements in a new vector
146 // A non-destructive version of Extract()
271 std::vector<T> *TopN<T, Cmp>::Extract() { function in class:tensorflow::gtl::TopN
[all...]
/external/lzma/CPP/7zip/Archive/
H A DSplitHandler.cpp291 STDMETHODIMP CHandler::Extract(const UInt32 *indices, UInt32 numItems, function in class:NArchive::NSplit::CHandler
H A DLzmaHandler.cpp406 STDMETHODIMP CHandler::Extract(const UInt32 *indices, UInt32 numItems, function in class:CHandler
H A DXzHandler.cpp697 STDMETHODIMP CHandler::Extract(const UInt32 *indices, UInt32 numItems, function in class:NArchive::NXz::CHandler
/external/lzma/CPP/7zip/Archive/7z/
H A D7zExtract.cpp211 STDMETHODIMP CHandler::Extract(const UInt32 *indices, UInt32 numItems, function in class:NArchive::N7z::CHandler
/external/lzma/CPP/7zip/UI/Common/
H A DExtract.cpp0 // Extract.cpp
15 #include "Extract.h"
202 result = archive->Extract(NULL, (UInt32)(Int32)-1, testMode, ecs);
208 result = archive->Extract(&realIndices.Front(), realIndices.Size(), testMode, ecs);
236 HRESULT Extract( function
H A DOpenArchive.cpp363 HRESULT CHandler::Extract(const UInt32 *indices, UInt32 numItems, function in class:NArchive::NParser::CHandler
1551 RINOK(archive->Extract(0, (UInt32)(Int32)-1, BoolToInt(true), extractCallback));
/external/pcre/pcrecpp/
H A Dpcrecpp.cc257 bool RE::Extract(const StringPiece& rewrite, function in class:pcrecpp::RE
/external/swiftshader/third_party/LLVM/tools/llvm-ar/
H A Dllvm-ar.cpp86 Extract ///< Extract files back to file system enumerator in enum:ArchiveOperation
131 // getRelPos - Extract the member filename from the command line for
142 // getCount - Extract the [count] argument associated with the N modifier
198 case 'x': ++NumOperations; Operation = Extract; break;
257 if (OriginalDates && Operation != Extract)
263 if (Compression && Operation!=ReplaceOrInsert && Operation!=Extract)
753 case Extract: haveError = doExtract(&ErrMsg); break;
/external/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp220 static Value *Extract(Value *Idx, GetElementPtrInst *GEP,
224 /// failed). The meaning of the arguments are the same as Extract.
690 Value *ConstantOffsetExtractor::Extract(Value *Idx, GetElementPtrInst *GEP, function in class:ConstantOffsetExtractor
937 ConstantOffsetExtractor::Extract(OldIdx, GEP, UserChainTail, DT);
/external/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h45 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
47 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) { argument
55 if (Extract)
636 // Extract elements from loaded vector for each sub vector.
/external/llvm/lib/IR/
H A DAutoUpgrade.cpp696 // Extract the bottom elements if necessary and convert to double vector.
736 Value *Extract = local
739 StoreInst *SI = Builder.CreateAlignedStore(Extract, Addr, 1);
918 // Extract a subvector of the first NumDstElts lanes and sign/zero extend.
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp425 Cost = 3; // Extract + insert + copy.
1071 int X86TTIImpl::getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) { argument
1078 if (Extract)
/external/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp782 Value *Extract = Builder.CreateExtractElement(Store->getValueOperand(), local
784 if (Extract->getType() != StoreTy->getScalarType())
785 Extract = Builder.CreateBitCast(Extract, StoreTy->getScalarType());
788 Builder.CreateInsertElement(Vec, Extract, Builder.getInt32(NewIdx));
795 Value *Extract = Store->getValueOperand(); local
796 if (Extract->getType() != StoreTy->getScalarType())
797 Extract =
798 Builder.CreateBitOrPointerCast(Extract, StoreTy->getScalarType());
801 Builder.CreateInsertElement(Vec, Extract, Builde
[all...]
/external/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp134 Extract, ///< Extract files back to file system enumerator in enum:ArchiveOperation
171 // Extract the member filename from the command line for the [relpos] argument
236 case 'x': ++NumOperations; Operation = Extract; break;
305 if (OriginalDates && Operation != Extract)
390 case Extract:
404 if (Operation == Extract && OldArchive->isThin())
431 case Extract:
680 case Extract:
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp1420 SDValue Extract local
1423 ReplaceUses(SDValue(N, 0), Extract); local
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp666 /// ConvertScalar_ExtractValue - Extract a value of type ToType from an integer
1834 Value *Extract = Builder.CreateExtractValue(Val, i, Val->getName()); local
1835 Builder.CreateStore(Extract, NewElts[i]);
2184 /// overwrites the entire allocation. Extract out the pieces of the stored
2188 // Extract each element out of the integer according to its structure offset
2302 // Extract each element out of the NewElts according to its structure offset
/external/swiftshader/third_party/subzero/src/
H A DIceInstARM32.h393 Extract, enumerator in enum:Ice::ARM32::InstARM32::InstKindARM32
1553 static bool classof(const Inst *Inst) { return isClassof(Inst, Extract); }
1558 : InstARM32Pred(Func, InstARM32::Extract, 1, Dest, Predicate),
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp549 /// GPR64 (either via SEXT_INREG or AND). Extract the appropriate low bits if
2657 SDValue Extract = CurDAG->getTargetExtractSubreg(SubReg, SDLoc(Node), VT, local
2660 DEBUG(Extract->dumpr(CurDAG));
2662 ReplaceNode(Node, Extract.getNode());
/external/swiftshader/src/Reactor/
H A DLLVMReactor.cpp2877 RValue<Short> Extract(RValue<Short4> val, int i) function in namespace:sw
3343 *this = Extract(cast, 0);
4278 RValue<Int> Extract(RValue<Int2> val, int i) function in namespace:sw
4868 RValue<Int> Extract(RValue<Int4> x, int i) function in namespace:sw
5718 RValue<Float> Extract(RValue<Float4> x, int i) function in namespace:sw

Completed in 1142 milliseconds

12