Searched refs:temp (Results 251 - 275 of 744) sorted by path

<<11121314151617181920>>

/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.sh166 char temp[TCAP_LEN + 1];
170 temp[limit++] = *string++;
174 temp[limit] = '\0';
175 return info_hash(temp);
H A Daccess.c56 static char *temp; local
59 temp = strdup(result);
60 result = temp;
H A Dcaptoinfo.c141 static char temp[2]; local
142 temp[0] = (char) c;
143 return save_string(s, temp);
528 char temp[80]; local
536 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
539 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
542 bufptr = save_string(bufptr, temp);
H A Ddb_iterator.c81 char temp[PATH_MAX]; local
82 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "%s%s", name, DBM_SUFFIX);
83 if (stat(temp, sb) == 0 && S_ISREG(sb->st_mode)) {
H A Dparse_entry.c68 static struct name_table_entry temp; local
174 temp.nte_name = tp->ext_Names[offset];
175 temp.nte_type = token_type;
176 temp.nte_index = (short) tindex;
177 temp.nte_link = -1;
179 return &temp;
563 char temp[3]; local
564 temp[0] = (char) code;
565 temp[1] = (char) src;
566 temp[
[all...]
H A Dread_termcap.c818 char temp[PBUFSIZ]; local
819 temp[0] = 0;
822 && strlen(home) < sizeof(temp) - 10) { /* setup path */
823 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
827 _nc_STRCAT(temp, ".termcap", sizeof(temp));
828 _nc_safe_strcat(&desc, temp);
911 char temp[PATH_MAX]; local
913 _nc_str_init(&desc, temp, sizeo
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/trace/
H A Dlib_traceatr.c131 char temp[80]; local
151 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
157 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
163 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
167 result = _nc_trace_bufcat(bufnum, temp);
H A Dvisbuf.c210 char temp[CCHARW_MAX + 80]; local
211 int j = wctomb(temp, c), k;
213 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
215 j = (int) strlen(temp);
218 tp = VisChar(tp, UChar(temp[k]), WideLen(len));
333 char temp[80]; local
334 VisChar(temp, UChar(PUTC_buf[k]), sizeof(temp));
335 (void) _nc_trace_bufcat(bufnum, temp);
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tty/
H A Dtty_update.c295 chtype temp = UChar(SP_PARM->_acs_map[j]); local
297 if (temp != 0) {
298 SetChar(my_ch, temp, AttrOf(attr));
/freebsd-11-stable/contrib/ncurses/ncurses/widechar/
H A Dcharable.c54 char temp[MB_LEN_MAX]; local
55 result = wctomb(temp, ch);
56 if (strlen(temp) == 1)
57 result = UChar(temp[0]);
71 char temp[2]; local
72 temp[0] = ch;
73 temp[1] = '\0';
74 if (mbtowc(&convert, temp, 1) >= 0)
H A Dlib_unget_wch.c54 wchar_t temp[2]; local
55 const wchar_t *tempp = temp;
56 temp[0] = source;
57 temp[1] = 0;
H A Dwidechars.c96 wchar_t temp; local
99 count = _nc_mbtowc(&temp, s, n);
103 &temp,
/freebsd-11-stable/contrib/ncurses/panel/
H A Dpanel.c61 char temp[32]; local
64 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "ptr:%p", ptr);
66 _nc_STRCPY(temp, "<null>", sizeof(temp));
67 return _nc_visbuf(temp);
/freebsd-11-stable/contrib/ncurses/progs/
H A Dinfocmp.c1423 char *temp = 0; local
1424 long value = strtol(optarg, &temp, 0);
1426 if (temp == 0 || temp == optarg || *temp != 0) {
H A Dtset.c212 char temp[BUFSIZ]; local
215 if ((int) len < (int) sizeof(temp) - 12) {
216 _nc_STRCPY(temp, _nc_progname, sizeof(temp));
217 _nc_STRCAT(temp, ": ", sizeof(temp));
219 _nc_STRCPY(temp, "tset: ", sizeof(temp));
221 perror(strncat(temp, msg, sizeof(temp)
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y554 var_t *temp;
560 if ((temp = realloc(vars, sizeof(*temp) * (nvars + 1))) == NULL) {
566 vars = temp;
581 args_t *temp, cur;
622 temp = realloc(command.args, sizeof(*temp) * (command.nargs + 1));
623 if (temp == NULL)
625 command.args = temp;
636 returns_t *temp, cu
[all...]
/freebsd-11-stable/contrib/netbsd-tests/net/arp/
H A Dt_arp.sh247 # Test temp option
249 atf_check -s exit:0 -o ignore rump.arp -s 10.0.1.10 b2:a0:20:00:00:10 temp
336 atf_check -s exit:0 -o ignore rump.arp -s 10.0.1.10 b2:a0:20:00:00:10 temp
340 # Can overwrite a temp cache
/freebsd-11-stable/contrib/netbsd-tests/net/ndp/
H A Dt_ndp.sh212 atf_check -s exit:0 -o ignore rump.ndp -s fc00::10 b2:a0:20:00:00:10 temp
213 rump.ndp -s fc00::10 b2:a0:20:00:00:10 temp
242 # Test temp option (XXX it doesn't work; expire time isn't set)
243 #atf_check -s exit:0 -o ignore rump.ndp -s fc00::10 b2:a0:20:00:00:10 temp
246 # Cannot overwrite a temp cache
/freebsd-11-stable/contrib/ntp/lib/isc/alpha/include/isc/
H A Datomic.h121 isc_int32_t temp, prev; local
132 : "=&r"(temp), "+m"(*p), "=&r"(prev)
141 isc_int32_t temp; local
151 : "=&r"(temp), "+m"(*p)
158 isc_int32_t temp, prev; local
172 : "=&r"(temp), "+m"(*p), "=&r"(prev)
/freebsd-11-stable/contrib/ntp/lib/isc/sparc64/include/isc/
H A Datomic.h111 isc_int32_t temp = val; local
115 : "+r"(temp)
118 return (temp);
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dtime.c86 FILETIME temp; local
92 SystemTimeToFileTime(&epoch, &temp);
230 FILETIME temp; local
234 SystemTimeToFileTime(&epoch, &temp);
238 i2.LowPart = temp.dwLowDateTime;
239 i2.HighPart = temp.dwHighDateTime;
/freebsd-11-stable/contrib/ntp/libntp/
H A Dicom.c80 int temp; local
85 temp = 4;
87 temp = 5;
88 doublefreq(freq * 1e6, &cmd[6], temp);
89 rc = write(fd, cmd, temp + 7);
93 } else if (rc != temp + 7) {
95 rc, temp+7);
H A Drefidsmear.c20 l_fp temp; local
26 temp.l_uf = (r << 10); /* 22 fractional bits */
28 temp.l_ui = (r >> 22) & 0x3;
29 temp.l_ui |= ~(temp.l_ui & 2) + 1;
31 return temp;
38 uint32_t temp; local
50 temp = (num.l_ui << 22) | (num.l_uf >> 10);
53 temp |= UINT32_C(0xFE000000);
55 // printf("%03d %08x: ", (temp >> 2
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_prio_q.c56 node *temp = NULL; local
60 temp = my_queue->front;
62 free(temp);
H A Drefclock_arbiter.c241 int temp; local
243 char tbuf[BMAX]; /* temp buffer */
251 temp = refclock_gtlin(rbufp, tbuf, sizeof(tbuf), &trtmp);
267 if (temp == 0)
272 if (temp < 3)
339 if (up->tcswitch <= 1 || temp < LENARB)

Completed in 286 milliseconds

<<11121314151617181920>>