/third_party/boost/libs/graph/example/ |
D | max_flow7.dat | 5 a 891 389 58 6 a 155 799 81 7 a 64 78 97 8 a 608 271 90 9 a 680 471 15 10 a 791 143 63 11 a 698 19 93 12 a 106 404 60 13 a 146 13 5 14 a 701 569 24 [all …]
|
D | max_flow9.dat | 5 a 417 205 30 6 a 71 493 26 7 a 97 136 96 8 a 317 112 82 9 a 214 27 19 10 a 285 362 7 11 a 37 250 11 12 a 74 110 11 13 a 76 300 96 14 a 463 31 31 [all …]
|
D | max_flow5.dat | 5 a 1326 3929 4 6 a 149 3615 2 7 a 6404 102 6 8 a 639 3784 8 9 a 7735 4142 10 10 a 8139 9379 5 11 a 5596 7730 3 12 a 1411 1032 4 13 a 34 187 4 14 a 125 1304 9 [all …]
|
D | max_flow8.dat | 5 a 226 72 94 6 a 87 91 91 7 a 576 889 96 8 a 431 350 94 9 a 32 58 81 10 a 484 37 21 11 a 63 961 24 12 a 892 954 23 13 a 336 363 93 14 a 3 84 53 [all …]
|
D | max_flow6.dat | 5 a 74 44 94 6 a 2 4 67 7 a 34 45 100 8 a 4 35 14 9 a 25 28 62 10 a 34 26 91 11 a 10 90 25 12 a 13 3 77 13 a 58 24 19 14 a 22 34 52 [all …]
|
D | max_flow4.dat | 5 a 27 24 37 6 a 39 72 27 7 a 2 5 35 8 a 69 66 40 9 a 56 32 33 10 a 68 46 30 11 a 4 5 46 12 a 9 79 17 13 a 14 16 23 14 a 48 19 27 [all …]
|
/third_party/boost/libs/graph/test/prgen_input_graphs/ |
D | prgen_50_70_2.net | 3 a 1 2 450 4 a 1 6 2200 5 a 1 7 4100 6 a 1 9 4050 7 a 1 10 200 8 a 1 11 4900 9 a 1 12 1550 10 a 1 13 3000 11 a 1 16 4550 12 a 1 17 450 [all …]
|
D | prgen_50_40_2.net | 3 a 1 2 450 4 a 1 6 3850 5 a 1 10 350 6 a 1 12 2750 7 a 1 17 850 8 a 1 18 4200 9 a 1 20 3600 10 a 1 21 4350 11 a 1 22 2750 12 a 1 26 87 [all …]
|
D | prgen_20_70_2.net | 3 a 1 2 180 4 a 1 6 880 5 a 1 7 1640 6 a 1 9 1620 7 a 1 10 80 8 a 1 11 98 9 a 1 12 31 10 a 1 13 60 11 a 1 16 91 12 a 1 17 9 [all …]
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_opt_algebraic.py | 35 a = 'a' variable 86 x = ('fsub', ('fmul', 2.0, ('ffract', ('fadd', ('fmul', 0.5 / pi, a), c))), 1.0) 95 (('imul', a, '#b(is_pos_power_of_two)'), ('ishl', a, ('find_lsb', b)), '!options->lower_bitops'), 96 (('imul', 'a@8', 0x80), ('ishl', a, 7), '!options->lower_bitops'), 97 (('imul', 'a@16', 0x8000), ('ishl', a, 15), '!options->lower_bitops'), 98 (('imul', 'a@32', 0x80000000), ('ishl', a, 31), '!options->lower_bitops'), 99 (('imul', 'a@64', 0x8000000000000000), ('ishl', a, 63), '!options->lower_bitops'), 100 …(('imul', a, '#b(is_neg_power_of_two)'), ('ineg', ('ishl', a, ('find_lsb', ('iabs', b)))), '!optio… 101 (('ishl', a, '#b'), ('imul', a, ('ishl', 1, b)), 'options->lower_bitops'), 103 (('unpack_64_2x32_split_x', ('imul_2x32_64(is_used_once)', a, b)), ('imul', a, b)), [all …]
|
/third_party/toybox/tests/files/bc/ |
D | arctan.txt | 2 a(.267) 3 a(1) 5 a(.267) 6 a(1) 8 a(.267) 9 a(1) 11 a(.267) 12 a(1) 14 a(.267) 15 a(1) [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | typeGuardTypeOfUndefined.js | 3 function test1(a: any) { 4 if (typeof a !== "undefined") { 5 if (typeof a === "boolean") { 6 a; 9 a; 13 a; 17 function test2(a: any) { 18 if (typeof a === "undefined") { 19 if (typeof a === "boolean") { 20 a; [all …]
|
D | staticFieldWithInterfaceContext.types | 3 x: { a: "a" }; 4 >x : { a: "a"; } 5 >a : "a" 9 >class { // should typecheck the same as the last line static x = { a: "a" };} : typeof c 12 static x = { a: "a" }; 13 >x : { a: "a"; } 14 >{ a: "a" } : { a: "a"; } 15 >a : "a" 16 >"a" : "a" 19 c.x = { a: "a" }; [all …]
|
D | constantEnumAssert.types | 5 a, 6 >a : E1.a 15 a = 'a', 16 >a : E2.a 17 >'a' : "a" 27 a = 1, 28 >a : E3 31 b = a << 1, 33 >a << 1 : number 34 >a : E3 [all …]
|
D | typeGuardTypeOfUndefined.symbols | 3 function test1(a: any) { 5 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15)) 7 if (typeof a !== "undefined") { 8 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15)) 10 if (typeof a === "boolean") { 11 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15)) 13 a; 14 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15)) 17 a; 18 >a : Symbol(a, Decl(typeGuardTypeOfUndefined.ts, 1, 15)) [all …]
|
/third_party/boost/libs/static_string/test/ |
D | constexpr_tests.hpp | 25 static constexpr void assign(char_type& a, const char_type& b) noexcept { a = b; } in assign() 26 static constexpr bool eq(char_type a, char_type b) noexcept { return a == b; } in eq() 27 static constexpr bool lt(char_type a, char_type b) noexcept { return a < b; } in lt() 71 cstatic_string a; in testConstantEvaluation() local 81 a = b; in testConstantEvaluation() 82 a = "a"; in testConstantEvaluation() 83 a = 'a'; in testConstantEvaluation() 84 a = {'a'}; in testConstantEvaluation() 87 a.assign(b); in testConstantEvaluation() 88 a.assign(b, 0, 1); in testConstantEvaluation() [all …]
|
/third_party/boost/libs/multiprecision/test/ |
D | constexpr_arithmetric_test.hpp | 13 BOOST_CXX14_CONSTEXPR T do_test_constexpr_add_subtract(T a, U b) in do_test_constexpr_add_subtract() argument 15 a = +b; in do_test_constexpr_add_subtract() 18 a += b; in do_test_constexpr_add_subtract() 19 a += a; in do_test_constexpr_add_subtract() 20 a -= b; in do_test_constexpr_add_subtract() 21 a -= a; in do_test_constexpr_add_subtract() 22 ++a; in do_test_constexpr_add_subtract() 23 --a; in do_test_constexpr_add_subtract() 25 a += bb++; in do_test_constexpr_add_subtract() 26 a += bb--; in do_test_constexpr_add_subtract() [all …]
|
/third_party/python/Tools/scripts/ |
D | var_access_benchmark.py | 77 a = A() 79 a.x; a.x; a.x; a.x; a.x 80 a.x; a.x; a.x; a.x; a.x 81 a.x; a.x; a.x; a.x; a.x 82 a.x; a.x; a.x; a.x; a.x 83 a.x; a.x; a.x; a.x; a.x 85 def read_instancevar(trials=trials, a=C(1)): argument 87 a.x; a.x; a.x; a.x; a.x 88 a.x; a.x; a.x; a.x; a.x 89 a.x; a.x; a.x; a.x; a.x [all …]
|
/third_party/mesa3d/src/mesa/x86/ |
D | assyntax.h | 150 #define CHOICE(a,b,c) c argument 242 #define CHOICE(a,b,c) b argument 249 #define CHOICE(a,b,c) a argument 259 #define GLNAME(a) a argument 261 #define GLNAME(a) CONCAT(_,a) argument 334 #define ADDR(a) CHOICE(CONCAT($,a), $a, a) argument 335 #define CONST(a) CHOICE(CONCAT($,a), $a, a) argument 338 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */ argument 339 #define REGIND(a) CHOICE((a), (a), (a)) /* Register a indirect */ argument 341 #define REGOFF(a, b) CHOICE(a(b), a(b), a(b)) argument [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/ |
D | typeGuardTypeOfUndefined.ts | 2 function test1(a: any) { 3 if (typeof a !== "undefined") { 4 if (typeof a === "boolean") { 5 a; 8 a; 12 a; 16 function test2(a: any) { 17 if (typeof a === "undefined") { 18 if (typeof a === "boolean") { 19 a; [all …]
|
/third_party/boost/boost/math/tools/detail/ |
D | polynomial_horner1_20.hpp | 21 inline V evaluate_polynomial_c_imp(const T* a, const V&, const boost::integral_constant<int, 1>*) B… in evaluate_polynomial_c_imp() argument 23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp() 27 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 2>*)… in evaluate_polynomial_c_imp() argument 29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp() 33 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 3>*)… in evaluate_polynomial_c_imp() argument 35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() 39 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 4>*)… in evaluate_polynomial_c_imp() argument 41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() 45 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 5>*)… in evaluate_polynomial_c_imp() argument 47 return static_cast<V>((((a[4] * x + a[3]) * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() [all …]
|
D | polynomial_horner1_19.hpp | 21 inline V evaluate_polynomial_c_imp(const T* a, const V&, const boost::integral_constant<int, 1>*) B… in evaluate_polynomial_c_imp() argument 23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp() 27 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 2>*)… in evaluate_polynomial_c_imp() argument 29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp() 33 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 3>*)… in evaluate_polynomial_c_imp() argument 35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() 39 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 4>*)… in evaluate_polynomial_c_imp() argument 41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() 45 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 5>*)… in evaluate_polynomial_c_imp() argument 47 return static_cast<V>((((a[4] * x + a[3]) * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() [all …]
|
D | polynomial_horner1_18.hpp | 21 inline V evaluate_polynomial_c_imp(const T* a, const V&, const boost::integral_constant<int, 1>*) B… in evaluate_polynomial_c_imp() argument 23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp() 27 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 2>*)… in evaluate_polynomial_c_imp() argument 29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp() 33 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 3>*)… in evaluate_polynomial_c_imp() argument 35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() 39 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 4>*)… in evaluate_polynomial_c_imp() argument 41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() 45 inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 5>*)… in evaluate_polynomial_c_imp() argument 47 return static_cast<V>((((a[4] * x + a[3]) * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp() [all …]
|
/third_party/libxml2/test/expr/ |
D | base | 1 =>a 2 1 a 3 1 a | a 5 =>a|b 6 1 a 8 1 a | b 9 0 a{0} 11 =>a | b | a 12 1 a 14 1 a | b [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/ |
D | SDL_dynapi_procs.h | 34 SDL_DYNAPI_PROC(int,SDL_SetError,(SDL_PRINTF_FORMAT_STRING const char *a, ...),(a),return) 35 SDL_DYNAPI_PROC(void,SDL_Log,(SDL_PRINTF_FORMAT_STRING const char *a, ...),(a),) 36 SDL_DYNAPI_PROC(void,SDL_LogVerbose,(int a, SDL_PRINTF_FORMAT_STRING const char *b, ...),(a,b),) 37 SDL_DYNAPI_PROC(void,SDL_LogDebug,(int a, SDL_PRINTF_FORMAT_STRING const char *b, ...),(a,b),) 38 SDL_DYNAPI_PROC(void,SDL_LogInfo,(int a, SDL_PRINTF_FORMAT_STRING const char *b, ...),(a,b),) 39 SDL_DYNAPI_PROC(void,SDL_LogWarn,(int a, SDL_PRINTF_FORMAT_STRING const char *b, ...),(a,b),) 40 SDL_DYNAPI_PROC(void,SDL_LogError,(int a, SDL_PRINTF_FORMAT_STRING const char *b, ...),(a,b),) 41 SDL_DYNAPI_PROC(void,SDL_LogCritical,(int a, SDL_PRINTF_FORMAT_STRING const char *b, ...),(a,b),) 42 SDL_DYNAPI_PROC(void,SDL_LogMessage,(int a, SDL_LogPriority b, SDL_PRINTF_FORMAT_STRING const char … 43 SDL_DYNAPI_PROC(int,SDL_sscanf,(const char *a, SDL_SCANF_FORMAT_STRING const char *b, ...),(a,b),re… [all …]
|