Searched refs:temp (Results 1 - 25 of 444) sorted by relevance

1234567891011>>

/haiku-fatelf/src/system/libroot/posix/glibc/arch/x86_64/
H A Dfesetenv.c27 fenv_t temp; local
34 "stmxcsr %1" : "=m" (*&temp), "=m" (*&temp.__mxcsr));
38 temp.__control_word |= FE_ALL_EXCEPT;
39 temp.__control_word &= ~FE_TOWARDZERO;
40 temp.__status_word &= ~FE_ALL_EXCEPT;
41 temp.__eip = 0;
42 temp.__cs_selector = 0;
43 temp.__opcode = 0;
44 temp
[all...]
/haiku-fatelf/src/add-ons/translators/icns/openjpeg/
H A Dfix.h57 int64 temp = (int64) a * (int64) b ; local
58 temp += temp & 4096;
59 return (int) (temp >> 13) ;
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dhome_terminfo.c52 static char *temp = 0; local
55 if (temp == 0) {
58 temp = typeMalloc(char, my_length);
59 if (temp == 0)
61 (void) sprintf(temp, PRIVATE_INFO, home);
64 result = temp;
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dxmalloc.c59 PTR_T temp; local
61 temp = malloc (bytes);
62 if (temp == 0)
64 return (temp);
72 PTR_T temp; local
74 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
76 if (temp == 0)
78 return (temp);
/haiku-fatelf/src/bin/gdb/readline/
H A Dxmalloc.c58 PTR_T temp; local
60 temp = malloc (bytes);
61 if (temp == 0)
63 return (temp);
71 PTR_T temp; local
73 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
75 if (temp == 0)
77 return (temp);
/haiku-fatelf/src/bin/bash/lib/readline/examples/
H A Drltest.c51 char *temp, *prompt; local
54 temp = (char *)NULL;
60 temp = readline (prompt);
63 if (!temp)
67 if (*temp)
69 fprintf (stderr, "%s\r\n", temp);
70 add_history (temp);
74 if (strcmp (temp, "quit") == 0)
77 if (strcmp (temp, "list") == 0)
89 free (temp);
[all...]
/haiku-fatelf/src/bin/gdb/readline/examples/
H A Drltest.c46 char *temp, *prompt; local
49 temp = (char *)NULL;
55 temp = readline (prompt);
58 if (!temp)
62 if (*temp)
64 fprintf (stderr, "%s\r\n", temp);
65 add_history (temp);
69 if (strcmp (temp, "quit") == 0)
72 if (strcmp (temp, "list") == 0)
84 free (temp);
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/stdlib/
H A Derand48_r.c31 union ieee754_double temp; local
40 temp.ieee.negative = 0;
41 temp.ieee.exponent = IEEE754_DOUBLE_BIAS;
42 temp.ieee.mantissa0 = (xsubi[2] << 4) | (xsubi[1] >> 12);
43 temp.ieee.mantissa1 = ((xsubi[1] & 0xfff) << 20) | (xsubi[0] << 4);
46 *result = temp.d - 1.0;
/haiku-fatelf/src/libs/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.c53 wchar_t temp[2]; local
54 const wchar_t *tempp = temp;
55 temp[0] = source;
56 temp[1] = 0;
/haiku-fatelf/src/system/libroot/posix/glibc/arch/m68k/
H A Dfesetenv.c26 fenv_t temp; local
32 __asm__ ("fmovem%.l %/fpcr/%/fpsr/%/fpiar,%0" : "=m" (*&temp));
34 temp.__status_register &= ~FE_ALL_EXCEPT;
35 temp.__control_register &= ~((FE_ALL_EXCEPT << 6) | FE_UPWARD);
39 temp.__control_register |= FE_ALL_EXCEPT << 6;
42 temp.__control_register |= (envp->__control_register
44 temp.__status_register |= envp->__status_register & FE_ALL_EXCEPT;
47 __asm__ __volatile__ ("fmovem%.l %0,%/fpcr/%/fpsr/%/fpiar" : : "m" (*&temp));
/haiku-fatelf/src/system/libroot/posix/glibc/arch/x86/
H A Dfraiseexcpt.c55 fenv_t temp; local
59 __asm__ __volatile__ ("fnstenv %0" : "=m" (*&temp));
62 temp.__status_word |= FE_OVERFLOW;
65 __asm__ __volatile__ ("fldenv %0" : : "m" (*&temp));
76 fenv_t temp; local
80 __asm__ __volatile__ ("fnstenv %0" : "=m" (*&temp));
83 temp.__status_word |= FE_UNDERFLOW;
86 __asm__ __volatile__ ("fldenv %0" : : "m" (*&temp));
97 fenv_t temp; local
101 __asm__ __volatile__ ("fnstenv %0" : "=m" (*&temp));
[all...]
/haiku-fatelf/src/bin/bash/
H A Dmake_cmd.c82 WORD_DESC *temp; local
84 ocache_alloc (wdcache, WORD_DESC, temp);
85 temp->flags = 0;
86 temp->word = 0;
87 return temp;
94 WORD_DESC *temp; local
96 temp = alloc_word_desc ();
99 temp->word = savestring (string);
102 temp->word = (char *)xmalloc (1);
103 temp
146 WORD_DESC *temp; local
169 WORD_LIST *temp; local
183 COMMAND *temp; local
198 CONNECTION *temp; local
215 FOR_COM *temp; local
279 ARITH_FOR_COM *temp; local
351 GROUP_COM *temp; local
364 CASE_COM *temp; local
379 PATTERN_LIST *temp; local
393 IF_COM *temp; local
408 WHILE_COM *temp; local
437 ARITH_COM *temp; local
464 COND_COM *temp; local
504 SIMPLE_COM *temp; local
673 REDIRECT *temp; local
759 FUNCTION_DEF *temp; local
791 SUBSHELL_COM *temp; local
804 COPROC_COM *temp; local
[all...]
H A Dxmalloc.c84 PTR_T temp; local
86 temp = malloc (bytes);
88 if (temp == 0)
98 return (temp);
106 PTR_T temp; local
108 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
110 if (temp == 0)
120 return (temp);
142 PTR_T temp; local
144 temp
166 PTR_T temp; local
[all...]
H A Dlist.c121 register GENERIC_LIST *prev, *temp; local
123 for (prev = (GENERIC_LIST *)NULL, temp = *list; temp; prev = temp, temp = temp->next)
125 if ((*comparer) (temp, arg))
128 prev->next = temp->next;
130 *list = temp->next;
131 return (temp);
[all...]
/haiku-fatelf/src/bin/sharutils/src/
H A Dmailshar36 temp=/usr/tmp/$$.shar
69 find $* -type f -print 2> /dev/null > $temp
75 done < $temp
76 rm $temp
81 $shar $mode -P -L$size -o$temp -c -F $* \
82 && $mail_files $trace $dest shar "$subject" $temp* \
83 && rm ${temp}* \
86 rm -f ${temp}*
H A Dmailshar.in36 temp=/usr/tmp/$$.shar
69 find $* -type f -print 2> /dev/null > $temp
75 done < $temp
76 rm $temp
81 $shar $mode -P -L$size -o$temp -c -F $* \
82 && $mail_files $trace $dest shar "$subject" $temp* \
83 && rm ${temp}* \
86 rm -f ${temp}*
/haiku-fatelf/src/bin/gawk/intl/
H A DMakefile274 temp=$(DESTDIR)$(libdir)/t-charset.alias; \
278 sed -f ref-add.sed $$orig > $$temp; \
279 $(INSTALL_DATA) $$temp $$dest; \
280 rm -f $$temp; \
284 sed -f ref-add.sed $$orig > $$temp; \
285 $(INSTALL_DATA) $$temp $$dest; \
286 rm -f $$temp; \
293 temp=$(DESTDIR)$(localedir)/t-locale.alias; \
295 sed -f ref-add.sed $$orig > $$temp; \
296 $(INSTALL_DATA) $$temp
[all...]
/haiku-fatelf/src/bin/bc/bc/
H A Dstorage.c226 fstack_rec *temp; local
231 temp = fn_stack;
232 fn_stack = temp->s_next;
233 retval = temp->s_val;
234 free (temp);
251 fstack_rec *temp; local
253 temp = (fstack_rec *) bc_malloc (sizeof (fstack_rec));
254 temp->s_next = fn_stack;
255 temp->s_val = val;
256 fn_stack = temp;
265 estack_rec *temp; local
283 estack_rec *temp; local
298 estack_rec *temp; local
315 estack_rec *temp; local
367 bc_array_node *temp; local
453 long temp; local
[all...]
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dpex-win32.c75 char *temp, *newtemp; local
77 temp = argvec[i];
78 len = strlen (temp);
81 if (temp[j] == '"')
84 strncpy (newtemp, temp, j);
86 strncpy (&newtemp [j+1], &temp [j], len-j);
88 temp = newtemp;
94 argvec[i] = temp;
102 char *temp; local
124 temp
[all...]
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dstrtrans.c52 int c, temp; local
98 temp = 2 + ((flags & 1) && (c == '0'));
99 for (c -= '0'; ISOCTAL (*s) && temp--; s++)
110 for (temp = 2, c = 0; ISXDIGIT ((unsigned char)*s) && temp--; s++)
124 else if (temp == 2)
262 char *temp, *t; local
265 temp = (char *)xmalloc (end - start + 1);
267 temp[tlen++] = string[len++];
268 temp[tle
[all...]
/haiku-fatelf/src/libs/ncurses/test/
H A Ddemo_defkey.c24 char temp[256]; local
29 n = winnstr(win, temp, sizeof(temp));
31 if (isspace(UChar(temp[n])))
32 temp[n] = '\0';
37 fprintf(fp, "%s\n", temp);
48 static char temp[10]; local
52 strcpy(temp, "\\\\");
54 strcpy(temp, "\\E");
56 sprintf(temp, "\\
79 char temp[80]; local
102 char temp[80]; local
157 char temp[BUFSIZ]; local
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A De_jn.c69 double a, b, temp, di; local
110 case 0: temp = c + s; break;
111 case 1: temp = -c + s; break;
112 case 2: temp = -c - s; break;
113 case 3: temp = c - s; break;
115 b = invsqrtpi*temp/__ieee754_sqrt(x);
120 temp = b;
122 a = temp;
133 temp = x*0.5; b = temp;
233 double a, b, temp; local
[all...]
H A De_jnl.c87 long double a, b, temp, di; local
143 temp = c + s;
146 temp = -c + s;
149 temp = -c - s;
152 temp = c - s;
155 b = invsqrtpi * temp / __ieee754_sqrtl (x);
163 temp = b;
165 a = temp;
180 temp = x * 0.5;
181 b = temp;
306 long double a, b, temp; local
[all...]
/haiku-fatelf/src/bin/bash/builtins/
H A Dgetopt.c119 char c, *temp; local
146 temp = argv[sh_optind];
150 if (temp[0] == '-' && temp[1] == '-' && temp[2] == '\0')
159 if (temp[0] != '-' || temp[1] == '\0')
171 temp = strchr (optstring, c);
182 if (sh_badopt = (temp == NULL || c == ':'))
190 if (temp[
[all...]

Completed in 473 milliseconds

1234567891011>>