Home
last modified time | relevance | path

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

/linux-5.19.10/drivers/gpu/drm/vmwgfx/
Dvmw_surface_cache.h75 desc->blockSize.width); in vmw_surface_get_size_in_blocks()
77 desc->blockSize.height); in vmw_surface_get_size_in_blocks()
79 desc->blockSize.depth); in vmw_surface_get_size_in_blocks()
197 const u32 bw = desc->blockSize.width, bh = desc->blockSize.height; in vmw_surface_get_pixel_offset()
198 const u32 bd = desc->blockSize.depth; in vmw_surface_get_pixel_offset()
400 desc->blockSize.width) * in vmw_surface_setup_cache()
407 desc->blockSize.height) * in vmw_surface_setup_cache()
456 loc->z *= desc->blockSize.depth; in vmw_surface_get_loc()
459 loc->y *= desc->blockSize.height; in vmw_surface_get_loc()
461 loc->x *= desc->blockSize.width; in vmw_surface_get_loc()
[all …]
/linux-5.19.10/lib/zstd/compress/
Dzstd_compress.c1267 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, windowSize); in ZSTD_estimateCCtxSize_usingCCtxParams_internal() local
1269 size_t const maxNbSeq = blockSize / divider; in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1270 size_t const tokenSpace = ZSTD_cwksp_alloc_size(WILDCOPY_OVERLENGTH + blockSize) in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1278 size_t const maxNbLdmSeq = ZSTD_ldm_getMaxNbSeq(*ldmParams, blockSize); in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1351 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << cParams.windowLog); in ZSTD_estimateCStreamSize_usingCCtxParams() local
1353 ? ((size_t)1 << cParams.windowLog) + blockSize in ZSTD_estimateCStreamSize_usingCCtxParams()
1356 ? ZSTD_compressBound(blockSize) + 1 in ZSTD_estimateCStreamSize_usingCCtxParams()
1579 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, windowSize); in ZSTD_resetCCtx_internal() local
1581 size_t const maxNbSeq = blockSize / divider; in ZSTD_resetCCtx_internal()
1583 ? ZSTD_compressBound(blockSize) + 1 in ZSTD_resetCCtx_internal()
[all …]
Dzstd_compress_internal.h279 size_t blockSize; member
/linux-5.19.10/lib/zstd/decompress/
Dzstd_decompress.c737 size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize) in ZSTD_insertBlock() argument
739 DEBUGLOG(5, "ZSTD_insertBlock: %u bytes", (unsigned)blockSize); in ZSTD_insertBlock()
740 ZSTD_checkContinuity(dctx, blockStart, blockSize); in ZSTD_insertBlock()
741 dctx->previousDstEnd = (const char*)blockStart + blockSize; in ZSTD_insertBlock()
742 return blockSize; in ZSTD_insertBlock()
1710 size_t const blockSize = (size_t) MIN(windowSize, ZSTD_BLOCKSIZE_MAX); in ZSTD_decodingBufferSize_min() local
1711 unsigned long long const neededRBSize = windowSize + blockSize + (WILDCOPY_OVERLENGTH * 2); in ZSTD_decodingBufferSize_min()
1721 size_t const blockSize = MIN(windowSize, ZSTD_BLOCKSIZE_MAX); in ZSTD_estimateDStreamSize() local
1722 size_t const inBuffSize = blockSize; /* no block can be larger */ in ZSTD_estimateDStreamSize()
/linux-5.19.10/drivers/usb/storage/
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-5.19.10/drivers/gpu/drm/vmwgfx/device_include/
Dsvga3d_surfacedefs.h315 SVGA3dSize blockSize; member
/linux-5.19.10/include/linux/
Dzstd_lib.h2428 ZSTDLIB_API size_t ZSTD_insertBlock (ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize);…