Home
last modified time | relevance | path

Searched refs:one (Results 76 - 100 of 1198) sorted by relevance

12345678910>>...48

/third_party/jerryscript/jerry-libm/
H A Datan.c35 * is further reduced to one of the following intervals and the
79 #define one 1.0 macro
109 if (huge + x > one) /* raise inexact */ in atan()
124 x = (2.0 * x - one) / (2.0 + x); in atan()
129 x = (x - one) / (x + one); in atan()
137 x = (x - 1.5) / (one + 1.5 * x); in atan()
174 #undef one macro
H A Dacos.c55 #define one 1.00000000000000000000e+00 /* 0x3FF00000, 0x00000000 */ macro
101 q = one + z * (qS1 + z * (qS2 + z * (qS3 + z * qS4))); in acos()
107 z = (one + x) * 0.5; in acos()
109 q = one + z * (qS1 + z * (qS2 + z * (qS3 + z * qS4))); in acos()
118 z = (one - x) * 0.5; in acos()
124 q = one + z * (qS1 + z * (qS2 + z * (qS3 + z * qS4))); in acos()
131 #undef one macro
H A Dexp.c108 #define one 1.0 macro
175 if (huge + x > one) /* trigger inexact */ in exp()
177 return one + x; in exp()
192 return one - ((x * c) / (c - 2.0) - x); in exp()
196 ret.dbl = one - ((lo - (x * c) / (2.0 - c)) - hi); in exp()
210 #undef one macro
H A Dasin.c60 #define one 1.00000000000000000000e+00 /* 0x3FF00000, 0x00000000 */ macro
98 if (huge + x > one) /* return x with inexact if x != 0 */ in asin()
105 q = one + t * (qS1 + t * (qS2 + t * (qS3 + t * qS4))); in asin()
110 w.dbl = one - fabs (x); in asin()
113 q = one + t * (qS1 + t * (qS2 + t * (qS3 + t * qS4))); in asin()
140 #undef one macro
H A Dsqrt.c34 * | Use the hardware sqrt if you have one |
50 * To compute q from q , one checks whether
84 * After generating the 53 bits result, we compute one more bit.
101 #define one 1.0 macro
208 ret.dbl = one - tiny; /* trigger inexact flag */ in sqrt()
209 if (ret.dbl >= one) in sqrt()
211 ret.dbl = one + tiny; in sqrt()
217 else if (ret.dbl > one) in sqrt()
243 #undef one macro
256 The second one use
[all...]
H A Dcosh.c52 #define one 1.0 macro
76 w = one + t; in cosh()
82 return one + (t * t) / (w + w); in cosh()
111 #undef one macro
H A Datanh.c49 #define one 1.0 macro
82 t = 0.5 * log1p (t + t * temp.dbl / (one - temp.dbl)); in atanh()
86 t = 0.5 * log1p ((temp.dbl + temp.dbl) / (one - temp.dbl)); in atanh()
99 #undef one macro
/third_party/FreeBSD/lib/msun/src/
H A Ds_tanhl.c40 static const double one = 1.0; variable
124 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */ in tanhl()
125 else return one/x-one; /* tanh(NaN) = NaN */ in tanhl()
164 z = one - one/(lo+0.5+hi); in tanhl()
167 z = one - tiny; /* raise inexact flag */ in tanhl()
/kernel/linux/linux-6.6/tools/testing/selftests/net/
H A Dsk_bind_sendto_listen.c10 int fd1, fd2, one = 1; in main() local
27 if (setsockopt(fd1, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one))) { in main()
49 if (setsockopt(fd2, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one))) { in main()
/third_party/typescript/tests/baselines/reference/
H A DbestCommonTypeOfTuple.js8 enum E1 { one }
20 t2 = [E1.one, E2.two];
22 t4 = [E1.one, E2.two, 20];
34 E1[E1["one"] = 0] = "one";
46 t2 = [E1.one, E2.two];
48 t4 = [E1.one, E2.two, 20];
H A Dparser15.4.4.14-9-2.js15 var one = 1;
17 var a = new Array(false,undefined,null,"0",obj,-1.3333333333333, "str",-0,true,+0, one, 1,0, false, _float, -(4/3));
21 a.indexOf(1) === 10 ) // a[10] =one=== 1
41 var one = 1;
43 var a = new Array(false, undefined, null, "0", obj, -1.3333333333333, "str", -0, true, +0, one, 1, 0, false, _float, -(4 / 3));
47 a.indexOf(1) === 10) // a[10] =one=== 1
H A DassignmentCompatability26.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var aa:{one:string;};;
16 var obj4 = { one: 1 };
H A DassignmentCompatability28.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var aa:{one:boolean;};;
16 var obj4 = { one: 1 };
H A DassignmentCompatability29.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var aa:{one:any[];};;
16 var obj4 = { one: 1 };
H A DassignmentCompatability30.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var aa:{one:number[];};;
16 var obj4 = { one: 1 };
H A DassignmentCompatability31.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var aa:{one:string[];};;
16 var obj4 = { one: 1 };
H A DassignmentCompatability32.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var aa:{one:boolean[];};;
16 var obj4 = { one: 1 };
H A DassignmentCompatability4.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var aa:{one:number;};;
16 var obj4 = { one: 1 };
H A DassignmentCompatability6.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export interface interfaceWithOptional<T> { one?: T; }; var obj3: interfaceWithOptional<number> = { };;
16 var obj4 = { one: 1 };
H A DcastingTuple.js8 enum E1 { one }
9 enum E2 { one }
22 var t10: [E1, E2] = [E1.one, E2.one];
89 E1[E1["one"] = 0] = "one";
93 E2[E2["one"] = 0] = "one";
106 var t10 = [E1.one, E2.one];
[all...]
/third_party/skia/src/pathops/
H A DSkPathOpsOp.cpp239 bool OpDebug(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result in OpDebug() argument
246 SkPathOpsDebug::DumpOp(one, two, op, testName); in OpDebug()
249 op = gOpInverse[op][one.isInverseFillType()][two.isInverseFillType()]; in OpDebug()
250 bool inverseFill = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]; in OpDebug()
254 if (kIntersect_SkPathOp == op && one.isRect(&rect1) && two.isRect(&rect2)) { in OpDebug()
262 if (one.isEmpty() || two.isEmpty()) { in OpDebug()
269 work = one.isEmpty() ? two : one; in OpDebug()
272 if (!one.isEmpty()) { in OpDebug()
273 work = one; in OpDebug()
370 Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result) Op() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c257 * Do blending for a 2x2 quad for one color buffer.
272 static const float one[4] = { 1, 1, 1, 1 }; in blend_quad() local
316 VEC4_SUB(diff, one, dest[3]); in blend_quad()
364 VEC4_SUB(inv_comp, one, quadColor[0]); /* R */ in blend_quad()
366 VEC4_SUB(inv_comp, one, quadColor[1]); /* G */ in blend_quad()
368 VEC4_SUB(inv_comp, one, quadColor[2]); /* B */ in blend_quad()
375 VEC4_SUB(inv_alpha, one, quadColor[3]); in blend_quad()
384 VEC4_SUB(inv_alpha, one, dest[3]); in blend_quad()
393 VEC4_SUB(inv_comp, one, dest[0]); /* R */ in blend_quad()
395 VEC4_SUB(inv_comp, one, des in blend_quad()
1033 static const float one[4] = { 1, 1, 1, 1 }; blend_single_add_src_alpha_inv_src_alpha() local
[all...]
/third_party/skia/docs/examples/
H A DBitmap_swap.cpp15 SkBitmap one, two; in REG_FIDDLE() local
16 if (!one.tryAllocPixels( in REG_FIDDLE()
25 debugster("one", one); in REG_FIDDLE()
27 one.swap(two); in REG_FIDDLE()
/third_party/ffmpeg/libavcodec/loongarch/
H A Dh264_cabac.c34 int64_t bit, tmp0, tmp1, tmp2, one = 1; in decode_significance_loongarch() local
44 "blt %[bit], %[one], 4f \n\t" in decode_significance_loongarch()
54 "bge %[bit], %[one], 5f \n\t" in decode_significance_loongarch()
67 : [tables]"r"(ff_h264_cabac_tables), [end]"r"(end), [one]"r"(one), in decode_significance_loongarch()
89 int64_t bit, tmp0, tmp1, tmp2, one = 1, end = 63, last = 0; in decode_significance_8x8_loongarch() local
102 "blt %[bit], %[one], 4f \n\t" in decode_significance_8x8_loongarch()
112 "bge %[bit], %[one], 5f \n\t" in decode_significance_8x8_loongarch()
126 [one]"r"(one), [minusinde in decode_significance_8x8_loongarch()
[all...]
/third_party/python/Lib/distutils/tests/
H A Dtest_install_data.py22 one = os.path.join(pkg_dir, 'one')
23 self.write_file(one, 'xxx')
28 cmd.data_files = [one, (inst2, [two])]
29 self.assertEqual(cmd.get_inputs(), [one, (inst2, [two])])
39 rone = os.path.split(one)[-1]
43 # let's try with warn_dir one
60 cmd.data_files = [one, (inst2, [two]),

Completed in 7 milliseconds

12345678910>>...48