Searched refs:temp (Results 51 - 75 of 744) sorted by path

1234567891011>>

/freebsd-11-stable/contrib/binutils/libiberty/
H A Dregex.c703 int temp = SIGN_EXTEND_CHAR (*(source + 1));
705 *dest += temp << 8;
H A Dsplay-tree.c80 splay_tree_node temp; local
100 temp = active;
101 active = (splay_tree_node)(temp->key);
102 (*sp->deallocate) ((char*) temp, sp->allocate_data);
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dconfigure2882 eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dmain.c2632 struct usm_user *uuser, *temp, *prev; local
2657 SLIST_FOREACH(temp, &usm_userlist, up) {
2658 if ((cmp = usm_compare_user(uuser, temp)) <= 0)
2660 prev = temp;
2663 if (temp == NULL || cmp < 0)
2666 SLIST_INSERT_AFTER(temp, uuser, up);
2743 struct vacm_user *user, *temp, *prev; local
2765 SLIST_FOREACH(temp, &vacm_userlist, vvu) {
2766 if ((cmp = vacm_compare_user(user, temp)) <= 0)
2768 prev = temp;
2898 struct vacm_access *acl, *temp; local
2991 struct vacm_view *view, *temp, *prev; local
3057 struct vacm_context *ctx, *temp, *prev; local
3104 struct vacm_context *ctx, *temp; local
[all...]
/freebsd-11-stable/contrib/byacc/
H A Dconfigure2079 eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
H A Dmain.c65 FILE *action_file; /* a temp file, used to save actions associated */
72 FILE *text_file; /* a temp file, used to save text until all */
74 FILE *union_file; /* a temp file, used to save the union */
525 my_mkstemp(char *temp) argument
536 if ((fname = strrchr(temp, '/')) != 0)
538 dname = strdup(temp);
539 dname[++fname - temp] = '\0';
544 fname = temp;
549 strcpy(temp, name);
H A Dmkpar.c76 action *actions, *temp; local
93 temp = NEW(action);
94 temp->next = actions;
95 temp->symbol = symbol;
96 temp->number = k;
97 temp->prec = symbol_prec[symbol];
98 temp->action_code = SHIFT;
99 temp->assoc = symbol_assoc[symbol];
100 actions = temp;
135 action *temp, *pre local
[all...]
H A Dreader.c567 struct mstring *temp = msnew(); local
577 mputc(temp, c);
581 return msdone(temp);
588 mputc(temp, c);
602 struct mstring *temp = msnew(); local
608 mputc(temp, '*');
611 mputc(temp, c);
613 mputc(temp, ' ');
615 mputc(temp, '*');
616 mputc(temp, '/');
[all...]
/freebsd-11-stable/contrib/byacc/test/
H A Drun_test.sh72 tmpfile=temp$$
/freebsd-11-stable/contrib/dialog/
H A Dbuildlist.c847 int temp = at_top; local
848 if ((temp -= all.use_height) < 0)
849 temp = 0;
850 i = row2index(&all, temp, which);
H A Dbuttons.c149 const char *temp = (label + first); local
150 check = string_to_char(&temp);
196 const char *temp = (label + first); local
197 check = string_to_char(&temp);
H A Dconfigure2155 eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
H A Ddialog.c557 char temp[80]; local
563 sprintf(temp, format, group, have);
564 Usage(temp);
1148 char temp[80]; local
1149 sprintf(temp, "Expected a string-parameter for %.20s", argv[*num]);
1150 Usage(temp);
1171 char temp[80]; local
1172 sprintf(temp, "Expected a numeric-parameter for %.20s", argv[*num]);
1173 Usage(temp);
1208 char temp[8 local
1697 char temp[256]; local
[all...]
H A Dheaders-sh.in150 TMPTMP=$TMPDIR/${SHOW}-temp$$
H A Dinputstr.c324 wchar_t *temp = dlg_calloc(wchar_t, len + 1); local
326 if (temp != 0) {
329 code = mbsrtowcs(temp, &src, (size_t) part, &state);
330 cache->i_len = ((int) code >= 0) ? wcslen(temp) : 0;
332 free(temp);
420 wchar_t temp[2]; local
428 memset(temp, 0, sizeof(temp));
429 check = mbrtowc(temp,
436 result = wcwidth(temp[
[all...]
H A Dmixedgauge.c93 char *temp = dlg_malloc(char, need); local
94 *freeMe = temp;
95 sprintf(temp, "%3s%%", given);
96 result = temp;
H A Drangebox.c67 char temp[80]; local
68 sprintf(temp, "%d", value);
69 return (int) strlen(temp);
H A Dtextbox.c578 bool temp, temp1; local
608 temp = obj->begin_reached;
636 obj->begin_reached = temp;
H A Dui_getc.c307 char temp[80]; local
308 sprintf(temp, "%d", last_getc);
309 dlg_add_string(temp);
H A Dutil.c1705 char *temp; local
1713 value = strtol(name, &temp, 0);
1714 if (temp != 0 && temp != name && *temp == '\0') {
2502 char temp[2]; local
2509 temp[1] = '\0';
2512 temp[0] = *string++;
2513 if (strchr(my_quote, *temp) || strchr(must_fix, *temp))
[all...]
/freebsd-11-stable/contrib/dma/
H A Dcrypto.c261 char *temp; local
265 temp = calloc(BUF_SIZE, 1);
276 free(temp);
281 base64_decode(buffer + 4, temp);
282 hmac_md5((unsigned char *)temp, strlen(temp),
284 free(temp);
296 len = base64_encode(buffer, strlen(buffer), &temp);
303 send_remote_command(fd, "%s", temp);
304 free(temp);
[all...]
H A Dnet.c252 char *temp; local
277 len = base64_encode(login, strlen(login), &temp);
284 send_remote_command(fd, "%s", temp);
285 free(temp);
293 len = base64_encode(password, strlen(password), &temp);
297 send_remote_command(fd, "%s", temp);
298 free(temp);
537 /* temp failure */
/freebsd-11-stable/contrib/ee/
H A Dee.c172 int temp_stdout; /* temp storage for stdout descriptor */
173 int temp_stderr; /* temp storage for stderr descriptor */
693 unsigned char *temp; /* temporary pointer */ local
709 temp = point;
714 temp++;
716 temp++; /* increase length of line by one */
717 while (point < temp)
719 temp2=temp - 1;
720 *temp= *temp2; /* shift characters over by one */
721 temp
883 int temp; local
1013 unsigned char *temp; /* temporary pointer to position in line */ local
1067 unsigned char *temp; local
2159 int temp; local
2811 int temp; local
3349 int temp; local
4358 char *temp; local
[all...]
H A Dnew_curse.c1045 int temp; local
1051 temp = Low_byte;
1053 High_byte = temp;
1534 int p1, p2, temp; local
1592 temp = p1;
1594 p2 = temp;
1647 int temp; local
1652 temp = Temp_Stack[--place];
1653 printf("%d", temp);
1657 temp
1835 int temp; local
2091 struct _line *temp; local
2231 char temp; local
2261 char temp; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A DFREEBSD-libiberty6 choose-temp.c \

Completed in 398 milliseconds

1234567891011>>