Searched defs:rangesize (Results 1 - 3 of 3) sorted by relevance

/sssd-io/src/lib/idmap/
H A Dsss_idmap_private.h51 id_t rangesize; member in struct:sss_idmap_opts
H A Dsss_idmap.c265 ctx->idmap_opts.rangesize = SSS_IDMAP_DEFAULT_RANGESIZE;
407 id_t rangesize; local
416 rangesize = ctx->idmap_opts.rangesize;
419 max_slices = (idmap_upper - idmap_lower) / rangesize;
429 min = (rangesize * new_slice) + idmap_lower;
430 max = min + rangesize - 1;
458 min = (rangesize * new_slice) + idmap_lower;
459 max = min + rangesize - 1;
475 min = (rangesize * new_slic
1493 sss_idmap_ctx_set_rangesize(struct sss_idmap_ctx *ctx, id_t rangesize) argument
[all...]
/sssd-io/src/providers/ldap/
H A Dsdap_idmap.c144 id_t rangesize; local
164 rangesize = dp_opt_get_int(idmap_ctx->id_ctx->opts->basic,
172 if (rangesize <= 0
174 || (idmap_upper-idmap_lower) < rangesize)
179 idmap_lower, idmap_upper, rangesize);
184 if (((idmap_upper - idmap_lower) % rangesize) != 0) {
209 err |= sss_idmap_ctx_set_rangesize(idmap_ctx->map, rangesize);

Completed in 9 milliseconds