Home
last modified time | relevance | path

Searched refs:esize (Results 1 – 11 of 11) sorted by relevance

/titanic_50/usr/src/lib/libkvm/common/
H A Dkvm_getcmd.c86 size_t asize, esize; in kvm_getcmd32() local
148 esize = eptrcount * sizeof (uintptr_t) + RoundUp(strpoolsz, uintptr_t); in kvm_getcmd32()
149 if (env && (envp = calloc(1, esize + sizeof (uintptr_t))) == NULL) { in kvm_getcmd32()
226 char *envp_null = (char *)envp + esize; in kvm_getcmd32()
235 last_str >= (char *)envp + esize) in kvm_getcmd32()
241 str >= (char *)envp + esize) { in kvm_getcmd32()
264 size_t esize; in kvm_getcmd() local
314 esize = (size_t)proc->p_usrstack - (size_t)u->u_envp; in kvm_getcmd()
315 if ((envp = malloc(esize + sizeof (uintptr_t))) == NULL) { in kvm_getcmd()
320 envp_null = (char *)envp + esize; in kvm_getcmd()
[all …]
/titanic_50/usr/src/cmd/backup/dump/
H A Ddumpmain.c807 esize = f_esize = o_esize = 0; in main()
893 esize = o_esize + f_esize; in main()
897 fetapes = (double)(esize + ntrec) / (double)tsize; in main()
907 fetapes = ((double)esize /* blocks */ in main()
911 (double)esize /* blocks */ in main()
924 fetapes = ((double)esize /* blocks */ in main()
928 (double)esize /* blocks */ in main()
944 esize = o_esize + f_esize + etapes + ntrec; in main()
953 if (esize > (INT_MAX - FUDGE_FACTOR)) { /* esize is too big */ in main()
956 ((esize + (INT_MAX - FUDGE_FACTOR) - 1)/ in main()
[all …]
H A Ddumpoptr.c328 * ((double)esize / blkswritten - 1.0);
330 msg(msgp, (blkswritten*100.0)/esize,
H A Ddump.h136 u_offset_t esize; /* estimated tape size, blocks */ variable
/titanic_50/usr/src/cmd/sgs/rtld/common/
H A Dsetup.c204 size_t eaddr, esize; in setup() local
321 esize = eaddr % syspagsz; in setup()
322 if (esize) { in setup()
323 esize = syspagsz - esize; in setup()
324 addfree((void *)eaddr, esize); in setup()
/titanic_50/usr/src/uts/sparc/os/
H A Dbootops.c596 uint32_t esize; in bop_free_elf() local
601 bop_getprop("elfheader-length", (caddr_t)&esize) == -1) in bop_free_elf()
603 prom_free((caddr_t)(uintptr_t)eadr, roundup(esize, PAGESIZE)); in bop_free_elf()
/titanic_50/usr/src/uts/common/fs/ufs/
H A Dlufs_debug.c147 tp->esize = size; in top_begin_debug()
163 (tp->esize == size)); in top_end_debug()
165 ASSERT(((ul->un_debug & MT_SIZE) == 0) || (tp->rsize <= tp->esize)); in top_end_debug()
168 mtm->mtm_tops->mtm_top_size_etot[topid] += tp->esize; in top_end_debug()
/titanic_50/usr/src/uts/common/io/cxgbe/t4nex/
H A Dt4_sge.c76 int8_t pktc_idx, int qsize, uint8_t esize);
1048 qsize, uint8_t esize) in init_iq() argument
1062 iq->esize = max(esize, 16); /* See FW_IQ_CMD/iqesize */ in init_iq()
1107 len = iq->qsize * iq->esize; in alloc_iq_fl()
1138 V_FW_IQ_CMD_IQESIZE(ilog2(iq->esize) - 4)); in alloc_iq_fl()
1899 (uintptr_t)iq->desc, iq->esize, DDI_DMA_SYNC_FORKERNEL); in is_new_response()
1902 (iq->esize - sizeof (struct rsp_ctrl))); in is_new_response()
1910 iq->cdesc = (void *) ((uintptr_t)iq->cdesc + iq->esize); in iq_next()
H A Dadapter.h179 uint8_t esize; /* size (bytes) of each entry in the queue */ member
/titanic_50/usr/src/uts/common/sys/fs/
H A Dufs_log.h547 ulong_t esize; /* estimated trans size */ member
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/netstat/
H A Dnetstat.c4680 gather_attrs(const mib_item_t *item, int group, int mib_id, int esize) in gather_attrs() argument
4688 transport_count += iptr->length / esize; in gather_attrs()