Home
last modified time | relevance | path

Searched refs:objsize (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/block/
H A Drbd.c700 int64_t objsize = opts->cluster_size; in qemu_rbd_do_create() local
701 if ((objsize - 1) & objsize) { /* not a power of 2? */ in qemu_rbd_do_create()
705 if (objsize < 4096) { in qemu_rbd_do_create()
709 obj_order = ctz32(objsize); in qemu_rbd_do_create()
/openbmc/u-boot/fs/zfs/
H A Dzfs.c691 int objsize, char *name, uint64_t * value) in mzap_lookup() argument
696 chunks = objsize / MZAP_ENT_LEN - 1; in mzap_lookup()
709 mzap_iterate(mzap_phys_t *zapobj, zfs_endian_t endian, int objsize, in mzap_iterate() argument
718 chunks = objsize / MZAP_ENT_LEN - 1; in mzap_iterate()
/openbmc/linux/drivers/gpu/drm/msm/adreno/
H A Da6xx_gpu_state.c91 static void *state_kcalloc(struct a6xx_gpu_state *a6xx_state, int nr, size_t objsize) in state_kcalloc() argument
94 kvzalloc((nr * objsize) + sizeof(*obj), GFP_KERNEL); in state_kcalloc()