Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dunparse.c185 unsigned int totalsize = 0; in k5_unparse_name() local
212 totalsize += component_length_quoted(krb5_princ_realm(context, in k5_unparse_name()
215 totalsize++; /* This is for the separator */ in k5_unparse_name()
224 totalsize += component_length_quoted(krb5_princ_component(context, principal, i), flags); in k5_unparse_name()
225 totalsize++; /* This is for the separator */ in k5_unparse_name()
228 totalsize++; in k5_unparse_name()
239 if (*name && (*size < totalsize)) { in k5_unparse_name()
241 *name = krb5int_realloc(*name, totalsize, *size); in k5_unparse_name()
243 *name = MALLOC(totalsize); in k5_unparse_name()
245 *size = totalsize; in k5_unparse_name()
[all …]
/illumos-gate/usr/src/uts/sun4u/sys/
H A Dcheetahregs.h774 #define CH_ECTAG_NSUBBLKS(totalsize) 1 argument
778 #define CH_ECTAG_STATE_MASK(totalsize) \ argument
782 #define CH_ECTAG_LINE_INVALID(totalsize, tag) \ argument
783 (((tag) & CH_ECTAG_STATE_MASK(totalsize)) == 0)
793 #define CH_ECTAG_PA_TO_SUBBLK(totalsize, pa) 1 argument
820 #define CH_ECTAG_NSUBBLKS(totalsize) ((totalsize) / CH_ECACHE_1M_SIZE)
824 #define CH_ECTAG_STATE_MASK(totalsize) \
829 #define CH_ECTAG_LINE_INVALID(totalsize, tag) \
840 #define CH_ECTAG_PA_TO_SUBBLK(totalsize, pa) \
899 #define JG_ECTAG_STATE_MASK(totalsize) \ argument
[all …]
/illumos-gate/usr/src/lib/libproc/common/
H A Dpr_meminfo.c57 size_t totalsize; in pr_meminfo() local
66 totalsize = inarraysize + outarraysize + infoarraysize + in pr_meminfo()
69 if ((totalmap = pr_zmap(Pr, 0, totalsize, PROT_READ | PROT_WRITE, in pr_meminfo()
179 pr_munmap(Pr, totalmap, totalsize) == -1) { in pr_meminfo()
/illumos-gate/usr/src/cmd/mdb/common/modules/ufs/
H A Dufs_log.c175 uint64_t totalsize; /* total number of bytes */ member
194 msp->totalsize += uw->me.me_nb; in mapadd()
224 mdb_printf("Total map size 0x%llx\n", msp->totalsize); in mapstats_dcmd()
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlstring.c101 size_t totalsize; /* total size of TString object */ in createstrobj() local
102 totalsize = sizeof(TString) + ((l + 1) * sizeof(char)); in createstrobj()
103 ts = &luaC_newobj(L, tag, totalsize, list, 0)->ts; in createstrobj()
/illumos-gate/usr/src/lib/libfsmgt/common/
H A Dfs_mounts.c477 unsigned long long totalsize; in fs_get_totalsize() local
489 totalsize = stvfs.f_blocks; in fs_get_totalsize()
490 totalsize = totalsize * stvfs.f_frsize; in fs_get_totalsize()
497 return (totalsize); in fs_get_totalsize()
/illumos-gate/usr/src/uts/sun4u/cpu/
H A Dus3_common.c2862 int totalsize; in cpu_ce_scrub_mem_err_common() local
2887 totalsize = cpunodes[CPU->cpu_id].ecache_size; in cpu_ce_scrub_mem_err_common()
2888 state = cpu_ectag_pa_to_subblk_state(totalsize, in cpu_ce_scrub_mem_err_common()
3879 int totalsize = cpunodes[CPU->cpu_id].ecache_size; in cpu_ecache_line_valid() local
3886 if (!cpu_ectag_line_invalid(totalsize, ecp->ec_tag) && in cpu_ecache_line_valid()
3906 int totalsize, ec_set_size; in cpu_matching_ecache_line() local
3924 totalsize = cpunodes[CPU->cpu_id].ecache_size; in cpu_matching_ecache_line()
3934 tagvalid = !cpu_ectag_line_invalid(totalsize, in cpu_matching_ecache_line()