/external/eigen/Eigen/src/SparseCore/ |
D | SparseCompressedBase.h | 50 …> innerNonZeros() { return Eigen::Map<IndexVector>(innerNonZeroPtr(), isCompressed()?0:derived().o… 51 …ros() const { return Eigen::Map<const IndexVector>(innerNonZeroPtr(), isCompressed()?0:derived().o… 60 else if(isCompressed()) 107 inline bool isCompressed() const { return innerNonZeroPtr()==0; } 114 …const Map<const Array<Scalar,Dynamic,1> > coeffs() const { eigen_assert(isCompressed()); return Ar… 126 …Map<Array<Scalar,Dynamic,1> > coeffs() { eigen_assert(isCompressed()); return Array<Scalar,Dynamic… 168 if(mat.isCompressed()) 228 if(mat.isCompressed()) 326 …Index end = m_matrix->isCompressed() ? m_matrix->outerIndexPtr()[outer+1] : m_matrix->outerIndexPt…
|
D | SparseMatrix.h | 103 using Base::isCompressed; 264 eigen_assert(isCompressed() && "This function does not make sense in non compressed mode."); 299 if(isCompressed()) 424 if(isCompressed()) 466 if(isCompressed()) 766 if(other.isCompressed()) 792 if(m.isCompressed()) 819 if(!m.isCompressed()) 891 eigen_assert(!isCompressed()); 1019 eigen_assert(!isCompressed()); [all …]
|
D | SparseBlock.h | 138 Index free_size = m_matrix.isCompressed() 167 if(m_matrix.isCompressed()) 185 if(!m_matrix.isCompressed()) 195 if(!m_matrix.isCompressed()) 235 { return isCompressed() ? 0 : (m_matrix.innerNonZeroPtr()+m_outerStart); } in innerNonZeroPtr() 237 { return isCompressed() ? 0 : (m_matrix.innerNonZeroPtr()+m_outerStart); } in innerNonZeroPtr() 239 bool isCompressed() const { return m_matrix.innerNonZeroPtr()==0; } in isCompressed() function 260 if(m_matrix.isCompressed()) in lastCoeff()
|
D | SparseMap.h | 90 bool isCompressed() const { return m_innerNonZeros==0; } 111 Index end = isCompressed() ? m_outerIndex[outer+1] : start + m_innerNonZeros[outer]; 186 …Index end = Base::isCompressed() ? Base::m_outerIndex[outer+1] : start + Base::m_innerNonZeros[out…
|
D | SparseRef.h | 148 eigen_assert( ((Options & int(StandardCompressedFormat))==0) || (expr.isCompressed()) ); 156 eigen_assert( ((Options & int(StandardCompressedFormat))==0) || (expr.isCompressed()) ); 170 eigen_assert( ((Options & int(StandardCompressedFormat))==0) || (expr.isCompressed()) ); 214 if((Options & int(StandardCompressedFormat)) && (!expr.isCompressed()))
|
D | SparseRedux.h | 33 if(this->isCompressed()) in sum()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/ |
D | TapeInputStream.java | 43 private boolean isCompressed = false; field in TapeInputStream 67 public void resetBlockSize(final int recsPerBlock, final boolean isCompressed) in resetBlockSize() argument 69 this.isCompressed = isCompressed; in resetBlockSize() 272 if (!isCompressed || (currBlkIdx == -1)) {
|
D | DumpArchiveSummary.java | 268 public boolean isCompressed() { in isCompressed() method in DumpArchiveSummary
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | pr25281.ll | 8 …at** noalias nocapture readonly %in, i32* noalias nocapture readonly %isCompressed, float* noalias… 12 %tmp1 = getelementptr i32, i32* %isCompressed, i32 0 16 %tmp3 = getelementptr i32, i32* %isCompressed, i32 1
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopVectorize/ |
D | pr25281.ll | 7 …at** noalias nocapture readonly %in, i32* noalias nocapture readonly %isCompressed, float* noalias… 11 %tmp1 = getelementptr i32, i32* %isCompressed, i32 0 15 %tmp3 = getelementptr i32, i32* %isCompressed, i32 1
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | Decompressor.cpp | 80 bool Decompressor::isCompressed(const object::SectionRef &Section) { in isCompressed() function in Decompressor 84 return Section.isCompressed() || isGnuStyle(Name); in isCompressed()
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineImageUtil.cpp | 266 …deUint32 bufferSize = (srcTexture.isCompressed())? srcTexture.getCompressedSize(): srcTextu… in uploadTestTextureInternal() 347 …deUint32 bufferSize = (srcTexture.isCompressed()) ? srcTexture.getCompressedSize(): srcTex… in uploadTestTextureInternalSparse() 609 if (!isCompressed()) in getCompressedSize() 654 if (isCompressed()) in getBufferCopyRegions() 752 if (isCompressed()) in write() 895 DE_ASSERT(!isCompressed()); in copy() 972 DE_ASSERT(!isCompressed()); in copy() 1043 DE_ASSERT(!isCompressed()); in copy() 1120 DE_ASSERT(!isCompressed()); in copy() 1182 DE_ASSERT(!isCompressed()); in copy() [all …]
|
D | vktPipelineSamplerTests.cpp | 1112 const bool isCompressed = isCompressedFormat(format); in createSamplerTests() local 1114 if (isCompressed) in createSamplerTests() 1125 if (!isCompressed) in createSamplerTests()
|
D | vktPipelineImageUtil.hpp | 133 virtual bool isCompressed (void) const { return !m_compressedLevels.empty(); } in isCompressed() function in vkt::pipeline::TestTexture
|
/external/eigen/test/ |
D | sparse_ref.cpp | 52 VERIFY(a.isCompressed()); in call_ref_3() 93 VERIFY(!C.isCompressed()); in call_ref()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Texture.h | 152 virtual bool isCompressed(GLenum target, GLint level) const = 0; 224 bool isCompressed(GLenum target, GLint level) const override; 291 bool isCompressed(GLenum target, GLint level) const override; 354 bool isCompressed(GLenum target, GLint level) const override;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | Decompressor.h | 46 static bool isCompressed(const object::SectionRef &Section);
|
D | ObjectFile.h | 106 bool isCompressed() const; 424 inline bool SectionRef::isCompressed() const { in isCompressed() function
|
/external/eigen/Eigen/src/SparseLU/ |
D | SparseLU.h | 428 …tack_constructed_variable(StorageIndex,outerIndexPtr,mat.cols()+1,mat.isCompressed()?const_cast<St… in analyzePattern() 431 if(!mat.isCompressed()) in analyzePattern() 515 if (matrix.isCompressed()) outerIndexPtr = matrix.outerIndexPtr(); in factorize() 527 if(!matrix.isCompressed()) delete[] outerIndexPtr; in factorize()
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | Texture.h | 83 virtual bool isCompressed(GLenum target, GLint level) const = 0; 148 bool isCompressed(GLenum target, GLint level) const override;
|
/external/eigen/Eigen/src/OrderingMethods/ |
D | Ordering.h | 130 …eigen_assert(mat.isCompressed() && "COLAMDOrdering requires a sparse matrix in compressed mode. Ca… in operator()
|
/external/llvm/include/llvm/Object/ |
D | ObjectFile.h | 93 bool isCompressed() const; 387 inline bool SectionRef::isCompressed() const { in isCompressed() function
|
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
D | Archive.h | 115 bool isCompressed() const { return flags&CompressedFlag; } in isCompressed() function
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
D | vktImageCompressionTranscodingSupport.cpp | 510 const bool isCompressed); 523 const bool isCompressed); 552 const bool isCompressed = compressedNdx == imageNdx ? true : false; in iterate() local 553 createImageInfos(imageData[imageNdx], mipMapSizes, isCompressed); in iterate() 557 if (isCompressed) in iterate() 667 const bool isCompressed) in copyDataToImage() argument 710 const VkExtent3D imageExtent = isCompressed ? in copyDataToImage() 725 …UVec3(isCompressed ? imageExtent.width : imageExtent.width * m_blockWidth, isCompressed? imageExte… in copyDataToImage() 932 …:createImageInfos (ImageData& imageData, const vector<UVec3>& mipMapSizes, const bool isCompressed) in createImageInfos() argument 936 if (isCompressed) in createImageInfos()
|
/external/llvm/lib/ProfileData/ |
D | InstrProf.cpp | 306 bool isCompressed = (CompressedSize != 0); in readPGOFuncNameStrings() local 309 if (isCompressed) { in readPGOFuncNameStrings()
|