Home
last modified time | relevance | path

Searched refs:y (Results 176 – 200 of 1785) sorted by relevance

12345678910>>...72

/illumos-gate/usr/src/contrib/ast/src/lib/libast/string/
H A Dfmtmatch.c42 char* y; in fmtmatch() local
126 for (y = t + 2, t--; t >= x; t--) in fmtmatch()
130 t = y; in fmtmatch()
174 for (y = ++t; y > x; y--) in fmtmatch()
175 *y = *(y - 1); in fmtmatch()
187 for (y = t += n; y > x; y--) in fmtmatch()
188 *y = *(y - n); in fmtmatch()
/illumos-gate/usr/src/tools/smatch/src/
H A Ddominate.c74 struct basic_block *y; in visit() local
77 FOR_EACH_PTR(x->children, y) { in visit()
81 if (y->dom_level > curr_level) in visit()
85 y->generation |= INPHI; in visit()
86 add_bb(idf, y); in visit()
89 bank_put(bank, y); in visit()
90 } END_FOR_EACH_PTR(y); in visit()
92 FOR_EACH_PTR(x->doms, y) { in visit()
93 if (y->generation & VISITED) in visit()
95 visit(bank, idf, y, curr_level); in visit()
[all …]
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dfmin.c47 __fmin(double x, double y) { in __fmin() argument
55 if (y != y) in __fmin()
56 y = x; in __fmin()
60 x = y; in __fmin()
63 if (!isnan(x) && !islessequal(x, y)) in __fmin()
64 x = y; in __fmin()
70 yy.d = y; in __fmin()
H A Dfmax.c44 __fmax(double x, double y) { in __fmax() argument
52 if (y != y) in __fmax()
53 y = x; in __fmax()
57 x = y; in __fmax()
60 if (!isnan(x) && !isgreaterequal(x, y)) in __fmax()
61 x = y; in __fmax()
67 yy.d = y; in __fmax()
H A Dfmaxl.c35 __fmaxl(long double x, long double y) { in __fmaxl() argument
49 if (y != y) in __fmaxl()
50 y = x; in __fmaxl()
54 x = y; in __fmaxl()
57 if (!isnan(x) && !isgreaterequal(x, y)) in __fmaxl()
58 x = y; in __fmaxl()
64 yy.ld = y; in __fmaxl()
H A Dfminl.c35 __fminl(long double x, long double y) { in __fminl() argument
49 if (y != y) in __fminl()
50 y = x; in __fminl()
54 x = y; in __fminl()
57 if (!isnan(x) && !islessequal(x, y)) in __fminl()
58 x = y; in __fminl()
64 yy.ld = y; in __fminl()
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vlogf.c114 y += stridey;
156 y -= stridey; in __vlogf()
161 y += stridey; in __vlogf()
230 y[0] = (float)(yy0 + ty0); in __vlogf()
231 y += stridey; in __vlogf()
232 y[0] = (float)(yy1 + ty1); in __vlogf()
233 y += stridey; in __vlogf()
234 y[0] = (float)(yy2 + ty2); in __vlogf()
235 y += stridey; in __vlogf()
236 y[0] = (float)(yy3 + ty3); in __vlogf()
[all …]
H A D__vsinf.c115 y##N = -y##N; \
118 z##N = y##N * y##N; \
123 f##N = (float)(y##N + y##N * z##N * (S0 + \
135 y##N = (y##N - z##N * pio2_1) - z##N * pio2_t; \
137 z##N = y##N * y##N; \
142 f##N = (float)(y##N + y##N * z##N * (S0 + z##N * (S1 + \
146 y += stridey
157 y -= stridey; in __vsinf()
161 y += stridey; in __vsinf()
359 y += stridey; in __vsinf()
[all …]
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_cr_6855875_typeset_hexfloat_has_too_few_digits.sh102 typeset -l -X y # hexfloat
117 (( y=sin(test_values[i]) ))
120 str="${y}"
126 …(( y == y_restored1 )) || err_exit "no match,"$'\n\t'"$(printf "%a\n" y)"$'\n'"!="$'\n\t'"$(printf…
127 …(( y == y_restored2 )) || err_exit "no match,"$'\n\t'"$(printf "%a\n" y)"$'\n'"!="$'\n\t'"$(printf…
128 …(( y == y_restored3 )) || err_exit "no match,"$'\n\t'"$(printf "%a\n" y)"$'\n'"!="$'\n\t'"$(printf…
134 …(( y == y_restored1 )) || err_exit "no match,"$'\n\t'"$(printf "%a\n" y)"$'\n'"!="$'\n\t'"$(printf…
135 …(( y == y_restored2 )) || err_exit "no match,"$'\n\t'"$(printf "%a\n" y)"$'\n'"!="$'\n\t'"$(printf…
136 …(( y == y_restored3 )) || err_exit "no match,"$'\n\t'"$(printf "%a\n" y)"$'\n'"!="$'\n\t'"$(printf…
/illumos-gate/usr/src/lib/libm/common/C/
H A Dexpm1.c170 y = x; in expm1()
172 y = -x; /* y = |x| */ in expm1()
247 y = one - (e - x); in expm1()
248 ((int *) &y)[HIWORD] += k << 20; in expm1()
249 return (y - one); in expm1()
255 y = t - (e - x); in expm1()
256 ((int *) &y)[HIWORD] += k << 20; in expm1()
259 y = x - (e + t); in expm1()
260 y += one; in expm1()
261 ((int *) &y)[HIWORD] += k << 20; in expm1()
[all …]
/illumos-gate/usr/src/common/crypto/md5/amd64/
H A Dmd5_amd64.pl49 my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
56 xor $y, %r11d /* y ^ ... */
63 mov $y, %r11d /* (NEXT STEP) z' = $y */
76 my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
87 and $y, %r11d /* y & (not z) */
90 mov $y, %r11d /* (NEXT STEP) z' = $y */
92 mov $y, %r12d /* (NEXT STEP) z' = $y */
105 my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
130 my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
141 xor $y, %r11d /* y ^ ... */
[all …]
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dcexp.c69 double x, y, t, c, s; in cexp() local
73 y = D_IM(z); in cexp()
76 hy = HI_WORD(y); in cexp()
77 ly = LO_WORD(y); in cexp()
82 D_IM(ans) = y; in cexp()
89 sincos(y, &s, &c); in cexp()
96 D_IM(ans) = y - y; in cexp()
98 (void) sincos(y, &s, &c); in cexp()
104 (void) sincos(y, &s, &c); in cexp()
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Ddelch.c59 (mvdelch)(y, x)
60 int y, x;
65 __m_trace("mvdelch(%d, %d)", y, x);
68 if ((code = wmove(stdscr, y, x)) == OK)
75 (mvwdelch)(w, y, x)
77 int y, x; variable
82 __m_trace("mvwdelch(%p, %d, %d)", w, y, x);
85 if ((code = wmove(w, y, x)) == OK)
H A Dwadd_wch.c60 int code, x, y, nx; local
68 y = w->_cury;
70 if (x < 0 || w->_maxx <= x || y < 0 || w->_maxy <= y)
80 if (__m_cc_add(w, y, x, cc, 0, &y, &x) == ERR)
95 if (__m_cc_add(w, y, x, &uc, 0, &y, &x) == ERR)
102 w->_cury = y;
H A Dgetch.c63 mvgetch(y, x) in mvgetch() argument
64 int y, x; in mvgetch()
69 __m_trace("mvgetch(%d, %d)", y, x);
72 if (wmove(stdscr, y, x))
83 mvwgetch(w, y, x) in mvwgetch() argument
85 int y, x;
90 __m_trace("mvwgetch(%p, %d, %d)", w, y, x);
93 if (wmove(w, y, x))
H A Dinch.c59 (mvinch)(y, x)
60 int y, x;
65 __m_trace("mvinch(%d, %d)", y, x);
68 if ((ch = (chtype) wmove(stdscr, y, x)) != (chtype) ERR)
75 (mvwinch)(w, y, x)
77 int y, x; variable
82 __m_trace("mvwinch(%p, %d, %d)", w, y, x);
85 if ((ch = (chtype) wmove(w, y, x)) != (chtype) ERR)
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dformat3.test242 INSERT INTO t2 SELECT 101-w, x, (SELECT max(y) FROM t1)+1-y, y FROM t1;
278 count {SELECT x, y FROM t1 WHERE y<200 AND w=11 AND x>2}
281 count {SELECT x, y FROM t1 WHERE y<200 AND x>2 AND w=11}
284 count {SELECT x, y FROM t1 WHERE w=11 AND y<200 AND x>2}
287 count {SELECT x, y FROM t1 WHERE w>10 AND y=144 AND x=3}
290 count {SELECT x, y FROM t1 WHERE y=144 AND w>10 AND x=3}
296 count {SELECT x, y FROM t1 WHERE x=3 AND y=100 AND w<10}
333 count {SELECT w FROM t1 WHERE x=3 AND y>121 AND y<196}
336 count {SELECT w FROM t1 WHERE x=3 AND y>=121 AND y<=196}
339 count {SELECT w FROM t1 WHERE x=3 AND 121<y AND 196>y}
[all …]
/illumos-gate/usr/src/cmd/audio/utilities/
H A Dg723.c175 int y, in _g723_update() argument
212 state_ptr->yu = y + ((_witab[i] - y) >> 5); in _g723_update()
398 dln = dl - (y >> 2); in _g723_quantize()
565 short y, dif; /* MIX */ in _encoder() local
586 y = state_ptr->yu; in _encoder()
588 y = state_ptr->yl >> 6; in _encoder()
589 dif = state_ptr->yu - y; in _encoder()
597 i = _g723_quantize(d, y); in _encoder()
598 dq = _g723_reconstr(i, y); in _encoder()
805 y = state_ptr->yu; in g723_decode()
[all …]
/illumos-gate/usr/src/lib/libm/common/R/
H A Dremainderf.c35 remainderf(float x, float y) { in remainderf() argument
36 if (isnanf(x) || isnanf(y)) in remainderf()
37 return (x * y); in remainderf()
38 if (y == 0.0f || (*(int *) &x & ~0x80000000) == 0x7f800000) { in remainderf()
40 y = 0.0f; in remainderf()
42 return (x * y); in remainderf()
44 return ((float) remainder((double) x, (double) y)); in remainderf()
H A Dhypotf.c35 hypotf(float x, float y) { in hypotf() argument
41 iy = (*(int *) &y) & 0x7fffffff; in hypotf()
44 *(int *) &w = x == y ? iy : ix; /* w = |x| = inf */ in hypotf()
46 *(int *) &w = x == y ? ix : iy; /* w = |y| = inf */ in hypotf()
48 w = fabsf(x) * fabsf(y); /* + -> * for Cheetah */ in hypotf()
51 *(int *) &w = x == y ? ix : iy; /* w = |y| = inf */ in hypotf()
53 w = fabsf(x) * fabsf(y); /* + -> * for Cheetah */ in hypotf()
60 dy = (double) y; in hypotf()
/illumos-gate/usr/src/test/libc-tests/tests/qsort/
H A Dqsort_test.c513 y[i] = x[i]; \
531 int *y = vx; in test_perturbed_i() local
543 long long *y = vx; in test_perturbed_ll() local
555 double *y = vx; in test_perturbed_double() local
586 int *y = vx; in test_simple_i() local
598 long long *y = vx; in test_simple_ll() local
610 double *y = vx; in test_simple_double() local
627 int *y = vx; in test_antiqsort() local
636 i = antiqsort(n, x, y); in test_antiqsort()
695 void *x, *y, *z; in run_tests() local
[all …]
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dwtouchln.c56 wtouchln(WINDOW *win, int y, int n, int changed) in wtouchln() argument
61 if (y >= maxy) in wtouchln()
63 if (y < 0) in wtouchln()
64 y = 0; in wtouchln()
65 if ((y + n) > maxy) in wtouchln()
66 n = maxy - y; in wtouchln()
67 firstch = win->_firstch + y; in wtouchln()
68 lastch = win->_lastch + y; in wtouchln()
H A Dcurses.ed200 int x, y;
572 #define getsyx(y, x) _getsyx(&(y), &(x))
578 #define getyx(win, y, x) ((y) = getcury(win), (x) = getcurx(win))
579 #define getbegyx(win, y, x) ((y) = getbegy(win), (x) = getbegx(win))
580 #define getmaxyx(win, y, x) ((y) = getmaxy(win), (x) = getmaxx(win))
581 #define getparyx(win, y, x) ((y) = getpary(win), (x) = getparx(win))
923 #define move(y, x) wmove(stdscr, y, x)
1045 #define mvdelch(y, x) \
1051 #define mvinch(y, x) \
1052 mvwinch(stdscr, y, x)
[all …]
/illumos-gate/usr/src/compat/bhyve/sys/
H A Dcdefs.h72 #define _Static_assert(x, y) static_assert(x, y) argument
76 #define _Static_assert(x, y) __Static_assert(x, __COUNTER__) argument
77 #define __Static_assert(x, y) ___Static_assert(x, y) argument
78 #define ___Static_assert(x, y) typedef char __assert_ ## y[(x) ? 1 : -1] \ argument
81 #define _Static_assert(x, y) struct __hack argument
84 #define static_assert(x, y) _Static_assert(x, y) argument
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dtouched.c56 is_linetouched(WINDOW *w, int y) in is_linetouched() argument
58 return (0 <= w->_last[y]); in is_linetouched()
66 int y, value; in is_wintouched() local
68 for (y = 0; y < w->_maxy; ++y) in is_wintouched()
69 if ((value = (0 <= w->_last[y])) != 0) in is_wintouched()

12345678910>>...72