Searched refs:idbuf (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/stand/common/
H A Dpnp.c174 static char idbuf[8]; local
177 idbuf[0] = '@' + ((data[0] & 0x7c) >> 2);
178 idbuf[1] = '@' + (((data[0] & 0x3) << 3) + ((data[1] & 0xe0) >> 5));
179 idbuf[2] = '@' + (data[1] & 0x1f);
180 idbuf[3] = hextoascii[(data[2] >> 4)];
181 idbuf[4] = hextoascii[(data[2] & 0xf)];
182 idbuf[5] = hextoascii[(data[3] >> 4)];
183 idbuf[6] = hextoascii[(data[3] & 0xf)];
184 idbuf[7] = 0;
185 return(idbuf);
[all...]
/freebsd-11-stable/usr.sbin/ngctl/
H A Dshow.c124 char idbuf[20]; local
130 snprintf(idbuf, sizeof(idbuf), "%08x", peer->id);
132 peer->type, idbuf, link->peerhook);
/freebsd-11-stable/usr.sbin/inetd/
H A Dbuiltins.c360 char idbuf[MAXLOGNAME] = ""; /* Big enough to hold uid in decimal. */ local
391 strlcpy(idbuf, optarg, sizeof(idbuf));
412 for (i = 0; i < sizeof(idbuf) - 1; i++) {
418 idbuf[i] = base36[rnd32 % 36];
421 idbuf[i] = '\0';
518 if (*idbuf == '\0')
565 if (*idbuf == '\0')
578 snprintf(idbuf, sizeof(idbuf), "
[all...]
/freebsd-11-stable/sys/isa/
H A Dpnp.c119 static char idbuf[8]; local
124 idbuf[0] = '@' + ((data[0] & 0x7c) >> 2);
125 idbuf[1] = '@' + (((data[0] & 0x3) << 3) + ((data[1] & 0xe0) >> 5));
126 idbuf[2] = '@' + (data[1] & 0x1f);
127 idbuf[3] = hextoascii[(data[2] >> 4)];
128 idbuf[4] = hextoascii[(data[2] & 0xf)];
129 idbuf[5] = hextoascii[(data[3] >> 4)];
130 idbuf[6] = hextoascii[(data[3] & 0xf)];
131 idbuf[7] = 0;
132 return(idbuf);
[all...]
/freebsd-11-stable/usr.sbin/kldxref/
H A Dkldxref.c143 static char idbuf[8]; local
148 idbuf[0] = '@' + ((data[0] & 0x7c) >> 2);
149 idbuf[1] = '@' + (((data[0] & 0x3) << 3) + ((data[1] & 0xe0) >> 5));
150 idbuf[2] = '@' + (data[1] & 0x1f);
151 idbuf[3] = hextoascii[(data[2] >> 4)];
152 idbuf[4] = hextoascii[(data[2] & 0xf)];
153 idbuf[5] = hextoascii[(data[3] >> 4)];
154 idbuf[6] = hextoascii[(data[3] & 0xf)];
155 idbuf[7] = 0;
156 return(idbuf);
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Dprdbg.c1030 char idbuf[20];
1032 sprintf (idbuf, "%%anon%u", id);
1033 if (! append_type (info, idbuf))
1213 char idbuf[20];
1215 sprintf (idbuf, "%%anon%u", id);
1216 if (! append_type (info, idbuf))
1578 char idbuf[20];
1608 sprintf (idbuf, "%%anon%u", id);
1609 tag = idbuf;
1616 sprintf (idbuf, " /* i
1025 char idbuf[20]; local
1208 char idbuf[20]; local
1573 char idbuf[20]; local
2000 char idbuf[20]; local
2103 char idbuf[20]; local
2393 char idbuf[20]; local
[all...]
/freebsd-11-stable/contrib/sendmail/src/
H A Dqueue.c5445 char idbuf[MAXQFNAME - 2]; local
5484 idbuf[0] = QueueIdChars[tm->tm_year % QIC_LEN];
5485 idbuf[1] = QueueIdChars[tm->tm_mon];
5486 idbuf[2] = QueueIdChars[tm->tm_mday];
5487 idbuf[3] = QueueIdChars[tm->tm_hour];
5488 idbuf[4] = QueueIdChars[tm->tm_min % QIC_LEN_R];
5489 idbuf[5] = QueueIdChars[tm->tm_sec % QIC_LEN_R];
5490 idbuf[6] = QueueIdChars[seq / QIC_LEN];
5491 idbuf[7] = QueueIdChars[seq % QIC_LEN];
5492 (void) sm_snprintf(&idbuf[
5752 static char idbuf[MAXQFNAME + 34]; local
[all...]

Completed in 102 milliseconds