Home
last modified time | relevance | path

Searched refs:one (Results 26 - 50 of 914) sorted by relevance

12345678910>>...37

/third_party/jerryscript/jerry-libm/
H A Dasinh.c41 #define one 1.0 macro
60 if (huge + x > one) in asinh()
75 w = log (2.0 * t + one / (sqrt (x * x + one) + t)); in asinh()
81 w = log1p (fabs (x) + t / (one + sqrt (one + t))); in asinh()
93 #undef one macro
H A Dexpm1.c92 * (A). To save one multiplication, we scale the coefficient Qi
124 #define one 1.0 macro
185 return tiny - one; in expm1()
233 r1 = one + hxs * (Q1 + hxs * (Q2 + hxs * (Q3 + hxs * (Q4 + hxs * Q5)))); in expm1()
259 return one + 2.0 * (x - e); in expm1()
265 y = one - (e - x); in expm1()
274 return y - one; in expm1()
276 t.dbl = one; in expm1()
287 y += one; in expm1()
294 #undef one macro
[all...]
/third_party/typescript/tests/baselines/reference/
H A DassignmentCompatability10.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export class classWithPublicAndOptional<T,U> { constructor(public one: T, public two?: U) {} } var x4 = new classWithPublicAndOptional<number, string>(1);;
16 var obj4 = { one: 1 };
23 function classWithPublicAndOptional(one, two) {
24 this.one = one;
H A DassignmentCompatability39.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export class classWithTwoPublic<T,U> { constructor(public one: T, public two: U) {} } var x2 = new classWithTwoPublic(1, "a");;
16 var obj4 = { one: 1 };
23 function classWithTwoPublic(one, two) {
24 this.one = one;
H A DassignmentCompatability41.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export class classWithTwoPrivate<T,U> { constructor(private one: T, private two: U) {} } var x6 = new classWithTwoPrivate(1, "a");;
16 var obj4 = { one: 1 };
23 function classWithTwoPrivate(one, two) {
24 this.one = one;
H A DassignmentCompatability42.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export class classWithPublicPrivate<T,U> { constructor(public one: T, private two: U) {} } var x7 = new classWithPublicPrivate(1, "a");;
16 var obj4 = { one: 1 };
23 function classWithPublicPrivate(one, two) {
24 this.one = one;
H A DnonNullParameterExtendingStringAssignableToString.js4 function fn<T extends string | undefined, U extends string>(one: T, two: U) {
5 let three = Boolean() ? one : two;
6 foo(one!);
8 foo(three!); // this line is the important one
13 function fn(one, two) {
14 var three = Boolean() ? one : two;
15 foo(one);
17 foo(three); // this line is the important one
H A DimportCallExpressionInCJS5.js23 let one = await import("./1");
24 console.log(one.backup());
37 let one = await import("./1");
38 console.log(one.backup());
73 let one = await Promise.resolve().then(() => require("./1"));
74 console.log(one.backup());
88 let one = await Promise.resolve().then(() => require("./1"));
89 console.log(one.backup());
H A DassignmentCompatability43.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export interface interfaceTwo<T,U> { one: T; two: U; }; var obj2: interfaceTwo<number,string> = { one: 1, two: "a" };;
16 var obj4 = { one: 1 };
23 var obj2 = { one: 1, two: "a" };
H A DassignmentCompatability5.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export interface interfaceOne<T> { one: T; }; var obj1: interfaceOne<number> = { one: 1 };;
16 var obj4 = { one: 1 };
23 var obj1 = { one: 1 };
H A DassignmentCompatability7.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
16 var obj4 = { one: 1 };
23 var obj4 = { one: 1 };
H A DdestructuredDeclarationEmit.js14 const [ , one, , [, bee, , [, {sec} ]]] = arr;
15 export { one, bee, sec };
36 exports.foo2 = exports.sec = exports.bee = exports.one = exports.ibaz = exports.baz = exports.arr = exports.foo = void 0;
43 var one = foo_1.arr[1], _b = foo_1.arr[3], bee = _b[1], _c = _b[3], sec = _c[1].sec; variable
44 exports.one = one;
76 declare const one: 1, bee: "b", sec: "sec";
77 export { one, bee, sec };
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
H A Dv8_foozzie_test.py118 def diff_fun(one, two, skip=False):
120 return suppress.diff_lines(one.splitlines(), two.splitlines())
122 one = ''
125 self.assertEqual(diff, diff_fun(one, two))
127 one = 'a \n b\nc();'
130 self.assertEqual(diff, diff_fun(one, two))
133 one = """
148 self.assertEqual(diff, diff_fun(one, two))
150 one = """
158 self.assertEqual(diff, diff_fun(one, tw
[all...]
/third_party/rust/crates/proc-macro-error/tests/ui/
H A Dabort.rs4 abort_from!(one, two);
5 abort_to_string!(one, two);
6 abort_format!(one, two);
7 direct_abort!(one, two);
8 abort_notes!(one, two);
9 abort_call_site_test!(one, two);
/third_party/node/deps/v8/src/base/
H A Dieee754.cc41 * n0 = ((*(int*)&one)>>29)^1; * index of high word *
307 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ in __kernel_cos() local
320 if (static_cast<int>(x) == 0) return one; /* generate inexact */ in __kernel_cos()
325 return one - (0.5 * z - (z * r - x * y)); in __kernel_cos()
333 a = one - qx; in __kernel_cos()
375 * precison, one may have to do something like:
466 one = 1.0, in __kernel_rem_pio2() local
547 z = one - z; in __kernel_rem_pio2()
548 if (carry != 0) z -= scalbn(one, q0); in __kernel_rem_pio2()
593 fw = scalbn(one, q in __kernel_rem_pio2()
752 #define one __kernel_tan() macro
831 #undef one __kernel_tan() macro
864 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ acos() local
938 one = 1.0, acosh() local
993 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ asin() local
1069 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ asinh() local
1145 static const double one = 1.0, huge = 1.0e300; atan() local
1445 one = 1.0, exp() local
1554 static const double one = 1.0, huge = 1e300; atanh() local
2211 one = 1.0, expm1() local
2548 static const double one = 1.0, half = 0.5; cosh() local
2642 zero = 0.0, one = 1.0, two = 2.0, pow() local
2977 static const double one = 1.0, two = 2.0, huge = 1.0e300; tanh() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Ddragonfly.c90 struct crypto_bignum *tmp, *pm1, *one; in dragonfly_get_rand_1_to_p_1() local
94 one = crypto_bignum_init_set((const u8 *) "\x01", 1); in dragonfly_get_rand_1_to_p_1()
95 if (!tmp || !pm1 || !one || in dragonfly_get_rand_1_to_p_1()
96 crypto_bignum_sub(prime, one, pm1) < 0 || in dragonfly_get_rand_1_to_p_1()
98 crypto_bignum_add(tmp, one, tmp) < 0) { in dragonfly_get_rand_1_to_p_1()
104 crypto_bignum_deinit(one, 0); in dragonfly_get_rand_1_to_p_1()
223 struct crypto_bignum *tmp, *one; in dragonfly_sqrt() local
233 one = crypto_bignum_init_uint(1); in dragonfly_sqrt()
238 !tmp || !one || in dragonfly_sqrt()
240 crypto_bignum_add(prime, one, tm in dragonfly_sqrt()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Ddragonfly.c90 struct crypto_bignum *tmp, *pm1, *one; in dragonfly_get_rand_1_to_p_1() local
94 one = crypto_bignum_init_set((const u8 *) "\x01", 1); in dragonfly_get_rand_1_to_p_1()
95 if (!tmp || !pm1 || !one || in dragonfly_get_rand_1_to_p_1()
96 crypto_bignum_sub(prime, one, pm1) < 0 || in dragonfly_get_rand_1_to_p_1()
98 crypto_bignum_add(tmp, one, tmp) < 0) { in dragonfly_get_rand_1_to_p_1()
104 crypto_bignum_deinit(one, 0); in dragonfly_get_rand_1_to_p_1()
223 struct crypto_bignum *tmp, *one; in dragonfly_sqrt() local
233 one = crypto_bignum_init_uint(1); in dragonfly_sqrt()
238 !tmp || !one || in dragonfly_sqrt()
240 crypto_bignum_add(prime, one, tm in dragonfly_sqrt()
[all...]
/third_party/skia/docs/examples/
H A DRegion_equal1_operator.cpp8 SkDebugf("%s one %c= two\n", prefix, a == b ? '=' : '!'); in REG_FIDDLE()
10 SkRegion one; in REG_FIDDLE() local
12 debugster("empty", one, two); in REG_FIDDLE()
13 one.setRect({1, 2, 3, 4}); in REG_FIDDLE()
14 debugster("set rect", one, two); in REG_FIDDLE()
15 one.setEmpty(); in REG_FIDDLE()
16 debugster("set empty", one, two); in REG_FIDDLE()
H A DRegion_notequal1_operator.cpp8 SkDebugf("%s one %c= two\n", prefix, a != b ? '!' : '='); in REG_FIDDLE()
10 SkRegion one; in REG_FIDDLE() local
12 debugster("empty", one, two); in REG_FIDDLE()
13 one.setRect({1, 2, 3, 4}); in REG_FIDDLE()
15 debugster("set rect", one, two); in REG_FIDDLE()
17 debugster("union rect", one, two); in REG_FIDDLE()
/third_party/ffmpeg/libavcodec/
H A Drangecoder.c70 const int64_t one = 1LL << 32; in ff_build_rac_states() local
78 p = one / 2; in ff_build_rac_states()
80 p8 = (256 * p + one / 2) >> 32; // FIXME: try without the one in ff_build_rac_states()
86 p += ((one - p) * factor + one / 2) >> 32; in ff_build_rac_states()
94 p = (i * one + 128) >> 8; in ff_build_rac_states()
95 p += ((one - p) * factor + one / 2) >> 32; in ff_build_rac_states()
96 p8 = (256 * p + one / in ff_build_rac_states()
[all...]
/third_party/FreeBSD/lib/msun/ld128/
H A Ds_erfl.c30 one = 1, variable
203 return (1-i)+one/x; /* erfl(+-inf)=+-1 */ in erfl()
216 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*(qq5+z*(qq6+z*(qq7+ in erfl()
222 s = ax-one; in erfl()
225 Q = one+s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*(qa6+s*(qa7+ in erfl()
230 if(x>=0) return (one-tiny); else return (tiny-one); in erfl()
232 s = one/(ax*ax); in erfl()
237 S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(sa5+s*(sa6+s*(sa7+ in erfl()
244 S=one in erfl()
[all...]
/third_party/mesa3d/src/compiler/nir/tests/
H A Dlower_returns_tests.cpp97 nir_ssa_def *one = nir_imm_int(&bld, 1); in TEST_F() local
99 nir_ssa_def *cmp_result = nir_ieq(&bld, in_def, one); in TEST_F()
117 create_one_source_phi(bld.shader, else_block, one); in TEST_F()
121 create_one_source_phi(bld.shader, else_block, one); in TEST_F()
173 nir_ssa_def *one = nir_imm_int(&bld, 1); in TEST_F() local
175 nir_ssa_def *cmp_result = nir_ieq(&bld, in_def, one); in TEST_F()
197 create_one_source_phi(bld.shader, nir_loop_last_block(loop_outer), one); in TEST_F()
201 create_one_source_phi(bld.shader, nir_loop_last_block(loop_outer), one); in TEST_F()
/third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/
H A Dshouldnt-report-error-about-unused-function-incorrectly-when-file-changes-from-global-to-module.js3 function one() {}
6 one();
61 function one() { }
64 one();
74 function one() {}
77 one();
119 function one() { }
122 one();
/third_party/python/Modules/
H A Dtestcapi_long.h77 * provoke one-over-the-limit cases (not exhaustive, but sharp). in error()
80 PyObject *one, *x, *y; in error()
84 one = PyLong_FromLong(1); in error()
85 if (one == NULL) in error()
90 x = PyNumber_Negative(one); in error()
112 x = PyNumber_Lshift(one, y); /* 1L << NBITS, == 2**NBITS */ in error()
131 y = PyNumber_Rshift(x, one); /* 2**(NBITS-1) */ in error()
156 y = PyNumber_Subtract(x, one); /* -(2**(NBITS-1))-1 */ in error()
176 Py_DECREF(one); in error()
/third_party/googletest/googletest/src/hwext/
H A Dgtest-utils.cc12 * Input: one: first string
18 bool compareStringsByIgnoreCase(const char* one, const char* two) { in compareStringsByIgnoreCase() argument
19 if (one == NULL && two == NULL) { in compareStringsByIgnoreCase()
23 if (one == NULL || two == NULL) { in compareStringsByIgnoreCase()
27 if (strcmp(one, two) == 0) { in compareStringsByIgnoreCase()
31 const int len_one = strlen(one); in compareStringsByIgnoreCase()
43 if (tolower(one[i]) != tolower(two[i])) { in compareStringsByIgnoreCase()

Completed in 8 milliseconds

12345678910>>...37