Searched defs:ssz (Results 1 - 17 of 17) sorted by relevance

/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_rpc.c62 rpcprog_t prog, rpcvers_t vers, uint_t ssz, uint_t rsz, int force)
103 if ((xprt = svc_tli_create(fd, ncp, NULL, ssz, rsz)) == NULL) {
136 if ((xprt = svc_door_create(disp, prog, vers, ssz)) == NULL) {
61 fmd_rpc_svc_create_local(void (*disp)(struct svc_req *, SVCXPRT *), rpcprog_t prog, rpcvers_t vers, uint_t ssz, uint_t rsz, int force) argument
/illumos-gate/usr/src/cmd/mandoc/
H A Dmandoc.c468 size_t ssz; local
484 if ((ssz = strftime(p, 10 + 1, "%B ", tm)) == 0)
486 p += (int)ssz;
H A Dout.c283 size_t sz, psz, ssz, d; local
309 for (ssz = 0, i = 0; cp != &str[i]; i++) {
311 ssz += (*tbl->slen)(buf, tbl->arg);
313 d = ssz + psz;
H A Dtbl_term.c368 size_t sz, psz, ssz, d, padl; local
386 for (ssz = 0, i = 0; cp != &dp->string[i]; i++) {
388 ssz += term_strlen(tp, buf);
390 d = ssz + psz;
H A Dterm.c403 size_t ssz; local
433 ssz = strcspn(word, "\\ ");
435 ssz = strcspn(word, "\\");
436 encode(p, word, ssz);
437 word += (int)ssz;
457 cp = mchars_spec2str(seq, sz, &ssz);
459 encode(p, cp, ssz);
663 int ssz, skip, uc; local
685 esc = mandoc_escape(&cp, &seq, &ssz);
693 uc = mchars_num2uc(seq + 1, ssz
[all...]
H A Dread.c614 ssize_t ssz; local
666 ssz = curp->gzip ?
669 if (ssz == 0) {
673 if (ssz == -1)
675 off += (size_t)ssz;
H A Dmdoc_validate.c1174 size_t sz, ssz; local
1203 if (0 != (ssz = macro2len(nn->tok)))
1204 sz = ssz;
H A Deqn.c371 size_t ssz, dummy; local
404 ssz = 1;
406 ssz = strcspn(start + 1, " ^~\"{}\t") + 1;
407 next = start + (int)ssz;
H A Droff.c2945 size_t fsz, ssz; local
2956 fsz = ssz = 1;
2977 ssz = (size_t)(p - second);
2987 second, ssz, 0);
2996 r->xtab[(int)*first].p = mandoc_strndup(second, ssz);
2997 r->xtab[(int)*first].sz = ssz;
3347 size_t ssz, sz; local
3364 ssz = 0;
3369 res = mandoc_realloc(res, ssz + sz + 1);
3370 memcpy(res + ssz,
[all...]
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dclnt_door.c90 uint_t ssz; local
113 ssz = __rpc_default_door_buf_size;
115 ssz = RNDUP(sendsz);
139 cu->cu_sendsz = ssz;
H A Dclnt_dg.c143 uint_t ssz; local
175 ssz = __rpc_get_t_size((int)sendsz, tinfo.tsdu);
177 if ((ssz == 0) || (rsz == 0)) {
189 ssz = ((ssz + 3) / 4) * 4;
191 cu = malloc(sizeof (*cu) + ssz + rsz);
204 cu->cu_sendsz = ssz;
210 xdrmem_create(&(cu->cu_outxdrs), cu->cu_outbuf, ssz, XDR_ENCODE);
219 xdrmem_create(&(cu->cu_outxdrs), cu->cu_outbuf_start, ssz, XDR_ENCODE);
/illumos-gate/usr/src/uts/common/sys/scsi/impl/
H A Dmode.h231 ssz : 1, /* sector size. 1 == 256 bps, 0 == 512 bps */ member in struct:emulex_format_params
235 ssz : 1, /* sector size. 1 == 256 bps, 0 == 512 bps */ member in struct:emulex_format_params
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Dfilesys_rcm.c493 get_spec(char *line, char *spec, size_t ssz) argument
498 if (strlcpy(spec, line, ssz) >= ssz) {
/illumos-gate/usr/src/cmd/fwflash/plugins/transport/common/
H A Dtavor.c123 uint32_t pfia, sfia, psz, ssz; local
155 ssz = MLXSWAPBITS32(lsps->fis);
259 pchunks = ssz / manuf->sector_sz;
261 if ((ssz % manuf->sector_sz) != 0)
266 * really need (ssz bytes)
281 for (offset = 0; offset < ssz; offset += manuf->sector_sz) {
304 bzero(&raw_sfi[ssz], (pchunks * manuf->sector_sz) - ssz);
308 for (j = 0; j < ssz / 4; j++) {
313 /* only write out ssz byte
[all...]
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_internal.c823 ssize_t ssz; local
943 ssz = scf_value_get_as_string(load_val, loadbuf,
945 if (ssz < 0)
H A Dsvccfg_libscf.c512 ssize_t ssz; local
514 ssz = scf_snaplevel_get_instance_name(snpl, NULL, 0);
515 if (ssz >= 0) {
/illumos-gate/usr/src/lib/libtecla/common/
H A Dgetline.c8496 size_t ssz = strlen(string) + 1; local
8497 *sptr = (char *) malloc(ssz);
8503 strlcpy(*sptr, string, ssz);

Completed in 142 milliseconds