Home
last modified time | relevance | path

Searched refs:one (Results 76 – 100 of 1159) sorted by relevance

12345678910>>...47

/illumos-gate/usr/src/contrib/ast/src/lib/libast/vmalloc/
H A Dvmprofile.c263 one = two = NIL(Pfobj_t*);
266 pf->next = one;
267 one = pf;
278 one = pfsort(one);
284 else if(PFLINE(one) == 0)
296 pf = one;
297 else next->next = one;
298 next = one;
299 if(!(one = one->next) )
311 { if(one)
[all …]
/illumos-gate/usr/src/lib/libm/common/Q/
H A D__sincosl.c46 one = 1.0L, variable
105 *c = one; in __k_sincosl()
111 *c = one + z * (qq1 + z * (qq2 + z * (qq3 + in __k_sincosl()
116 *c = one + z * (q1 + z * (q2 + z * (q3 + z * (q4 + in __k_sincosl()
135 w = x * (one + z * (pp1 + z * (pp2 + z * (pp3 + z * (pp4 + z * pp5))))); in __k_sincosl()
H A Datanhl.c50 static const long double zero = 0.0L, half = 0.5L, one = 1.0L; variable
57 if (t == one) in atanhl()
59 t = t / (one - t); in atanhl()
H A Dasinhl.c36 one = 1.0L, variable
56 t = one / w; in asinhl()
57 return (copysignl(log1pl(w + w / (t + sqrtl(one + t * t))), x)); in asinhl()
/illumos-gate/usr/src/lib/libm/common/LD/
H A D__sincosl.c49 one = 1.0, variable
109 *c = one; in __k_sincosl()
115 *c = one + z * (qq1 + z * (qq2 + z * (qq3 + z * (qq4 + in __k_sincosl()
120 *c = one + z * (q1 + z * (q2 + z * (q3 + z * (q4 + z * in __k_sincosl()
143 w = x * (one + z * (pp1 + z * (pp2 + z * (pp3 + z * (pp4 + z * in __k_sincosl()
H A Datanhl.c63 one = (GENERIC) 1.0; variable
70 if (t == one) return x/zero;
71 t = t/(one-t);
H A Dasinhl.c36 one = 1.0L, variable
56 t = one / w; in asinhl()
57 return (copysignl(log1pl(w + w / (t + sqrtl(one + t * t))), x)); in asinhl()
/illumos-gate/usr/src/common/ficl/test/
H A Dtestcase.fr13 ." one"
30 .( You should see "one": )
47 ." one"
69 .( You should see "one": )
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Darrays.sh189 foo=(one two)
239 ( set -A list one two three four)
258 foo=one
286 for i in one three four five
302 x=( [one]=1 [two]=2 [three]=3)
306 x=( [one]=1 [two]=2 [three]=3)
342 foo=one
356 foo=(one two)
360 foo=one
444 xxxxx=(one)
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dinsert.test37 execsql {CREATE TABLE test1(one int, two int, three int)}
50 set v [catch {execsql {INSERT INTO test1(one,two) VALUES(1)}} msg]
69 execsql {SELECT * FROM test1 ORDER BY one}
73 execsql {SELECT * FROM test1 ORDER BY one}
78 execsql {INSERT INTO test1(one,two) VALUES(1,2)}
79 execsql {SELECT * FROM test1 ORDER BY one}
83 execsql {SELECT * FROM test1 ORDER BY one}
86 execsql {INSERT INTO test1(three,one) VALUES(7,8)}
87 execsql {SELECT * FROM test1 ORDER BY one}
245 INSERT INTO t4 SELECT one FROM test1 WHERE three=7;
[all …]
H A Dtrans.test27 INSERT INTO one VALUES(1,'one');
28 INSERT INTO one VALUES(2,'two');
30 SELECT b FROM one ORDER BY a;
32 } {one two three}
45 } {one two three}
80 SELECT a FROM one ORDER BY a;
92 SELECT a FROM one ORDER BY a;
103 SELECT a FROM one ORDER BY a;
245 DROP TABLE one;
263 } {one}
[all …]
/illumos-gate/usr/src/tools/smatch/src/smatch_scripts/
H A Dcall_tree.pl85 my $one = shift;
88 if (!defined($param_map{$one})) {
89 $param_map{$one} = {found => $UNKNOWN, links => []};
91 push @{$param_map{$one}->{links}}, $two;
/illumos-gate/usr/src/lib/libm/common/R/
H A Dtanf.c57 #define one C[0] macro
110 return ((float)(-one / z)); in tanf()
115 return ((float)(-one / w)); in tanf()
151 f = ((n & 1) == 0)? (float)z : (float)(-one / z); in tanf()
157 f = ((n & 1) == 0)? (float)w : (float)(-one / w); in tanf()
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/json/
H A Dtst.general.d.out7 tst |one-element array: integer|
18 tst |one-element array: hex integer (not in spec, not supported)|
23 tst |one-element array: float|
28 tst |one-element array: float + exponent|
33 tst |one-element array: integer + whitespace|
38 tst |one-element array: integer + exponent + whitespace|
43 tst |one-element array: string|
59 tst |one-element array: object|
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vexp.c352 #define one C[4].d macro
370 y##N = x##N * (one + x##N * (B1 + x##N * (B2 + x##N * B3))); \
402 y[index] = one + x##N; \
494 y0 = x0 * (one + x0 * (B1 + x0 * (B2 + x0 * B3))); in __vexp()
495 y1 = x1 * (one + x1 * (B1 + x1 * (B2 + x1 * B3))); in __vexp()
496 y2 = x2 * (one + x2 * (B1 + x2 * (B2 + x2 * B3))); in __vexp()
497 y3 = x3 * (one + x3 * (B1 + x3 * (B2 + x3 * B3))); in __vexp()
498 y4 = x4 * (one + x4 * (B1 + x4 * (B2 + x4 * B3))); in __vexp()
499 y5 = x5 * (one + x5 * (B1 + x5 * (B2 + x5 * B3))); in __vexp()
H A D__vsincos.c57 one = 1.0, variable
337 *pc2 = one + t2; in __vsincos()
387 *pc1 = one + t1; in __vsincos()
428 *pc1 = one + t1; in __vsincos()
429 *pc2 = one + t2; in __vsincos()
479 *pc0 = one + t0; in __vsincos()
521 *pc0 = one + t0; in __vsincos()
523 *pc2 = one + t2; in __vsincos()
563 *pc0 = one + t0; in __vsincos()
635 t1 = one + t1; in __vsincos()
[all …]
H A D__vsincosf.c79 #define one C[3] macro
97 c[cindex] = one; \
122 g##N = (float)(one + z##N * (mhalf + z##N * (C0 + \
147 g##N = (float)(one + z##N * (mhalf + z##N * (C0 + z##N * \
235 g0 = (float)(one + z0 * (mhalf + z0 * (C0 + z0 * in __vsincosf()
237 g1 = (float)(one + z1 * (mhalf + z1 * (C0 + z1 * in __vsincosf()
239 g2 = (float)(one + z2 * (mhalf + z2 * (C0 + z2 * in __vsincosf()
241 g3 = (float)(one + z3 * (mhalf + z3 * (C0 + z3 * in __vsincosf()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/uwin/
H A Dexp__E.c117 const static double zero=0.0, one=1.0, half=1.0/2.0, small=1.0E-19; variable
119 if(copysign(x,one)>small) {
131 c += x*((xh*w-(q-(p+xp)))/(one-w)+c);
137 if(x!=zero) one+small; /* raise the inexact flag */
H A Dlog1p.c121 const static double zero=0.0, negone= -1.0, one=1.0, variable
134 if(copysign(x,one)<small) return(x);
135 k=(int)logb(one+x); z=scalb(x,-k); t=scalb(one,-k);
/illumos-gate/usr/src/cmd/tbl/
H A Dtt.c78 int c, one, k; in allh() local
80 for(one=c=0; c<ncol; c++) in allh()
85 one=1; in allh()
87 return(one); in allh()
/illumos-gate/usr/src/tools/smatch/src/
H A Dsmatch_var_sym.c191 struct var_sym_list *combine_var_sym_lists(struct var_sym_list *one, struct var_sym_list *two) in combine_var_sym_lists() argument
195 to_vsl = clone_var_sym_list(one); in combine_var_sym_lists()
200 int var_sym_lists_equiv(struct var_sym_list *one, struct var_sym_list *two) in var_sym_lists_equiv() argument
204 if (one == two) in var_sym_lists_equiv()
207 if (ptr_list_size((struct ptr_list *)one) != ptr_list_size((struct ptr_list *)two)) in var_sym_lists_equiv()
210 PREPARE_PTR_LIST(one, one_tmp); in var_sym_lists_equiv()
H A Dsmatch_ranges.c1093 if (!one && !two) in ranges_equiv()
1095 if (!one || !two) in ranges_equiv()
1109 if (one == two) in rl_equiv()
1544 if (!one || !two) in do_intersection()
1547 NEXT_PTR_LIST(one); in do_intersection()
1552 NEXT_PTR_LIST(one); in do_intersection()
1556 add_range(&ret, one->min, one->max); in do_intersection()
1557 NEXT_PTR_LIST(one); in do_intersection()
1578 FINISH_PTR_LIST(one); in do_intersection()
1590 if (!one || !two) in rl_intersection()
[all …]
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dclogl.c45 static const long double zero = 0.0L, half = 0.5L, one = 1.0L; variable
84 if (ax == one) in clogl()
90 one) * (ax + one))); in clogl()
/illumos-gate/usr/src/lib/libmp/common/
H A Dgcd.c55 static MINT *one = NULL; in mp_invert() local
62 if (one == NULL) in mp_invert()
63 one = mp_itom(1); in mp_invert()
72 _mp_move(one, &v2); in mp_invert()
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_cr_6805792_varmovetest1.sh108 node.one="dummy1"
116 nameref nodeone=node.one
136 node.one="hello"

12345678910>>...47