Home
last modified time | relevance | path

Searched refs:zm (Results 1 – 6 of 6) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dzipmap.c101 return zm; in zipmapNew()
203 zm = zrealloc(zm, len); in zipmapResize()
222 zm = zipmapResize(zm, zmlen+reqlen); in zipmapSet()
227 if (zm[0] < ZIPMAP_BIGLEN) zm[0]++; in zipmapSet()
238 zm = zipmapResize(zm, zmlen-freelen+reqlen); in zipmapSet()
260 zm = zipmapResize(zm, zmlen); in zipmapSet()
287 zm = zipmapResize(zm, zmlen-freelen); in zipmapDel()
290 if (zm[0] < ZIPMAP_BIGLEN) zm[0]--; in zipmapDel()
322 zm += zipmapRawKeyLength(zm); in zipmapNext()
328 zm += zipmapRawValueLength(zm); in zipmapNext()
[all …]
H A Dzipmap.h39 unsigned char *zipmapSet(unsigned char *zm, unsigned char *key, unsigned int klen, unsigned char *v…
40 unsigned char *zipmapDel(unsigned char *zm, unsigned char *key, unsigned int klen, int *deleted);
41 unsigned char *zipmapRewind(unsigned char *zm);
42 unsigned char *zipmapNext(unsigned char *zm, unsigned char **key, unsigned int *klen, unsigned char…
43 int zipmapGet(unsigned char *zm, unsigned char *key, unsigned int klen, unsigned char **value, unsi…
44 int zipmapExists(unsigned char *zm, unsigned char *key, unsigned int klen);
45 unsigned int zipmapLen(unsigned char *zm);
46 size_t zipmapBlobLen(unsigned char *zm);
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_super.c173 zfs_mnt_t zm = { .mnt_osname = NULL, .mnt_data = data }; in zpl_remount_fs() local
178 error = -zfs_remount(sb, flags, &zm); in zpl_remount_fs()
248 zfs_mnt_t *zm = (zfs_mnt_t *)data; in zpl_fill_super() local
253 error = -zfs_domount(sb, zm, silent); in zpl_fill_super()
273 zpl_mount_impl(struct file_system_type *fs_type, int flags, zfs_mnt_t *zm) in zpl_mount_impl() argument
279 err = dmu_objset_hold(zm->mnt_osname, FTAG, &os); in zpl_mount_impl()
302 err = zpl_fill_super(s, zm, flags & SB_SILENT ? 1 : 0); in zpl_mount_impl()
320 zfs_mnt_t zm = { .mnt_osname = osname, .mnt_data = data }; in zpl_mount() local
322 struct super_block *sb = zpl_mount_impl(fs_type, flags, &zm); in zpl_mount()
H A Dzfs_vfsops.c1451 zfs_domount(struct super_block *sb, zfs_mnt_t *zm, int silent) in zfs_domount() argument
1453 const char *osname = zm->mnt_osname; in zfs_domount()
1460 ASSERT(zm); in zfs_domount()
1463 error = zfsvfs_parse_options(zm->mnt_data, &vfs); in zfs_domount()
1642 zfs_remount(struct super_block *sb, int *flags, zfs_mnt_t *zm) in zfs_remount() argument
1655 error = zfsvfs_parse_options(zm->mnt_data, &vfsp); in zfs_remount()
/f-stack/lib/
H A Dff_veth.c264 ff_zc_mbuf_write(struct ff_zc_mbuf *zm, const char *data, int len) in ff_zc_mbuf_write() argument
269 if (zm == NULL) { in ff_zc_mbuf_write()
272 m = (struct mbuf *)zm->bsd_mbuf_off; in ff_zc_mbuf_write()
274 if (zm->off + len > zm->len) { in ff_zc_mbuf_write()
290 zm->off += len; in ff_zc_mbuf_write()
291 zm->bsd_mbuf_off = mb; in ff_zc_mbuf_write()
/f-stack/freebsd/contrib/openzfs/include/os/linux/zfs/sys/
H A Dzfs_vfsops_os.h212 extern int zfs_domount(struct super_block *sb, zfs_mnt_t *zm, int silent);
215 extern int zfs_remount(struct super_block *sb, int *flags, zfs_mnt_t *zm);