Home
last modified time | relevance | path

Searched refs:blockWidth (Results 1 – 10 of 10) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DBlockRealMatrix.java171 if (blockData[index].length != iHeight * blockWidth(jBlock)) { in BlockRealMatrix()
174 blockData[index].length, iHeight * blockWidth(jBlock)); in BlockRealMatrix()
531 final int kWidth = blockWidth(kBlock); in multiply()
585 final int jWidth = out.blockWidth(jBlock); in multiply()
595 final int kWidth = blockWidth(kBlock); in multiply()
670 final int jWidth = blockWidth(jBlock); in getNorm()
727 final int jWidth = out.blockWidth(jBlock); in getSubMatrix()
733 final int width = blockWidth(qBlock); in getSubMatrix()
741 final int width2 = blockWidth(qBlock + 1); in getSubMatrix()
773 final int width2 = blockWidth(qBlock + 1); in getSubMatrix()
[all …]
DBlockFieldMatrix.java174 if (blockData[index].length != iHeight * blockWidth(jBlock)) { in BlockFieldMatrix()
177 blockData[index].length, iHeight * blockWidth(jBlock)); in BlockFieldMatrix()
542 final int kWidth = blockWidth(kBlock); in multiply()
597 final int jWidth = out.blockWidth(jBlock); in multiply()
607 final int kWidth = blockWidth(kBlock); in multiply()
702 final int jWidth = out.blockWidth(jBlock); in getSubMatrix()
708 final int width = blockWidth(qBlock); in getSubMatrix()
716 final int width2 = blockWidth(qBlock + 1); in getSubMatrix()
748 final int width2 = blockWidth(qBlock + 1); in getSubMatrix()
842 final int jWidth = blockWidth(jBlock); in setSubMatrix()
[all …]
/external/deqp/framework/common/
DtcuAstcUtil.cpp456 inline void setASTCErrorColorBlock (void* dst, int blockWidth, int blockHeight, bool isSRGB) in setASTCErrorColorBlock() argument
462 for (int i = 0; i < blockWidth*blockHeight; i++) in setASTCErrorColorBlock()
474 for (int i = 0; i < blockWidth*blockHeight; i++) in setASTCErrorColorBlock()
484 DecompressResult decodeVoidExtentBlock (void* dst, const Block128& blockData, int blockWidth, int b… in decodeVoidExtentBlock() argument
495 setASTCErrorColorBlock(dst, blockWidth, blockHeight, isSRGB); in decodeVoidExtentBlock()
510 for (int i = 0; i < blockWidth*blockHeight; i++) in decodeVoidExtentBlock()
526 for (int i = 0; i < blockWidth*blockHeight; i++) in decodeVoidExtentBlock()
532 for (int i = 0; i < blockWidth*blockHeight; i++) in decodeVoidExtentBlock()
1258 … (TexelWeightPair* dst, const deUint32 (&unquantizedWeights) [64], int blockWidth, int blockHeight… in interpolateWeights() argument
1261 const deUint32 scaleX = (1024 + blockWidth/2) / (blockWidth-1); in interpolateWeights()
[all …]
DtcuAstcUtil.hpp71 void generateDummyNormalBlocks (deUint8* dst, size_t numBlocks, int blockWidth, int blockHeight);
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp62 deUint32 blockWidth; member
141 return compressedFormatParameters[formatNdx].blockWidth; in getBlockWidth()
859 deUint32 blockWidth = getBlockWidth(format); in getCompressedImageResolutionInBlocks() local
863 DE_ASSERT(blockWidth != 0 && blockHeight != 0); in getCompressedImageResolutionInBlocks()
865 deUint32 widthInBlocks = (size[0] + blockWidth - 1) / blockWidth; in getCompressedImageResolutionInBlocks()
873 deUint32 blockWidth = getBlockWidth(format); in getCompressedImageResolutionBlockCeil() local
877 DE_ASSERT(blockWidth != 0 && blockHeight != 0); in getCompressedImageResolutionBlockCeil()
879 deUint32 widthInBlocks = (size[0] + blockWidth - 1) / blockWidth; in getCompressedImageResolutionBlockCeil()
882 return tcu::UVec3(blockWidth * widthInBlocks, blockHeight * heightInBlocks, 1); in getCompressedImageResolutionBlockCeil()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_mipmap_tree.c46 unsigned blockWidth, blockHeight; in get_aligned_compressed_row_stride() local
49 _mesa_get_format_block_size(format, &blockWidth, &blockHeight); in get_aligned_compressed_row_stride()
54 stride = (width + blockWidth - 1) / blockWidth * blockBytes; in get_aligned_compressed_row_stride()
66 blockBytes, blockWidth, in get_aligned_compressed_row_stride()
80 unsigned blockWidth, blockHeight; in get_texture_image_size() local
82 _mesa_get_format_block_size(format, &blockWidth, &blockHeight); in get_texture_image_size()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_mipmap_tree.c46 unsigned blockWidth, blockHeight; in get_aligned_compressed_row_stride() local
49 _mesa_get_format_block_size(format, &blockWidth, &blockHeight); in get_aligned_compressed_row_stride()
54 stride = (width + blockWidth - 1) / blockWidth * blockBytes; in get_aligned_compressed_row_stride()
66 blockBytes, blockWidth, in get_aligned_compressed_row_stride()
80 unsigned blockWidth, blockHeight; in get_texture_image_size() local
82 _mesa_get_format_block_size(format, &blockWidth, &blockHeight); in get_texture_image_size()
/external/mesa3d/src/amd/addrlib/
Daddrinterface.h798 AddrHtileBlockSize blockWidth; ///< 4 or 8. EG above only support 8 member
866 AddrHtileBlockSize blockWidth; ///< 4 or 8. 1 means 8, 0 means 4. EG above only support 8 member
927 AddrHtileBlockSize blockWidth; ///< 4 or 8. 1 means 8, 0 means 4. R8xx/R9xx only support 8 member
/external/mesa3d/src/gallium/winsys/amdgpu/drm/
Damdgpu_surface.c253 AddrHtileIn->blockWidth = ADDR_HTILE_BLOCKSIZE_8; in compute_level()
/external/mesa3d/src/amd/addrlib/core/
Daddrlib.cpp1430 BOOL_32 isWidth8 = (pIn->blockWidth == 8) ? TRUE : FALSE; in ComputeHtileInfo()
1616 BOOL_32 isWidth8 = (pIn->blockWidth == 8) ? TRUE : FALSE; in ComputeHtileAddrFromCoord()
1684 BOOL_32 isWidth8 = (pIn->blockWidth == 8) ? TRUE : FALSE; in ComputeHtileCoordFromAddr()