/third_party/python/Modules/_blake2/impl/ |
D | blake2b-load-sse41.h | 17 #define LOAD_MSG_0_1(b0, b1) \ argument 25 #define LOAD_MSG_0_2(b0, b1) \ argument 33 #define LOAD_MSG_0_3(b0, b1) \ argument 41 #define LOAD_MSG_0_4(b0, b1) \ argument 49 #define LOAD_MSG_1_1(b0, b1) \ argument 57 #define LOAD_MSG_1_2(b0, b1) \ argument 65 #define LOAD_MSG_1_3(b0, b1) \ argument 73 #define LOAD_MSG_1_4(b0, b1) \ argument 81 #define LOAD_MSG_2_1(b0, b1) \ argument 89 #define LOAD_MSG_2_2(b0, b1) \ argument [all …]
|
D | blake2b-load-sse2.h | 17 #define LOAD_MSG_0_1(b0, b1) b0 = _mm_set_epi64x(m2, m0); b1 = _mm_set_epi64x(m6, m4) argument 18 #define LOAD_MSG_0_2(b0, b1) b0 = _mm_set_epi64x(m3, m1); b1 = _mm_set_epi64x(m7, m5) argument 19 #define LOAD_MSG_0_3(b0, b1) b0 = _mm_set_epi64x(m10, m8); b1 = _mm_set_epi64x(m14, m12) argument 20 #define LOAD_MSG_0_4(b0, b1) b0 = _mm_set_epi64x(m11, m9); b1 = _mm_set_epi64x(m15, m13) argument 21 #define LOAD_MSG_1_1(b0, b1) b0 = _mm_set_epi64x(m4, m14); b1 = _mm_set_epi64x(m13, m9) argument 22 #define LOAD_MSG_1_2(b0, b1) b0 = _mm_set_epi64x(m8, m10); b1 = _mm_set_epi64x(m6, m15) argument 23 #define LOAD_MSG_1_3(b0, b1) b0 = _mm_set_epi64x(m0, m1); b1 = _mm_set_epi64x(m5, m11) argument 24 #define LOAD_MSG_1_4(b0, b1) b0 = _mm_set_epi64x(m2, m12); b1 = _mm_set_epi64x(m3, m7) argument 25 #define LOAD_MSG_2_1(b0, b1) b0 = _mm_set_epi64x(m12, m11); b1 = _mm_set_epi64x(m15, m5) argument 26 #define LOAD_MSG_2_2(b0, b1) b0 = _mm_set_epi64x(m0, m8); b1 = _mm_set_epi64x(m13, m2) argument [all …]
|
/third_party/boost/libs/beast/test/beast/core/ |
D | flat_buffer.cpp | 81 basic_flat_buffer<a_t> b1{30}; in testSpecialMembers() local 92 basic_flat_buffer<a_t> b1{30}; in testSpecialMembers() local 102 basic_flat_buffer<a_neq_t> b1{30}; in testSpecialMembers() local 115 basic_flat_buffer<a_t> b1; in testSpecialMembers() local 123 basic_flat_buffer<a_neq_t> b1; in testSpecialMembers() local 132 basic_flat_buffer<a_t> b1; in testSpecialMembers() local 139 basic_flat_buffer<a_neq_t> b1; in testSpecialMembers() local 148 flat_buffer b1; in testSpecialMembers() local 161 flat_buffer b1; in testSpecialMembers() local 172 basic_flat_buffer<na_t> b1; in testSpecialMembers() local [all …]
|
D | multi_buffer.cpp | 213 basic_multi_buffer<equal_t> b1{30}; in testMembers() local 225 basic_multi_buffer<equal_t> b1{30}; in testMembers() local 236 basic_multi_buffer<unequal_t> b1{30}; in testMembers() local 250 basic_multi_buffer<equal_t> b1; in testMembers() local 258 basic_multi_buffer<unequal_t> b1; in testMembers() local 267 basic_multi_buffer<equal_t> b1; in testMembers() local 274 basic_multi_buffer<unequal_t> b1; in testMembers() local 287 multi_buffer b1; in testMembers() local 298 basic_multi_buffer<na_t> b1; in testMembers() local 311 basic_multi_buffer<pocma_t> b1; in testMembers() local [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | declarationEmitDestructuring1.js | 4 function bar({a1, b1, c1}: { a1: number, b1: boolean, c1: string }): void { } property 5 function baz({a2, b2: {b1, c1}}: { a2: number, b2: { b1: boolean, c1: string } }): void { } property 16 var a1 = _a.a1, b1 = _a.b1, c1 = _a.c1; variable 26 declare function bar({ a1, b1, c1 }: { property 31 declare function baz({ a2, b2: { b1, c1 } }: { property 34 b1: boolean; property
|
D | destructuringVariableDeclaration1ES6.js | 9 var { b1: { b11 } = { b11: "string" } } = { b1: { b11: "world" } }; variable 33 var {e: [e1, e2, e3 = { b1: 1000, b4: 200 }]} = { e: [1, 2, { b1: 4, b4: 0 }] }; property 51 var { b1: { b11 } = { b11: "string" } } = { b1: { b11: "world" } }; variable 71 var { e: [e1, e2, e3 = { b1: 1000, b4: 200 }] } = { e: [1, 2, { b1: 4, b4: 0 }] }; property
|
D | assignmentCompatWithStringIndexer3.js | 9 var b1: { [x: string]: string; } variable 29 var b1; variable
|
D | declarationEmitDestructuring2.js | 4 function h([a, [b], [[c]], {x = 10, y: [a, b, c], z: {a1, b1}}]){ } field 5 function h1([a, [b], [[c]], {x = 10, y = [1, 2, 3], z: {a1, b1}}]){ } field 28 declare function h([a, [b], [[c]], { x, y: [a, b, c], z: { a1, b1 } }]: [any, [any], [[any]], { field 36 declare function h1([a, [b], [[c]], { x, y, z: { a1, b1 } }]: [any, [any], [[any]], { field
|
D | strictNullChecksNoWidening.js | 6 var b1 = []; variable 23 var b1 = []; variable
|
D | destructuringObjectBindingPatternAndAssignment1ES5.js | 13 var { b1, } = { b1:1, }; property 67 var b1 = { b1: 1 }.b1; variable
|
D | unusedVariablesWithUnderscoreInBindingElement.js | 28 const { a1: _a1, b1 } = { a1: 1, b1: 1 }; property 38 const { a1: _a1, b1 } = { a1: 1, b1: 1 }; property 54 } = { a1: 1, b1: { b11: { b111: 1, b112: 1 } }, c1: 1, d1: 1 }; property 112 var _a = { a1: 1, b1: 1 }, _a1 = _a.a1, b1 = _a.b1; property 119 var _a = { a1: 1, b1: 1 }, _a1 = _a.a1, b1 = _a.b1; property 124 …var _a = { a1: 1, b1: { b11: { b111: 1, b112: 1 } }, c1: 1, d1: 1 }, _a1 = _a.a1, _b = _a.b1.b11, … property
|
D | destructuringVariableDeclaration1ES5.js | 9 var { b1: { b11 } = { b11: "string" } } = { b1: { b11: "world" } }; variable 33 var {e: [e1, e2, e3 = { b1: 1000, b4: 200 }]} = { e: [1, 2, { b1: 4, b4: 0 }] }; property 56 var _c = { b1: { b11: "world" } }.b1, _d = _c === void 0 ? { b11: "string" } : _c, b11 = _d.b11; property 76 var _q = { e: [1, 2, { b1: 4, b4: 0 }] }.e, e1 = _q[0], e2 = _q[1], _r = _q[2], e3 = _r === void 0 … property
|
D | unionAndIntersectionInference2.js | 5 var b1: string | string[]; variable 29 var b1; variable
|
D | bestCommonTypeWithOptionalProperties.js | 11 var b1 = [x, y, z]; variable 23 var b1 = [x, y, z]; variable
|
/third_party/ffmpeg/libavcodec/ |
D | dirac_dwt.h | 95 #define COMPOSE_53iL0(b0, b1, b2)\ argument 98 #define COMPOSE_DIRAC53iH0(b0, b1, b2)\ argument 101 #define COMPOSE_DD97iH0(b0, b1, b2, b3, b4)\ argument 104 #define COMPOSE_DD137iL0(b0, b1, b2, b3, b4)\ argument 107 #define COMPOSE_HAARiL0(b0, b1)\ argument 110 #define COMPOSE_HAARiH0(b0, b1)\ argument 113 #define COMPOSE_FIDELITYiL0(b0, b1, b2, b3, b4, b5, b6, b7, b8)\ argument 116 #define COMPOSE_FIDELITYiH0(b0, b1, b2, b3, b4, b5, b6, b7, b8)\ argument 119 #define COMPOSE_DAUB97iL1(b0, b1, b2)\ argument 122 #define COMPOSE_DAUB97iH1(b0, b1, b2)\ argument [all …]
|
D | dirac_dwt_template.c | 49 TYPE *b1 = (TYPE *)_b1; in RENAME() local 180 int x, b0, b1, b2; in RENAME() local 209 TYPE *b1 = (TYPE *)_b1; in RENAME() local 221 TYPE *b1 = (TYPE *)_b1; in RENAME() local 235 TYPE *b1 = (TYPE *)_b1; in RENAME() local 248 TYPE *b1 = (TYPE *)_b1; in RENAME() local 261 TYPE *b1 = (TYPE *)_b[1]; in RENAME() local 278 TYPE *b1 = (TYPE *)_b[1]; in RENAME() local 295 TYPE *b1 = (TYPE *)_b1; in RENAME() local 307 TYPE *b1 = (TYPE *)_b1; in RENAME() local [all …]
|
D | snow_dwt.c | 194 static void vertical_decompose53iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, in vertical_decompose53iH0() 203 static void vertical_decompose53iL0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, in vertical_decompose53iL0() 217 DWTELEM *b1 = buffer + avpriv_mirror(-2, height - 1) * stride; in spatial_decompose53i() local 248 static void vertical_decompose97iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, in vertical_decompose97iH0() 257 static void vertical_decompose97iH1(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, in vertical_decompose97iH1() 266 static void vertical_decompose97iL0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, in vertical_decompose97iL0() 276 static void vertical_decompose97iL1(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, in vertical_decompose97iL1() 290 DWTELEM *b1 = buffer + avpriv_mirror(-4, height - 1) * stride; in spatial_decompose97i() local 365 static void vertical_compose53iH0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, in vertical_compose53iH0() 374 static void vertical_compose53iL0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, in vertical_compose53iL0() [all …]
|
/third_party/ffmpeg/libavutil/ |
D | colorspace.h | 102 #define RGB_TO_U_CCIR(r1, g1, b1, shift)\ argument 106 #define RGB_TO_V_CCIR(r1, g1, b1, shift)\ argument 114 #define RGB_TO_U_JPEG(r1, g1, b1)\ argument 118 #define RGB_TO_V_JPEG(r1, g1, b1)\ argument 130 #define RGB_TO_U_BT709(r1, g1, b1, shift)\ argument 134 #define RGB_TO_V_BT709(r1, g1, b1, shift)\ argument 142 #define RGB_TO_U_BT709_FULL(r1, g1, b1)\ argument 146 #define RGB_TO_V_BT709_FULL(r1, g1, b1)\ argument
|
/third_party/boost/boost/xpressive/ |
D | regex_constants.hpp | 240 inline syntax_option_type operator &(syntax_option_type b1, syntax_option_type b2) in operator &() 247 inline syntax_option_type operator |(syntax_option_type b1, syntax_option_type b2) in operator |() 253 inline syntax_option_type operator ^(syntax_option_type b1, syntax_option_type b2) in operator ^() 265 inline match_flag_type operator &(match_flag_type b1, match_flag_type b2) in operator &() 271 inline match_flag_type operator |(match_flag_type b1, match_flag_type b2) in operator |() 277 inline match_flag_type operator ^(match_flag_type b1, match_flag_type b2) in operator ^()
|
/third_party/typescript/tests/cases/fourslash/ |
D | renameImportOfExportEquals.ts | 18 const [N0Def, N0, x0Def, x0, N1Def, N1, a0Def, a0, a1Def, a1, b0Def, b0, b1, x1] = test.ranges(); constant 21 const bRanges = [b0, b1]; constant 26 const bGroup = { definition: "(alias) namespace N\nimport N", ranges: [b0, b1] }; constant
|
/third_party/typescript/tests/cases/compiler/ |
D | unusedVariablesWithUnderscoreInBindingElement.ts | 4 const [_a1, b1] = [1, 2]; constant 14 const [_a1, b1] = [1, 2]; constant 29 const { a1: _a1, b1 } = { a1: 1, b1: 1 }; constant 39 const { a1: _a1, b1 } = { a1: 1, b1: 1 }; constant 47 b1: { constant
|
/third_party/boost/libs/serialization/test/ |
D | test_smart_cast.cpp | 48 Base1 & b1 = static_cast<Base1 &>(d); in test_static_reference_cast_2() local 72 Base1 & b1 = static_cast<Base1 &>(d); in test_static_reference_cast_1() local 154 VBase1 &b1 = dynamic_cast<VBase1 &>(d); in test_dynamic_reference_cast_2() local 178 VBase1 &b1 = dynamic_cast<VBase1 &>(d); in test_dynamic_reference_cast_1() local
|
/third_party/boost/libs/type_erasure/test/ |
D | test_binding.cpp | 26 binding<boost::mpl::vector<> > b1(m1); in BOOST_AUTO_TEST_CASE() local 58 binding<typeid_<_a> > b1(m1); in BOOST_AUTO_TEST_CASE() local 85 binding<boost::mpl::vector<typeid_<_a>, typeid_<_b> > > b1(m1); in BOOST_AUTO_TEST_CASE() local
|
/third_party/boost/libs/locale/src/icu/ |
D | collator.cpp | 44 char const *b1,char const *e1, in do_utf8_compare() 56 CharType const *b1,CharType const *e1, in do_ustring_compare() 66 CharType const *b1,CharType const *e1, in do_real_compare() 74 CharType const *b1,CharType const *e1, in do_compare() 165 char const *b1,char const *e1, in do_real_compare()
|
/third_party/pulseaudio/src/pulsecore/filter/ |
D | biquad.c | 29 static void set_coefficient(struct biquad *bq, double b0, double b1, double b2, in set_coefficient() 58 double b1 = 2 * 2 * alpha; in biquad_lowpass() local 90 double b1 = 2 * -2 * alpha; in biquad_highpass() local
|