Home
last modified time | relevance | path

Searched refs:blockSize (Results 1 – 7 of 7) sorted by relevance

/linux/drivers/gpu/drm/vmwgfx/
H A Dvmw_surface_cache.h81 desc->blockSize.width); in vmw_surface_get_size_in_blocks()
83 desc->blockSize.height); in vmw_surface_get_size_in_blocks()
85 desc->blockSize.depth); in vmw_surface_get_size_in_blocks()
203 const u32 bw = desc->blockSize.width, bh = desc->blockSize.height; in vmw_surface_get_pixel_offset()
204 const u32 bd = desc->blockSize.depth; in vmw_surface_get_pixel_offset()
406 desc->blockSize.width) * in vmw_surface_setup_cache()
413 desc->blockSize.height) * in vmw_surface_setup_cache()
462 loc->z *= desc->blockSize.depth; in vmw_surface_get_loc()
465 loc->y *= desc->blockSize.height; in vmw_surface_get_loc()
467 loc->x *= desc->blockSize.width; in vmw_surface_get_loc()
[all …]
/linux/lib/zstd/compress/
H A Dzstd_compress.c1399 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, windowSize); in ZSTD_estimateCCtxSize_usingCCtxParams_internal() local
1401 size_t const maxNbSeq = blockSize / divider; in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1402 size_t const tokenSpace = ZSTD_cwksp_alloc_size(WILDCOPY_OVERLENGTH + blockSize) in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1410 size_t const maxNbLdmSeq = ZSTD_ldm_getMaxNbSeq(*ldmParams, blockSize); in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1496 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << cParams.windowLog); in ZSTD_estimateCStreamSize_usingCCtxParams() local
1498 ? ((size_t)1 << cParams.windowLog) + blockSize in ZSTD_estimateCStreamSize_usingCCtxParams()
1501 ? ZSTD_compressBound(blockSize) + 1 in ZSTD_estimateCStreamSize_usingCCtxParams()
1779 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, windowSize); in ZSTD_resetCCtx_internal() local
1781 size_t const maxNbSeq = blockSize / divider; in ZSTD_resetCCtx_internal()
1783 ? ZSTD_compressBound(blockSize) + 1 in ZSTD_resetCCtx_internal()
[all …]
H A Dzstd_compress_internal.h369 size_t blockSize; member
/linux/lib/zstd/decompress/
H A Dzstd_decompress.c783 size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize) in ZSTD_insertBlock() argument
785 DEBUGLOG(5, "ZSTD_insertBlock: %u bytes", (unsigned)blockSize); in ZSTD_insertBlock()
786 ZSTD_checkContinuity(dctx, blockStart, blockSize); in ZSTD_insertBlock()
787 dctx->previousDstEnd = (const char*)blockStart + blockSize; in ZSTD_insertBlock()
788 return blockSize; in ZSTD_insertBlock()
1775 size_t const blockSize = (size_t) MIN(windowSize, ZSTD_BLOCKSIZE_MAX); in ZSTD_decodingBufferSize_min() local
1777 …unsigned long long const neededRBSize = windowSize + blockSize + ZSTD_BLOCKSIZE_MAX + (WILDCOPY_OV… in ZSTD_decodingBufferSize_min()
1787 size_t const blockSize = MIN(windowSize, ZSTD_BLOCKSIZE_MAX); in ZSTD_estimateDStreamSize() local
1788 size_t const inBuffSize = blockSize; /* no block can be larger */ in ZSTD_estimateDStreamSize()
/linux/drivers/usb/storage/
H A Dene_ub6250.c412 u16 blockSize; member
971 info->MS_Lib.blockSize = be16_to_cpu(SysInfo->wBlockSize); in ms_lib_process_bootblock()
974 info->MS_Lib.PagesPerBlock = info->MS_Lib.blockSize * SIZE_OF_KIRO / MS_BYTES_PER_PAGE; in ms_lib_process_bootblock()
999 if (EntryOffset + MS_BYTES_PER_PAGE + EntrySize > info->MS_Lib.blockSize * (u32)SIZE_OF_KIRO) in ms_lib_process_bootblock()
1105 info->MS_Lib.blockSize = 0; in ms_lib_free_allocatedarea()
1498 bl_num = info->MS_Lib.NumberOfLogBlock * info->MS_Lib.blockSize * 2 - 1; in ms_scsi_read_capacity()
/linux/drivers/gpu/drm/vmwgfx/device_include/
H A Dsvga3d_surfacedefs.h315 SVGA3dSize blockSize; member
/linux/include/linux/
H A Dzstd_lib.h2547 …_t ZSTD_insertBlock (ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize); /*< insert un…