Searched defs:tmp (Results 426 - 450 of 1069) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dsmb_autohome.c399 char *tmp; local
404 if ((tmp = strpbrk(key, " \t")) == NULL)
407 *tmp = '\0';
421 if ((tmp = strdup(ampersand + 1)) == NULL)
426 (void) strlcat(ampersand, tmp, bufsize);
427 free(tmp);
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_doorclnt.c87 char tmp[MAXNAMELEN]; local
94 (void) strlcpy(tmp, name, MAXNAMELEN);
95 smb_name_parse(tmp, &np, &dp);
/illumos-gate/usr/src/lib/smbsrv/libsmbns/common/
H A Dsmbns_ksetpwd.c585 char *tmp; local
587 (void) asprintf(&tmp, "%s@%s", buf,
590 buf = tmp;
/illumos-gate/usr/src/cmd/fs.d/nfs/mountd/
H A Drmtab.c355 char *tmp; local
373 tmp = strchr(s, ']');
374 if (tmp) {
375 *tmp = '\0';
378 s = ++tmp;
380 *tmp = ']';
/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Ddirectory_provider_ad.c436 char *tmp; local
437 (void) asprintf(&tmp, "%.*s@%s",
440 if (tmp == NULL)
442 const char *ctmp = tmp;
444 free(tmp);
/illumos-gate/usr/src/common/smbsrv/
H A Dsmb_msgbuf.c160 smb_msgbuf_mlist_t *tmp; local
163 tmp = item;
166 free(tmp);
168 kmem_free(tmp, tmp->size);
/illumos-gate/usr/src/uts/common/os/
H A Dmove.c126 uint8_t tmp; local
149 if (fuword8(p, &tmp))
153 if (kcopy(p, &tmp, 1))
168 if (fuword8(p, &tmp))
172 if (kcopy(p, &tmp, 1))
H A Dmsacct.c802 hrtime_t tmp; local
809 tmp = ms->ms_term - ms->ms_start;
810 scalehrtime(&tmp);
811 p->p_mlreal += tmp;
813 tmp = ms->ms_acct[i];
814 scalehrtime(&tmp);
815 p->p_acct[i] += tmp;
H A Ddtrace_subr.c108 dtrace_hrestime_t tmp; local
111 tmp.dthr_hrestime = hrestime;
112 tmp.dthr_adj = hrestime_adj;
113 tmp.dthr_hrtime = dtrace_gethrtime();
117 dtrace_hrestime[i].dthr_hrestime = tmp.dthr_hrestime;
118 dtrace_hrestime[i].dthr_adj = tmp.dthr_adj;
119 dtrace_hrestime[i].dthr_hrtime = tmp.dthr_hrtime;
/illumos-gate/usr/src/cmd/dcs/sparc/sun4u/
H A Drsrc_info.c620 ri_ap_t *tmp = NULL; local
631 if ((tmp = calloc(1, sizeof (*tmp))) == NULL) {
644 if (ap_unpack(buf, size, tmp) != 0)
648 prev = aplist = tmp;
650 prev->next = tmp;
651 prev = tmp;
663 while ((tmp = aplist) != NULL) {
665 ri_ap_free(tmp);
679 ri_dev_t *tmp local
736 ri_client_t *tmp = NULL; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A Danonymous.c42 mDNSu8 *tmp, *nxt; local
56 tmp = (mDNSu8 *)&nsec3->salt;
57 *tmp++ = ptr[0];
58 *tmp++ = ptr[1];
59 *tmp++ = ptr[2];
60 *tmp++ = ptr[3];
63 *tmp++ = SHA1_HASH_LENGTH; // hash length
64 nxt = tmp;
65 tmp += SHA1_HASH_LENGTH;
66 *tmp
[all...]
/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_gld.c481 uint64_t tmp = 0; local
502 tmp = ixgbe->link_speed * 1000000ull;
503 bcopy(&tmp, pr_val, sizeof (tmp));
/illumos-gate/usr/src/boot/lib/libstand/
H A Dprintf.c223 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
307 for (tmp = 0; *p;) {
310 PCHAR(tmp ? ',' : '<');
313 tmp = 1;
318 if (tmp)
474 tmp = 0;
477 tmp++;
479 tmp += 2;
482 tmp++;
485 dwidth = width - tmp;
[all...]
H A Dqdivrem.c84 union uu tmp; local
98 tmp.ul[H] = tmp.ul[L] = 1 / zero;
101 return (tmp.q);
125 tmp.uq = uq;
127 u[1] = HHALF(tmp.ul[H]);
128 u[2] = LHALF(tmp.ul[H]);
129 u[3] = HHALF(tmp.ul[L]);
130 u[4] = LHALF(tmp.ul[L]);
131 tmp
[all...]
/illumos-gate/usr/src/boot/sys/boot/common/
H A Ddisk.c436 struct dentry *entry, *tmp; local
438 STAILQ_FOREACH_SAFE(entry, &opened_disks, entry, tmp) {
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dmultiboot.c276 char *tmp; local
280 tmp = strdup(getenv("console"));
281 os_console = strsep(&tmp, ", ");
299 tmp = strstr(cl, "console");
300 if (tmp == NULL) {
307 tmp = malloc(len);
308 if (tmp == NULL) {
313 sprintf(tmp,
317 sprintf(tmp, "%s -B console=%s",
321 tmp
[all...]
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c318 zio_cksum_t tmp; local
320 zio_checksum_SHA512_native(buf, size, ctx_template, &tmp);
321 zcp->zc_word[0] = BSWAP_64(tmp.zc_word[0]);
322 zcp->zc_word[1] = BSWAP_64(tmp.zc_word[1]);
323 zcp->zc_word[2] = BSWAP_64(tmp.zc_word[2]);
324 zcp->zc_word[3] = BSWAP_64(tmp.zc_word[3]);
/illumos-gate/usr/src/cmd/iconv/
H A Diconv_list.c71 codeset_t tmp, *cs; local
74 (void) memset(&tmp, 0, sizeof (tmp));
75 tmp.cs_name = key;
77 cs = avl_find(&cs_avl, &tmp, &where);
/illumos-gate/usr/src/uts/intel/io/pci/
H A Dpci_resource.c500 struct memlist *tmp = *res; local
501 *res = tmp->ml_next;
502 memlist_free(tmp);
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_set_drv.c315 mdsetname_t *tmp; local
317 if (meta_is_drive_in_anyset(p->drivenamep, &tmp, FALSE,
323 if (tmp != NULL) {
325 tmp->setname, p->drivenamep->cname, sp->setname);
/illumos-gate/usr/src/lib/nsswitch/ad/common/
H A Dgetpwnam.c177 ulong_t tmp; local
218 tmp = strtoul(ptr, &end, 10);
219 if (end == ptr || tmp > UINT32_MAX)
221 urid = (uint32_t)tmp;
241 tmp = strtoul(pgid_v[0], &end, 10);
242 if (end == pgid_v[0] || tmp > UINT32_MAX)
244 grid = (uint32_t)tmp;
/illumos-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelUtil.c629 CK_ATTRIBUTE tmp; local
658 tmp.type = CKA_EC_PARAMS;
659 tmp.pValue = NULL;
660 rv = kernel_get_attribute(object_p, &tmp);
665 tmp.pValue = malloc(tmp.ulValueLen);
666 if (tmp.pValue == NULL) {
671 rv = kernel_get_attribute(object_p, &tmp);
673 free(tmp.pValue);
677 cur_attr->oa_type = tmp
701 CK_ATTRIBUTE tmp; local
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dloadsave.c866 CK_BYTE tmp[MAXPATHLEN], fname[MAXPATHLEN], iname[MAXPATHLEN]; local
888 (void) fgets((char *)tmp, 50, fp1);
892 tmp[strlen((char *)tmp) - 1] = 0;
897 (void) strncat((char *)fname, (const char *)tmp,
947 CK_BYTE tmp[MAXPATHLEN], fname[MAXPATHLEN], iname[MAXPATHLEN]; local
969 (void) fgets((char *)tmp, sizeof (tmp), fp1);
973 tmp[strlen((char *)tmp)
[all...]
/illumos-gate/usr/src/lib/print/libpapi-ipp/common/
H A Djob.c49 job_t *tmp = (job_t *)job; local
51 if (tmp != NULL) {
52 if (tmp->attributes != NULL)
53 papiAttributeListFree(tmp->attributes);
54 free(tmp);
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_node.c669 tnode_t *tmp; local
677 for (tmp = topo_child_first(node); tmp != NULL;
678 tmp = topo_child_next(node, tmp)) {
680 topo_node_hold(tmp);
684 if (topo_node_flags(tmp) != TOPO_NODE_FACILITY) {
685 topo_node_rele(tmp);
693 if (topo_node_resource(tmp, &rsrc, errp) != 0) {
698 topo_node_rele(tmp);
[all...]

Completed in 159 milliseconds

<<11121314151617181920>>