Lines Matching refs:temp

950   char *temp = xmalloc (strlen (string) + 1);
959 c = temp[temp_index++] = string[string_index++];
963 temp[temp_index - 1] = ' ';
970 temp[temp_index] = 0;
971 strcpy (string, temp);
972 free (temp);
980 int temp = search_forward (string, input_text_offset);
982 int tt = (temp < 0) ? input_text_length : temp + strlen (string);
990 if (temp < 0)
1011 input_text_offset = temp + strlen (string);
1206 char *temp;
1236 temp = xmalloc (2 + match_len);
1237 memcpy (temp, input_text + input_text_offset, match_len);
1238 temp[match_len] = 0;
1240 *string = temp;
1566 char *html_name, *directory_part, *basename_part, *temp;
1574 temp = strrchr (basename_part, '.');
1575 if (temp)
1576 *temp = 0;
1669 int temp = 0;
1671 while (temp != input_text_offset)
1672 if (input_text[temp++] == '\n')
1686 COMMAND_LINE_DEFINE *temp;
1688 for (temp = command_line_defines; temp; temp = temp->next)
1690 handle_variable_internal (temp->action, temp->define);
1691 free(temp->define);
2343 BRACE_ELEMENT *temp;
2353 temp = brace_stack->next;
2355 brace_stack = temp;
2413 BRACE_ELEMENT *temp;
2414 temp = brace_stack->next;
2416 brace_stack = temp;
2706 int temp = output_paragraph_offset;
2707 while (--temp > 0 && output_paragraph[temp] != '\n')
2711 if (output_paragraph[temp] == ' ')
2714 while (temp && whitespace (output_paragraph[temp - 1]))
2715 temp--;
2724 if (temp && output_paragraph[temp - 1] != '\n')
2725 output_paragraph[temp++] = '\n';
2732 int t1 = temp;
2746 if (t1 != temp)
2748 adjust_braces_following (temp, (- (t1 - temp)));
2749 memmove (&output_paragraph[temp],
2752 output_paragraph_offset -= (t1 - temp);
2759 int buffer_len = ((output_paragraph_offset - temp)
2766 adjust_braces_following (temp, current_indent);
2773 (char *) &output_paragraph[temp],
2784 memcpy ((char *) &output_paragraph[temp],
2790 while (temp < output_paragraph_offset)
2792 get_char_len (output_paragraph[temp++]);
2945 int temp = UNMETA (output_paragraph[i]);
2946 if (temp == ' ')
3096 char *temp;
3115 temp = xmalloc (temp_len + 1);
3116 memcpy (temp, (char *)output_paragraph, temp_len);
3121 memcpy ((char *)output_paragraph + i, temp, temp_len);
3122 free (temp);
3501 DEFINE *temp;
3503 for (temp = defines; temp; temp = temp->next)
3504 if (strcmp (name, temp->name) == 0)
3506 free (temp->value);
3507 temp->value = xstrdup (value);
3511 temp = xmalloc (sizeof (DEFINE));
3512 temp->next = defines;
3513 temp->name = xstrdup (name);
3514 temp->value = xstrdup (value);
3515 defines = temp;
3529 DEFINE *temp, *last;
3532 temp = defines;
3534 while (temp)
3536 if (strcmp (temp->name, name) == 0)
3539 last->next = temp->next;
3541 defines = temp->next;
3543 free (temp->name);
3544 free (temp->value);
3545 free (temp);
3548 last = temp;
3549 temp = temp->next;
3563 DEFINE *temp;
3565 for (temp = defines; temp; temp = temp->next)
3566 if (strcmp (temp->name, name) == 0)
3567 return temp->value;
3717 char *temp;
3721 temp = name;
3723 while (*temp && (delimiter || !whitespace (*temp)))
3726 if (*temp == '"' || *temp == '\'')
3728 if (*temp == delimiter)
3731 delimiter = *temp;
3734 temp++;
3737 if (*temp)
3740 *temp = 0;
3772 value = temp + 1;
3824 char *temp;
3828 temp = cname;
3830 while (*temp && !whitespace (*temp))
3831 temp++;
3832 *temp = 0;