Home
last modified time | relevance | path

Searched refs:calc (Results 1 – 25 of 113) sorted by relevance

12345

/third_party/boost/libs/spirit/example/x3/
DJamfile33 exe x3_calc1 : calc/calc1.cpp ;
34 exe x3_calc2 : calc/calc2.cpp ;
35 exe x3_calc4 : calc/calc4.cpp ;
36 exe x3_calc4b : calc/calc4b.cpp ;
37 exe x3_calc5 : calc/calc5.cpp ;
38 exe x3_calc6 : calc/calc6.cpp ;
41 calc/calc7/vm.cpp
42 calc/calc7/compiler.cpp
43 calc/calc7/expression.cpp
44 calc/calc7/main.cpp
[all …]
/third_party/typescript/tests/baselines/reference/
DunusedImports8.types20 import {Calculator as calc, test as t1, test2 as t2} from "./file1"
21 >Calculator : typeof calc
22 >calc : typeof calc
28 var x = new calc();
29 >x : calc
30 >new calc() : calc
31 >calc : typeof calc
36 >x : calc
DunusedImports8.symbols20 import {Calculator as calc, test as t1, test2 as t2} from "./file1"
21 >Calculator : Symbol(calc, Decl(file1.ts, 0, 0))
22 >calc : Symbol(calc, Decl(file2.ts, 0, 8))
28 var x = new calc();
30 >calc : Symbol(calc, Decl(file2.ts, 0, 8))
33 >x.handleChar : Symbol(calc.handleChar, Decl(file1.ts, 0, 25))
35 >handleChar : Symbol(calc.handleChar, Decl(file1.ts, 0, 25))
DunusedImports8.js17 import {Calculator as calc, test as t1, test2 as t2} from "./file1"
19 var x = new calc();
DunusedImports8.errors.txt18 import {Calculator as calc, test as t1, test2 as t2} from "./file1"
22 var x = new calc();
/third_party/boost/libs/local_function/test/
Dfactorial_seq.cpp41 calculator calc; in main() local
42 calc.factorials(v); in main()
43 BOOST_TEST(calc.results[0] == 1); in main()
44 BOOST_TEST(calc.results[1] == 6); in main()
45 BOOST_TEST(calc.results[2] == 24); in main()
Dfactorial.cpp48 calculator calc; in main() local
49 calc.factorials(v); in main()
50 BOOST_TEST(calc.results[0] == 1); in main()
51 BOOST_TEST(calc.results[1] == 6); in main()
52 BOOST_TEST(calc.results[2] == 24); in main()
/third_party/flutter/skia/third_party/externals/libpng/contrib/tools/
DmakesRGB.c129 unsigned int calc; in main() local
131 calc = nearbyint((lo+adjust) * 256); in main()
132 if (calc > 65535) in main()
134 fprintf(stderr, "table[%d][0]: overflow %08x (%d)\n", i, calc, in main()
135 calc); in main()
138 png_sRGB_base[i] = calc; in main()
140 calc = nearbyint((hi-lo) * 32); in main()
141 if (calc > 255) in main()
143 fprintf(stderr, "table[%d][1]: overflow %08x (%d)\n", i, calc, in main()
144 calc); in main()
[all …]
/third_party/skia/third_party/externals/libpng/contrib/tools/
DmakesRGB.c129 unsigned int calc; in main() local
131 calc = nearbyint((lo+adjust) * 256); in main()
132 if (calc > 65535) in main()
134 fprintf(stderr, "table[%d][0]: overflow %08x (%d)\n", i, calc, in main()
135 calc); in main()
138 png_sRGB_base[i] = calc; in main()
140 calc = nearbyint((hi-lo) * 32); in main()
141 if (calc > 255) in main()
143 fprintf(stderr, "table[%d][1]: overflow %08x (%d)\n", i, calc, in main()
144 calc); in main()
[all …]
/third_party/libpng/contrib/tools/
DmakesRGB.c129 unsigned int calc; in main() local
131 calc = nearbyint((lo+adjust) * 256); in main()
132 if (calc > 65535) in main()
134 fprintf(stderr, "table[%d][0]: overflow %08x (%d)\n", i, calc, in main()
135 calc); in main()
138 png_sRGB_base[i] = calc; in main()
140 calc = nearbyint((hi-lo) * 32); in main()
141 if (calc > 255) in main()
143 fprintf(stderr, "table[%d][1]: overflow %08x (%d)\n", i, calc, in main()
144 calc); in main()
[all …]
/third_party/boost/libs/math/tools/
Dhypergeometric_1F1_map_neg_b_fwd_recurrence.cpp77 …test_type calc = boost::math::tools::function_ratio_from_forwards_recurrence(boost::math::detail::… in main() local
79 double err = (double)boost::math::epsilon_difference(reference, calc); in main()
110 …test_type calc = boost::math::tools::function_ratio_from_forwards_recurrence(boost::math::detail::… in main() local
112 test_type err = boost::math::epsilon_difference(reference, calc); in main()
129 …test_type calc = boost::math::tools::function_ratio_from_backwards_recurrence(boost::math::detail:… in main() local
131 test_type err = boost::math::epsilon_difference(reference, calc); in main()
157 …test_type calc = boost::math::tools::function_ratio_from_forwards_recurrence(boost::math::detail::… in main() local
159 test_type err = boost::math::epsilon_difference(reference, calc); in main()
175 …test_type calc = boost::math::tools::function_ratio_from_backwards_recurrence(boost::math::detail:… in main() local
177 test_type err = boost::math::epsilon_difference(reference, calc); in main()
/third_party/boost/libs/spirit/example/lex/
Dexample2.cpp136 example2_grammar calc(tokens); // Our parser in main() local
148 bool r = qi::parse(iter, end, calc); in main()
155 << calc.commands << " commands, " in main()
156 << calc.questions << " questions, and " in main()
157 << calc.statements << " statements.\n"; in main()
/third_party/boost/libs/variant/test/
Dtest3.cpp86 Calculator calc; in operator ()() local
87 int n1 = boost::apply_visitor(calc, x.lhs_); in operator ()()
88 int n2 = boost::apply_visitor(calc, x.rhs_); in operator ()()
101 Calculator calc; in operator ()() local
102 return boost::apply_visitor(calc, x); in operator ()()
/third_party/boost/libs/spirit/classic/example/fundamental/more_calculators/
Dvmachine_calc.cpp166 compile(GrammarT const& calc, char const* expr) in compile() argument
171 result = parse(expr, calc, space_p); in compile()
176 calc.code.push_back(OP_RET); in compile()
255 calculator calc(code); // Our parser in main() local
264 if (compile(calc, str.c_str())) in main()
/third_party/boost/libs/dll/example/mangled/
Dimport_class.cpp40 auto calc = import_mangled<alias, float(float, float), int(int, int)>(lib, "calculate"); in main() local
41 std::cout << "Calc(float): " (cl->*calc)(5.f, 2.f) << std::endl; in main()
42 std::cout << "Calc(int): " (cl->*calc)(5, 2) << std::endl; in main()
/third_party/node/deps/npm/node_modules/worker-farm/examples/pi/
Dindex.js30 , calc = function (method, callback) { function
38 calc(calcDirect, function () {
40 calc(calcWorker, process.exit)
/third_party/boost/libs/random/test/
Dchi_squared_test.hpp85 chi_squared_collector<IntType> calc; in chi_squared_test() local
87 calc(results[i], iterations * probabilities[i]); in chi_squared_test()
89 return calc.cdf(); in chi_squared_test()
/third_party/boost/libs/spirit/classic/example/fundamental/
Dcalc_debug.cpp168 calculator calc(eval); // Our parser in main() local
169 BOOST_SPIRIT_DEBUG_NODE(calc); in main()
177 parse_info<> info = parse(str.c_str(), calc, space_p); in main()
183 cout << "result = " << calc.eval.top() << endl; in main()
Dcalc_plain.cpp100 calculator calc; // Our parser in main() local
108 parse_info<> info = parse(str.c_str(), calc, space_p); in main()
/third_party/boost/libs/spirit/classic/test/
Dtree_to_xml.cpp124 calculator calc; in test() local
127 calc >> end_p, space_p); in test()
143 calculator calc; in test() local
146 calc >> end_p, space_p); in test()
Dast_calc_tests.cpp218 calculator calc; in parse() local
219 tree_parse_info<> info = ast_parse(str, calc, space_p); in parse()
230 dyn_calculator calc; in parse_dyn() local
231 tree_parse_info<> info = ast_parse(str, calc, space_p); in parse_dyn()
/third_party/typescript/tests/cases/compiler/
DunusedImports8.ts18 import {Calculator as calc, test as t1, test2 as t2} from "./file1"
20 var x = new calc();
/third_party/node/test/parallel/
Dtest-policy-dependency-conditions.js31 function calc(depthLeft = 0, path = []) { function
34 calc(depthLeft - 1, [...path, conditions]);
40 calc(totalDepth, []);
/third_party/ltp/testcases/realtime/func/periodic_cpu_load/
Dperiodic_cpu_load.c107 void *calc(void *arg) in calc() function
203 { PERIOD_A, iterations, calc, (void *)CALC_LOOPS_A }; in main()
205 { PERIOD_B, iterations, calc, (void *)CALC_LOOPS_B }; in main()
207 { PERIOD_C, iterations, calc, (void *)CALC_LOOPS_C }; in main()
/third_party/boost/libs/spirit/example/x3/calc/calc7/
Dmain.cpp52 auto calc = client::expression(); // grammar in main() local
59 bool r = phrase_parse(iter, end, calc, space, ast); in main()

12345