Home
last modified time | relevance | path

Searched refs:UF (Results 1 – 25 of 185) sorted by relevance

12345678

/external/ltp/pan/cgi/
Dbrowse.cgi43 open (UF, $pf) || next;
44 while ($line = <UF>) {
46 close(UF);
55 open (UF, "gunzip -c $pf|") || next;
57 open (UF, "$pf") || next;
59 while ($line = <UF>) {
61 close(UF);
/external/clang/tools/libclang/
DCXString.h103 static inline StringRef getContents(const CXUnsavedFile &UF) { in getContents() argument
104 return StringRef(UF.Contents, UF.Length); in getContents()
DCIndexCodeCompletion.cpp682 for (auto &UF : unsaved_files) { in clang_codeCompleteAt_Impl() local
684 llvm::MemoryBuffer::getMemBufferCopy(getContents(UF), UF.Filename); in clang_codeCompleteAt_Impl()
685 RemappedFiles.push_back(std::make_pair(UF.Filename, MB.release())); in clang_codeCompleteAt_Impl()
DIndexing.cpp501 for (auto &UF : unsaved_files) { in clang_indexSourceFile_Impl() local
503 llvm::MemoryBuffer::getMemBufferCopy(getContents(UF), UF.Filename); in clang_indexSourceFile_Impl()
504 CInvok->getPreprocessorOpts().addRemappedFile(UF.Filename, MB.get()); in clang_indexSourceFile_Impl()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DVPlan.h111 unsigned UF;
126 VectorizerValueMap(unsigned UF, unsigned VF) : UF(UF), VF(VF) {} in VectorizerValueMap()
135 assert(Part < UF && "Queried Vector Part is too large."); in hasVectorValue()
139 assert(Entry.size() == UF && "VectorParts has wrong dimensions."); in hasVectorValue()
150 assert(Instance.Part < UF && "Queried Scalar Part is too large."); in hasScalarValue()
155 assert(Entry.size() == UF && "ScalarParts has wrong dimensions."); in hasScalarValue()
180 VectorParts Entry(UF); in setVectorValue()
191 ScalarParts Entry(UF); in setScalarValue()
194 for (unsigned Part = 0; Part < UF; ++Part) in setScalarValue()
232 VPTransformState(unsigned VF, unsigned UF, LoopInfo *LI, DominatorTree *DT, in VPTransformState()
[all …]
DLoopVectorize.cpp367 AC(AC), ORE(ORE), VF(VecWidth), UF(UnrollFactor), in InnerLoopVectorizer()
393 void widenPHIInstruction(Instruction *PN, unsigned UF, unsigned VF);
647 unsigned UF; member in llvm::InnerLoopVectorizer
756 B.SetCurrentDebugLocation(DIL->cloneWithDuplicationFactor(UF * VF)); in setDebugLocFromInst()
1826 for (unsigned Part = 0; Part < UF; ++Part) { in createVectorIntOrFpInductionPHI()
1970 for (unsigned Part = 0; Part < UF; ++Part) { in widenIntOrFpInduction()
2076 for (unsigned Part = 0; Part < UF; ++Part) { in buildScalarSteps()
2280 for (unsigned Part = 0; Part < UF; Part++) { in vectorizeInterleaveGroup()
2309 for (unsigned Part = 0; Part < UF; Part++) { in vectorizeInterleaveGroup()
2326 for (unsigned Part = 0; Part < UF; Part++) { in vectorizeInterleaveGroup()
[all …]
DVPlan.cpp208 for (unsigned Part = 0, UF = State->UF; Part < UF; ++Part) { in execute() local
259 for (unsigned Part = 0; Part < State.UF; ++Part) in execute()
DLoopVectorizationPlanner.h233 void setBestPlan(unsigned VF, unsigned UF);
/external/clang/test/Layout/
Dms-x86-member-pointers.cpp15 struct UF { char a; int (U::*mp)(); }; struct
80 sizeof(UF)];
/external/llvm/lib/Target/Hexagon/
DHexagonCommonGEP.cpp753 NodeToUsesMap::iterator UF = Uses.find(Node); in recalculatePlacement() local
754 assert(UF != Uses.end() && "Used node with no use information"); in recalculatePlacement()
755 UseSet &Us = UF->second; in recalculatePlacement()
969 NodeToUsesMap::iterator UF = Uses.find(Node); in separateChainForNode() local
970 assert(UF != Uses.end()); in separateChainForNode()
971 UseSet &Us = UF->second; in separateChainForNode()
984 Uses.erase(UF); in separateChainForNode()
1009 NodeToUsesMap::iterator UF = Uses.find(N); in separateConstantChains() local
1010 assert(UF != Uses.end()); in separateConstantChains()
1011 UseSet &Us = UF->second; in separateConstantChains()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonCommonGEP.cpp770 NodeToUsesMap::iterator UF = Uses.find(Node); in recalculatePlacement() local
771 assert(UF != Uses.end() && "Used node with no use information"); in recalculatePlacement()
772 UseSet &Us = UF->second; in recalculatePlacement()
979 NodeToUsesMap::iterator UF = Uses.find(Node); in separateChainForNode() local
980 assert(UF != Uses.end()); in separateChainForNode()
981 UseSet &Us = UF->second; in separateChainForNode()
994 Uses.erase(UF); in separateChainForNode()
1018 NodeToUsesMap::iterator UF = Uses.find(N); in separateConstantChains() local
1019 assert(UF != Uses.end()); in separateConstantChains()
1020 UseSet &Us = UF->second; in separateConstantChains()
[all …]
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp295 AC(AC), VF(VecWidth), UF(UnrollFactor), in InnerLoopVectorizer()
378 void widenPHIInstruction(Instruction *PN, VectorParts &Entry, unsigned UF,
481 ValueMap(unsigned UnrollFactor) : UF(UnrollFactor) {} in ValueMap()
491 Entry.assign(UF, Val); in splat()
499 Entry.resize(UF); in get()
500 assert(Entry.size() == UF); in get()
507 unsigned UF; member
547 unsigned UF; member in __anon0b4224d80111::InnerLoopVectorizer
1898 for (unsigned Part = 0; Part < UF; ++Part) { in createVectorIntInductionPHI()
1963 for (unsigned Part = 0; Part < UF; ++Part) in widenIntInduction()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/docs/Proposals/
DVectorizationPlan.rst47 according to an Unroll Factor (UF).
67 VF and UF), mixed vectorization: vectorizing a loop with SLP patterns
72 related to a range of possible VF's and UF's must be represented efficiently.
82 replicated VF*UF times to handle scalarized and predicated instructions.
99 Once the best VPlan is determined, including the best VF and UF, this VPlan
138 multiple candidate VF's and UF's.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopVectorize/
Dminiters.ll10 …kip the vector loop and jump to scalar.ph directly when loop iteration number is less than VF * UF.
/external/llvm/test/Transforms/LoopVectorize/
Dminiters.ll11 …kip the vector loop and jump to scalar.ph directly when loop iteration number is less than VF * UF.
/external/icu/icu4c/source/data/curr/
Dug.txt259 "چىلى ھېسابات بىرلىكى (UF)",
1464 one{"چىلى ھېسابات بىرلىكى (UF)"}
1465 other{"چىلى ھېسابات بىرلىكى (UF)"}
Dja.txt259 "チリ ウニダ・デ・フォメント (UF)",
1506 other{"チリ ウニダ・デ・フォメント (UF)"}
Dcy.txt235 "Uned Cyfrifo Chile (UF)",
1676 few{"uned cyfrifo Chile (UF)"}
1677 many{"uned cyfrifo Chile (UF)"}
1678 one{"uned cyfrifo Chile (UF)"}
1679 other{"uned cyfrifo Chile (UF)"}
1680 two{"uned cyfrifo Chile (UF)"}
1681 zero{"uned cyfrifo Chile (UF)"}
/external/ImageMagick/PerlMagick/t/reference/filter/
DGaussianBlur.miff15 …5�;1�;-�;+�=.�B5�IA�PK�WO�]MubIdeE\eDXcCT`BR_@Ug@]vCe�Hj�Km�Mn�Nn�On�Pm�Q\UF]UF]VG_XIbZLe]Rh`Ykc`l…
DColorize.miff15 …��������!� ��!���� ������$�&"�)(�A8�UF�WG�K=�>-�/$���…
DLevel.miff215 …�g�DF�i�-d�4U�W�+S�(U�!]�&��������� �*/->:ab_������������������q�_MFHF!UF%\D�?�42�������…
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D3079e19ea7218809efa280a8eae87bf7.00009d7e.honggfuzz.cov43 )쀵 ��3�2�О���aQ��=�&6�w�p����o��D���5�0 3�Yc&#� ���m|���b�޽+m�mQ�wt��UF�@a����\�1HI������…
Dd92c11b690add4c6ef1250da6d50cf63.000011af.honggfuzz.cov11 ��Nr�wE�UF͹
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D3079e19ea7218809efa280a8eae87bf7.00009d7e.honggfuzz.cov43 )쀵 ��3�2�О���aQ��=�&6�w�p����o��D���5�0 3�Yc&#� ���m|���b�޽+m�mQ�wt��UF�@a����\�1HI������…
/external/ImageMagick/PerlMagick/t/reference/write/filter/
DColorize.miff43 …�������� �"�#�����������# �"�*)�H=�UF�@8�-#� ����…

12345678