/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/ |
H A D | vmw_surface_cache.h | 75 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 in vmw_surface_get_loc() [all...] |
/kernel/liteos_a/fs/vfs/bcache/src/ |
H A D | bcache.c | 311 if (memcpy_s(block->data + pos, bc->blockSize - pos, bc->rwBuffer + pos, currentSize) != EOK) { in BcacheGetFlag() 719 UINT32 blockSize) in BcacheInitCache() 731 if (!GetValLog2(blockSize)) { in BcacheInitCache() 732 PRINT_ERR("GetValLog2(%u) return 0.\n", blockSize); in BcacheInitCache() 738 bc->blockSize = blockSize; in BcacheInitCache() 739 bc->blockSizeLog2 = GetValLog2(blockSize); in BcacheInitCache() 745 blockNum = (memSize - DMA_ALLGN) / (sizeof(OsBcacheBlock) + bc->blockSize); in BcacheInitCache() 753 g_dataSize = bc->blockSize; in BcacheInitCache() 769 dataMem += bc->blockSize; in BcacheInitCache() 716 BcacheInitCache(OsBcache *bc, UINT8 *memStart, UINT32 memSize, UINT32 blockSize) BcacheInitCache() argument 800 BlockCacheDrvCreate(VOID *handle, UINT8 *memStart, UINT32 memSize, UINT32 blockSize, OsBcache *bc) BlockCacheDrvCreate() argument 1072 UINT32 blockSize, memSize; BlockCacheInit() local [all...] |
/kernel/linux/linux-5.10/drivers/staging/hisysevent/ |
H A D | hisysevent_builder.c | 321 s32 blockSize; in hisysevent_builder_build() local 327 blockSize = 0; in hisysevent_builder_build() 329 if (raw_data_append(raw_data, (u8 *)(&blockSize), sizeof(s32)) != 0) { in hisysevent_builder_build() 356 blockSize = raw_data->len; in hisysevent_builder_build() 357 if (raw_data_update(raw_data, (u8 *)(&blockSize), sizeof(s32), 0) != 0) { in hisysevent_builder_build()
|
/kernel/linux/linux-6.6/drivers/staging/hisysevent/ |
H A D | hisysevent_builder.c | 321 s32 blockSize; in hisysevent_builder_build() local 327 blockSize = 0; in hisysevent_builder_build() 329 if (raw_data_append(raw_data, (u8 *)(&blockSize), sizeof(s32)) != 0) { in hisysevent_builder_build() 356 blockSize = raw_data->len; in hisysevent_builder_build() 357 if (raw_data_update(raw_data, (u8 *)(&blockSize), sizeof(s32), 0) != 0) { in hisysevent_builder_build()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress.c | 1399 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) in ZSTD_resetCCtx_internal() 2949 writeBlockHeader(void* op, size_t cSize, size_t blockSize, U32 lastBlock) writeBlockHeader() argument 3553 ZSTD_compressBlock_splitBlock_internal(ZSTD_CCtx* zc, void* dst, size_t dstCapacity, const void* src, size_t blockSize, U32 lastBlock, U32 nbSeq) ZSTD_compressBlock_splitBlock_internal() argument 3846 size_t blockSize = cctx->blockSize; ZSTD_compress_frameChunk() local 5599 ZSTD_copySequencesToSeqStoreExplicitBlockDelim(ZSTD_CCtx* cctx, ZSTD_sequencePosition* seqPos, const ZSTD_Sequence* const inSeqs, size_t inSeqsSize, const void* src, size_t blockSize) ZSTD_copySequencesToSeqStoreExplicitBlockDelim() argument 5662 ZSTD_copySequencesToSeqStoreNoBlockDelim(ZSTD_CCtx* cctx, ZSTD_sequencePosition* seqPos, const ZSTD_Sequence* const inSeqs, size_t inSeqsSize, const void* src, size_t blockSize) ZSTD_copySequencesToSeqStoreNoBlockDelim() argument 5809 size_t blockSize; ZSTD_compressSequences_internal() local [all...] |
/kernel/liteos_a/drivers/mtd/multi_partition/include/ |
H A D | mtd_dev.h | 42 unsigned long blockSize; member
|
/kernel/uniproton/src/include/uapi/ |
H A D | prt_fs.h | 39 S32 blockSize; /* size of an erasable block */ member
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 72 size_t blockSize; member 92 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_ABSOLUTEMAX, (size_t)1 << cParams.windowLog); in ZSTD_CCtxWorkspaceBound() local 94 size_t const maxNbSeq = blockSize / divider; in ZSTD_CCtxWorkspaceBound() 95 size_t const tokenSpace = blockSize + 11 * maxNbSeq; in ZSTD_CCtxWorkspaceBound() 252 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_ABSOLUTEMAX, (size_t)1 << params.cParams.windowLog); in ZSTD_resetCCtx_advanced() local 254 size_t const maxNbSeq = blockSize / divider; in ZSTD_resetCCtx_advanced() 255 size_t const tokenSpace = blockSize + 11 * maxNbSeq; in ZSTD_resetCCtx_advanced() 298 zc->blockSize = blockSize; in ZSTD_resetCCtx_advanced() 2357 size_t blockSize in ZSTD_compress_generic() local 2959 size_t blockSize; global() member 2976 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_ABSOLUTEMAX, inBuffSize); ZSTD_CStreamWorkspaceBound() local [all...] |
H A D | decompress.c | 1490 size_t ZSTD_insertBlock(ZSTD_DCtx *dctx, const void *blockStart, size_t blockSize) in ZSTD_insertBlock() argument 1493 dctx->previousDstEnd = (const char *)blockStart + blockSize; in ZSTD_insertBlock() 1494 return blockSize; in ZSTD_insertBlock() 2174 size_t blockSize; member 2186 size_t const blockSize = MIN(maxWindowSize, ZSTD_BLOCKSIZE_ABSOLUTEMAX); in ZSTD_DStreamWorkspaceBound() local 2187 size_t const inBuffSize = blockSize; in ZSTD_DStreamWorkspaceBound() 2188 size_t const outBuffSize = maxWindowSize + blockSize + WILDCOPY_OVERLENGTH * 2; in ZSTD_DStreamWorkspaceBound() 2232 size_t const blockSize = MIN(zds->maxWindowSize, ZSTD_BLOCKSIZE_ABSOLUTEMAX); in ZSTD_initDStream() local 2233 size_t const neededOutSize = zds->maxWindowSize + blockSize + WILDCOPY_OVERLENGTH * 2; in ZSTD_initDStream() 2235 zds->inBuff = (char *)ZSTD_malloc(blockSize, zd in ZSTD_initDStream() 2367 size_t const blockSize = MIN(zds->maxWindowSize, ZSTD_BLOCKSIZE_ABSOLUTEMAX); ZSTD_decompressStream() local [all...] |
/kernel/liteos_m/components/fs/vfs/ |
H A D | los_fs.h | 75 int blockSize; /* size of an erasable block */ member
|
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A D | zstd_decompress.c | 783 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_OVERLENGTH * 2); 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()
|
/kernel/liteos_a/fs/vfs/include/bcache/ |
H A D | bcache.h | 98 UINT32 blockSize; /* block size in bytes */ member
|
/kernel/liteos_m/utils/ |
H A D | los_debug.h | 67 UINT32 blockSize;
member
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | zstd.h | 1155 size_t blockSize);
|
/kernel/liteos_m/kernel/src/mm/ |
H A D | los_membox.c | 277 memExcInfo->blockSize = pool->uwBlkSize;
in OsMemboxExcInfoGetSub()
|
/kernel/liteos_m/arch/arm/arm9/gcc/ |
H A D | los_interrupt.c | 256 PRINTK("pool blkNum = %d\n", memExcInfo[i].blockSize);
in OsExcMemPoolCheckInfo()
|
/kernel/liteos_m/arch/csky/v2/gcc/ |
H A D | los_interrupt.c | 339 PRINTK("pool blkNum = %d\n", memExcInfo[i].blockSize); in OsExcMemPoolCheckInfo()
|
/kernel/liteos_m/arch/xtensa/lx6/gcc/ |
H A D | los_interrupt.c | 310 PRINTK("pool blkNum = %d\n", memExcInfo[i].blockSize);
in OsExcMemPoolCheckInfo()
|
/kernel/linux/linux-5.10/drivers/usb/storage/ |
H A D | ene_ub6250.c | 412 u16 blockSize; member 970 info->MS_Lib.blockSize = be16_to_cpu(SysInfo->wBlockSize); in ms_lib_process_bootblock() 973 info->MS_Lib.PagesPerBlock = info->MS_Lib.blockSize * SIZE_OF_KIRO / MS_BYTES_PER_PAGE; in ms_lib_process_bootblock() 998 if (EntryOffset + MS_BYTES_PER_PAGE + EntrySize > info->MS_Lib.blockSize * (u32)SIZE_OF_KIRO) in ms_lib_process_bootblock() 1104 info->MS_Lib.blockSize = 0; in ms_lib_free_allocatedarea() 1497 bl_num = info->MS_Lib.NumberOfLogBlock * info->MS_Lib.blockSize * 2 - 1; in ms_scsi_read_capacity()
|
/kernel/linux/linux-6.6/drivers/usb/storage/ |
H A D | ene_ub6250.c | 412 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()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/device_include/ |
H A D | svga3d_surfacedefs.h | 315 SVGA3dSize blockSize; member
|
/kernel/liteos_m/arch/arm/cortex-m3/keil/ |
H A D | los_interrupt.c | 319 PRINTK("pool blkNum = %d\n", memExcInfo[i].blockSize);
in OsExcMemPoolCheckInfo()
|
/kernel/liteos_m/arch/arm/cortex-m33/gcc/NTZ/ |
H A D | los_interrupt.c | 321 PRINTK("pool blkNum = %d\n", memExcInfo[i].blockSize);
in OsExcMemPoolCheckInfo()
|
/kernel/liteos_m/arch/arm/cortex-m33/gcc/TZ/non_secure/ |
H A D | los_interrupt.c | 321 PRINTK("pool blkNum = %d\n", memExcInfo[i].blockSize);
in OsExcMemPoolCheckInfo()
|
/kernel/liteos_m/arch/arm/cortex-m33/iar/NTZ/ |
H A D | los_interrupt.c | 321 PRINTK("pool blkNum = %d\n", memExcInfo[i].blockSize);
in OsExcMemPoolCheckInfo()
|