Home
last modified time | relevance | path

Searched refs:one (Results 51 - 75 of 1198) sorted by relevance

12345678910>>...48

/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()
/third_party/FreeBSD/lib/msun/src/
H A Ds_asinhl.c52 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
77 if (huge + x > one) RETURNI(x); /* return x inexact except 0 */ in asinhl()
83 w = logl(2.0*t+one/(sqrtl(x*x+one)+t)); in asinhl()
86 w =log1pl(fabsl(x)+t/(one+sqrtl(one+t))); in asinhl()
/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()
H A Dopt_if_tests.cpp70 nir_ssa_def *one = nir_imm_int(&bld, 1); in TEST_F() local
72 nir_ssa_def *cmp_result = nir_ieq(&bld, in_def, one); in TEST_F()
78 nir_store_var(&bld, out_var, one, 1); in TEST_F()
107 nir_ssa_def *one = nir_imm_int(&bld, 1); in TEST_F() local
109 nir_ssa_def *cmp_result = nir_ieq(&bld, in_def, one); in TEST_F()
115 nir_store_var(&bld, out_var, one, 1); in TEST_F()
126 nir_phi_instr_add_src(phi, then_block, nir_src_for_ssa(one)); in TEST_F()
129 one->num_components, one->bit_size, NULL); 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/typescript/tests/baselines/reference/
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 };
H A DassignmentCompatability12.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var obj = {one: "1"};
16 var obj4 = { one: 1 };
22 __test2__.obj = { one: "1" };
H A DassignmentCompatability14.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var obj = {one: true};
16 var obj4 = { one: 1 };
22 __test2__.obj = { one: true };
H A DassignmentCompatability16.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var obj = {one: <any[]>[1]};
16 var obj4 = { one: 1 };
22 __test2__.obj = { one: [1] };
H A DassignmentCompatability18.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var obj = {one: [1]};
16 var obj4 = { one: 1 };
22 __test2__.obj = { one: [1] };
H A DassignmentCompatability20.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var obj = {one: ["1"]};
16 var obj4 = { one: 1 };
22 __test2__.obj = { one: ["1"] };
H A DassignmentCompatability22.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var obj = {one: [true]};
16 var obj4 = { one: 1 };
22 __test2__.obj = { one: [true] };
H A DassignmentCompatability3.js3 export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
7 export var obj = {one: 1};
16 var obj4 = { one: 1 };
22 __test2__.obj = { one: 1 };
H A DconstIndexedAccess.js4 one
18 let n1 = test[numbers.one];
21 let n2 = test[numbers["one"]];
25 one
29 let n3 = test[numbersNotConst.one];
37 var n1 = test[1 /* numbers.one */];
39 var n2 = test[1 /* numbers["one"] */];
43 numbersNotConst[numbersNotConst["one"] = 1] = "one";
46 var n3 = test[numbersNotConst.one];
[all...]
/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/skia/gm/
H A Dpathopsinverse.cpp44 SkColor blend(SkColor one, SkColor two) { in blend() argument
48 canvas.drawColor(one); in blend()
69 SkPath one, two; variable
77 one.reset();
78 one.setFillType(oneF);
79 one.addRect(10, 10, 70, 70);
86 canvas->drawPath(one, fOnePaint);
87 canvas->drawPath(one, fOutlinePaint);
94 Op(one, two, (SkPathOp) op, &result);
/third_party/jerryscript/jerry-libm/
H A Dacosh.c44 #define one 1.0 macro
81 return log (2.0 * x - one / (x + sqrt (t - one))); in acosh()
86 t = x - one; in acosh()
91 #undef one macro
H A Dsinh.c48 #define one 1.0 macro
81 if (shuge + x > one) in sinh()
90 return h * (2.0 * t - t * t / (t + one)); in sinh()
92 return h * (t + t / (t + one)); in sinh()
113 #undef one macro
/third_party/skia/tests/
H A DPathOpsInverseTest.cpp15 SkPath one, two; in DEF_TEST() local
20 one.reset(); in DEF_TEST()
21 one.setFillType(oneFill); in DEF_TEST()
22 one.addRect(0, 0, 6, 6, oneDir); in DEF_TEST()
30 testPathOp(reporter, one, two, (SkPathOp) op, testName.c_str()); in DEF_TEST()
/third_party/node/test/parallel/
H A Dtest-stream2-objects.js55 const r = fromArray([{ one: '1' }, { two: '2' }]);
61 assert.deepStrictEqual(v1, { one: '1' });
68 const r = fromArray([{ one: '1' }, { two: '2' }]);
72 { one: '1' },
80 const r = fromArray([{ one: '1' }, { two: '2' }]);
83 assert.deepStrictEqual(value, { one: '1' });
89 const list = [{ one: '1' }, { two: '2' }];
97 { one: '1' },
106 const list = [{ one: '1' }, { two: '2' }];
116 { one
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dmemops.c64 struct instruction *one; in find_dominating_parents() local
67 FOR_EACH_PTR_REVERSE(parent->insns, one) { in find_dominating_parents()
69 if (!one->bb) in find_dominating_parents()
71 if (one == insn) in find_dominating_parents()
73 dominance = dominates(insn, one, local); in find_dominating_parents()
75 if (one->opcode == OP_LOAD) in find_dominating_parents()
82 } END_FOR_EACH_PTR_REVERSE(one); in find_dominating_parents()
93 phisrc = alloc_phisrc(one->target, one->type); in find_dominating_parents()
97 phi->ident = phi->ident ? : one in find_dominating_parents()
[all...]
/third_party/mesa3d/src/broadcom/compiler/
H A Dv3d_nir_lower_txf_ms.c49 nir_ssa_def *one = nir_imm_int(b, 1); in v3d_nir_lower_txf_ms_instr() local
51 nir_ishl(b, nir_channel(b, coord, 0), one), in v3d_nir_lower_txf_ms_instr()
52 nir_iand(b, sample, one)); in v3d_nir_lower_txf_ms_instr()
54 nir_ishl(b, nir_channel(b, coord, 1), one), in v3d_nir_lower_txf_ms_instr()
55 nir_iand(b, nir_ushr(b, sample, one), one)); in v3d_nir_lower_txf_ms_instr()
/third_party/rust/crates/clap/src/error/
H A Dkind.rs176 /// Occurs when the user does not provide one or more required arguments.
192 /// but the user does not provide one.
265 /// one.
319 Self::InvalidValue => Some("one of the values isn't valid for an argument"), in as_str()
322 Self::NoEquals => Some("equal is needed when assigning values to one of the arguments"), in as_str()
323 Self::ValueValidation => Some("invalid value for one of the arguments"), in as_str()
328 Some("an argument cannot be used with one or more of the other specified arguments") in as_str()
331 Some("one or more required arguments were not provided") in as_str()
333 Self::MissingSubcommand => Some("a subcommand is required but one was not provided"), in as_str()
334 Self::InvalidUtf8 => Some("invalid UTF-8 was detected in one o in as_str()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
H A Dint128_test.cc107 absl::uint128 one = 1; in TEST() local
118 EXPECT_LT(one, two); in TEST()
119 EXPECT_GT(two, one); in TEST()
120 EXPECT_LT(one, big); in TEST()
121 EXPECT_LT(one, big); in TEST()
122 EXPECT_EQ(one, one_2arg); in TEST()
123 EXPECT_NE(one, two); in TEST()
124 EXPECT_GT(big, one); in TEST()
136 EXPECT_EQ(one, one | on in TEST()
444 constexpr absl::uint128 one = 1; TEST() local
725 constexpr absl::int128 one = 1; TEST() local
[all...]

Completed in 9 milliseconds

12345678910>>...48