Home
last modified time | relevance | path

Searched defs:b1 (Results 1 – 25 of 771) sorted by relevance

12345678910>>...31

/third_party/python/Modules/_blake2/impl/
Dblake2b-load-sse41.h17 #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 …]
Dblake2b-load-sse2.h17 #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/
Dflat_buffer.cpp81 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 …]
Dmulti_buffer.cpp213 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/
DdeclarationEmitDestructuring1.js4 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
DdestructuringVariableDeclaration1ES6.js9 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
DassignmentCompatWithStringIndexer3.js9 var b1: { [x: string]: string; } variable
29 var b1; variable
DdeclarationEmitDestructuring2.js4 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
DstrictNullChecksNoWidening.js6 var b1 = []; variable
23 var b1 = []; variable
DdestructuringObjectBindingPatternAndAssignment1ES5.js13 var { b1, } = { b1:1, }; property
67 var b1 = { b1: 1 }.b1; variable
DunusedVariablesWithUnderscoreInBindingElement.js28 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
DdestructuringVariableDeclaration1ES5.js9 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
DunionAndIntersectionInference2.js5 var b1: string | string[]; variable
29 var b1; variable
DbestCommonTypeWithOptionalProperties.js11 var b1 = [x, y, z]; variable
23 var b1 = [x, y, z]; variable
/third_party/ffmpeg/libavcodec/
Ddirac_dwt.h95 #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 …]
Ddirac_dwt_template.c49 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 …]
Dsnow_dwt.c194 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/
Dcolorspace.h102 #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/
Dregex_constants.hpp240 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/
DrenameImportOfExportEquals.ts18 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/
DunusedVariablesWithUnderscoreInBindingElement.ts4 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/
Dtest_smart_cast.cpp48 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/
Dtest_binding.cpp26 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/
Dcollator.cpp44 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/
Dbiquad.c29 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

12345678910>>...31