Lines Matching refs:temp

172 int temp_stdout;		/* temp storage for stdout descriptor	*/
173 int temp_stderr; /* temp storage for stderr descriptor */
693 unsigned char *temp; /* temporary pointer */
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;
887 temp = 0;
891 temp += 2;
893 temp += tabshift(temp);
895 temp += 2;
897 temp++;
899 temp += 2;
901 temp += 5;
903 temp++;
906 scr_horz = temp;
1013 unsigned char *temp; /* temporary pointer to position in line */
1022 temp = ptr;
1032 d = len_char(*temp, abs_column);
1036 temp++;
1042 if (!isprint(*temp))
1044 column += len_char(*temp, abs_column);
1045 abs_column += out_char(text_win, *temp, abs_column);
1051 waddch(text_win, *temp);
1054 temp++;
1067 unsigned char *temp;
1085 temp = point;
1096 *extra= *temp;
1098 temp++;
1100 temp=point;
1101 *temp = '\0';
1102 temp = resiz_line((1 - temp_nod->line_length), curr_line, position);
1103 curr_line->line_length = 1 + temp - curr_line->line;
2159 int temp;
2171 temp = stat(tmp_file, &buf);
2173 if ((temp != -1) && (buf.st_mode != 0100000) && (buf.st_mode != 0))
2811 int temp;
2825 temp = 1;
2827 | copy d_word contents into temp space
2829 while (temp <= d_wrd_len)
2831 temp++;
2840 | temp space
2844 temp++;
2856 | now copy contents from temp space back to original line
2858 while (tposit < temp)
3349 int temp;
3440 temp = 1 + tolower(input) - 'a';
3444 temp = (2 + 'z' - 'a') + (input - '0');
3447 if (temp <= list_size)
3450 counter = temp;
4358 char *temp;
4361 temp = string;
4362 while (*temp != '\0')
4364 if (*temp == '\\')
4366 temp++;
4367 if (*temp == 'n')
4369 else if (*temp == 't')
4371 else if (*temp == 'b')
4373 else if (*temp == 'r')
4375 else if (*temp == 'f')
4377 else if ((*temp == 'e') || (*temp == 'E'))
4379 else if (*temp == '\\')
4381 else if (*temp == '\'')
4383 else if ((*temp >= '0') && (*temp <= '9'))
4386 while ((*temp >= '0') && (*temp <= '9'))
4388 Counter = (8 * Counter) + (*temp - '0');
4389 temp++;
4392 temp--;
4394 temp++;
4398 putchar(*temp);
4399 temp++;