/third_party/mingw-w64/mingw-w64-libraries/winpthreads/src/ |
D | cond.c | 197 cond_t *_c; in pthread_cond_init() local 205 if ( !(_c = calloc(1,sizeof(*_c))) ) { in pthread_cond_init() 208 _c->valid = DEAD_COND; in pthread_cond_init() 209 _c->busy = 0; in pthread_cond_init() 210 _c->waiters_count_ = 0; in pthread_cond_init() 211 _c->waiters_count_gone_ = 0; in pthread_cond_init() 212 _c->waiters_count_unblock_ = 0; in pthread_cond_init() 214 _c->sema_q = CreateSemaphore (NULL, /* no security */ in pthread_cond_init() 218 _c->sema_b = CreateSemaphore (NULL, /* no security */ in pthread_cond_init() 222 if (_c->sema_q == NULL || _c->sema_b == NULL) { in pthread_cond_init() [all …]
|
/third_party/boost/libs/hana/test/integral_constant/ |
D | udl.cpp | 16 BOOST_HANA_CONSTANT_CHECK(0_c == hana::llong_c<0>); 17 BOOST_HANA_CONSTANT_CHECK(1_c == hana::llong_c<1>); 18 BOOST_HANA_CONSTANT_CHECK(12_c == hana::llong_c<12>); 19 BOOST_HANA_CONSTANT_CHECK(123_c == hana::llong_c<123>); 20 BOOST_HANA_CONSTANT_CHECK(1234567_c == hana::llong_c<1234567>); 21 BOOST_HANA_CONSTANT_CHECK(-34_c == hana::llong_c<-34>); 25 decltype(-1234_c)::value_type, 28 static_assert(-1234_c == -1234ll, ""); 29 BOOST_HANA_CONSTANT_CHECK(-12_c < 0_c); 35 BOOST_HANA_CONSTANT_CHECK(deadbeef == 0xDEADBEEF_c); [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | destructuringWithLiteralInitializers2.js | 49 var _b = _a === void 0 ? [] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, y = _b[1]; 52 var _b = _a === void 0 ? [1] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, y = _b[1]; 55 var _b = _a === void 0 ? [1, 'foo'] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, y = _b[1]; 58 var _b = _a[0], x = _b === void 0 ? 0 : _b, _c = _a[1], y = _c === void 0 ? 'bar' : _c; 61 …var _b = _a === void 0 ? [] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = _d === v… 64 …var _b = _a === void 0 ? [1] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = _d === … 67 …var _b = _a === void 0 ? [1, 'foo'] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = … 70 var _b = _a[0], x = _b === void 0 ? 0 : _b, _c = _a[1], y = _c === void 0 ? 'bar' : _c; 73 …var _b = _a === void 0 ? [] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = _d === v… 76 …var _b = _a === void 0 ? [nx] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = _d ===… [all …]
|
D | es5-asyncFunctionForInStatements.js | 54 return __generator(this, function (_c) { argument 55 switch (_c.label) { 60 for (_b in _c.sent()) 63 _c.label = 2; 68 _c.label = 3; 80 return __generator(this, function (_c) { argument 81 switch (_c.label) { 87 _c.label = 1; 93 _c.sent(); 94 _c.label = 3; [all …]
|
D | destructuringWithLiteralInitializers.js | 83 var _b = _a.x, x = _b === void 0 ? 0 : _b, _c = _a.y, y = _c === void 0 ? 0 : _c; 97 var _b = _a === void 0 ? { x: 0 } : _a, x = _b.x, _c = _b.y, y = _c === void 0 ? 0 : _c; 104 …var _b = _a === void 0 ? {} : _a, _c = _b.x, x = _c === void 0 ? 0 : _c, _d = _b.y, y = _d === voi… 113 …var _b = _a === void 0 ? { a: {} } : _a, _c = _b.a, _d = _c.x, x = _d === void 0 ? 0 : _d, _e = _c… 127 var _b = _a[0], x = _b === void 0 ? 0 : _b, _c = _a[1], y = _c === void 0 ? 0 : _c; 138 var _b = _a === void 0 ? [0] : _a, x = _b[0], _c = _b[1], y = _c === void 0 ? 0 : _c; 144 …var _b = _a === void 0 ? [] : _a, _c = _b[0], x = _c === void 0 ? 0 : _c, _d = _b[1], y = _d === v…
|
D | unusedVariablesWithUnderscoreInBindingElement.js | 98 var _c = [1, 2], _a3 = _c[0], _b3 = _c[1]; 103 var _c = [1, 2], a3 = _c[0], b3 = _c[1]; 108 …var _c = [1, [[2, 3]], 4, 5], _a2 = _c[0], _d = _c[1][0], _b2 = _d[0], _c2 = _d[1], _d2 = _c[2], _… 116 var _c = { a3: 1, b3: 1 }, _a3 = _c.a3, _b3 = _c.b3; variable 121 var _c = { a3: 1, b3: 1 }, a3 = _c.a3, b3 = _c.b3; variable 126 …r _c = { a2: 1, b2: { b21: { b211: 1, b212: 1 } }, c2: 1, d2: 1 }, _a2 = _c.a2, _d = _c.b2.b21, _b… variable 135 var _c = { _a3: 1, _b3: 1 }, _ignoreA3 = _c._a3, _ignoreB3 = _c._b3; variable
|
D | es5-asyncFunctionCallExpressions.js | 132 return __generator(this, function (_c) { argument 133 switch (_c.label) { 139 _a.apply(void 0, _b.concat([_c.sent()])); 171 var _a, _b, _c, _d; 176 _c = [void 0]; 180 …_b.apply(_a, _c.concat([__spreadArray.apply(void 0, [__spreadArray.apply(void 0, _d.concat([(_e.se… 188 var _a, _b, _c, _d; 193 _c = [void 0]; 197 … _b.apply(_a, _c.concat([__spreadArray.apply(void 0, _d.concat([[_e.sent()]]))])); 205 var _a, _b, _c; [all …]
|
D | es5-asyncFunctionNewExpressions.js | 131 return __generator(this, function (_c) { argument 132 switch (_c.label) { 138 new (_a.apply(x, _b.concat([_c.sent()])))(); 171 var _a, _b, _c, _d; 176 _c = [x]; 180 …new (_b.apply(_a, _c.concat([__spreadArray.apply(void 0, [__spreadArray.apply(void 0, _d.concat([(… 188 var _a, _b, _c, _d; 193 _c = [x]; 197 … new (_b.apply(_a, _c.concat([__spreadArray.apply(void 0, _d.concat([[_e.sent()]]))])))(); 205 var _a, _b, _c, _d; [all …]
|
D | sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues.js | 39 …ar _b = _a === void 0 ? [-1, "name", "skill"] : _a, _c = _b[1], nameA = _c === void 0 ? "noName" :… 43 …var _b = _a === void 0 ? [-1, "name", "skill"] : _a, _c = _b[0], numberB = _c === void 0 ? -1 : _c; 47 …var _b = _a === void 0 ? [-1, "name", "skill"] : _a, _c = _b[0], numberA2 = _c === void 0 ? -1 : _… 51 …var _b = _a === void 0 ? [-1, "name", "skill"] : _a, _c = _b[0], numberA3 = _c === void 0 ? -1 : _…
|
D | es5-yieldFunctionObjectLiterals.js | 88 return __generator(this, function (_c) { argument 89 switch (_c.label) { 97 x = (_b[_a] = _c.sent(), 107 return __generator(this, function (_c) { argument 108 switch (_c.label) { 115 x = (_b = (_a.b = _c.sent(), 146 return __generator(this, function (_c) { argument 147 switch (_c.label) { 155 x = (_b[_a] = _c.sent(), 183 return __generator(this, function (_c) { argument [all …]
|
D | optionalParameterInDestructuringWithInitializer.js | 70 var _b = _a === void 0 ? { a: 1, b: 2 } : _a, a = _b.a, _c = _b.b, b = _c === void 0 ? 3 : _c; 80 …var _b = _a === void 0 ? { a: { b: 1, c: 2 }, d: 3 } : _a, _c = _b.a, b = _c.b, c = _c.c, d = _b.d; 85 …var _b = _a === void 0 ? { a: { b: 1, c: 2 }, d: 3 } : _a, _c = _b.a, b = _c.b, _d = _c.c, c = _d … 90 … _a === void 0 ? { a: { b: 1, c: 2 }, d: 3 } : _a, _c = _b.a, _d = _c === void 0 ? { b: 4, c: 5 } … 95 … _a === void 0 ? { a: { b: 1, c: 2 }, d: 3 } : _a, _c = _b.a, _d = _c === void 0 ? { b: 4, c: 5 } … 105 var _b = _a === void 0 ? {} : _a, _c = _b.bar, bar = _c === void 0 ? null : _c;
|
D | genericObjectRest.js | 56 …b = sa, a1 = _a[_b], _c = sb, b1 = _a[_c], r1 = __rest(_a, [typeof _b === "symbol" ? _b : _b + "",… 59 …b = k1, a1 = _a[_b], _c = k2, a2 = _a[_c], r1 = __rest(_a, [typeof _b === "symbol" ? _b : _b + "",… 62 …b = k1, a1 = _a[_b], _c = k2, a2 = _a[_c], r1 = __rest(_a, [typeof _b === "symbol" ? _b : _b + "",…
|
D | shorthandPropertyAssignmentsInDestructuring.js | 206 var _a, _b, _c; 208 …(_a = {}, _b = _a.y2, y2 = _b === void 0 ? 5 : _b, _c = _a.y3, y3 = _c === void 0 ? { x: 1 } : _c); 211 var _a, _b, _c; 213 …(_a = {}, _b = _a.y2, y2 = _b === void 0 ? 5 : _b, _c = _a.y3, y3 = _c === void 0 ? { x: 1 } : _c); 216 var _a, _b, _c; 218 …(_a = {}, _b = _a.y4, y4 = _b === void 0 ? 5 : _b, _c = _a.y5, y5 = _c === void 0 ? { x: 1 } : _c); 221 var _a, _b, _c; 223 …(_a = {}, _b = _a.y4, y4 = _b === void 0 ? 5 : _b, _c = _a.y5, y5 = _c === void 0 ? { x: 1 } : _c); 239 var _b = _a.a, a = _b === void 0 ? 4 : _b, _c = _a.b, b = _c === void 0 ? { x: 5 } : _c;
|
/third_party/boost/libs/hana/example/misc/ |
D | restricted_function.cpp | 111 auto f = function(hana::make_set(1_c, 2_c, 3_c), hana::make_set(1_c, 2_c, 3_c, 4_c, 5_c, 6_c))( in main() 112 [](auto x) { return x + 1_c; } in main() 115 auto g = function(hana::make_set(1_c, 2_c, 3_c), hana::make_set(2_c, 3_c, 4_c))( in main() 116 [](auto x) { return x + 1_c; } in main() 119 auto h = function(hana::make_set(1_c, 2_c, 3_c), hana::make_set(0_c, 1_c, 2_c))( in main() 120 [](auto x) { return x - 1_c; } in main() 125 BOOST_HANA_CONSTANT_CHECK(f(1_c) == 2_c); in main() 127 BOOST_HANA_CONSTANT_CHECK(range(f) == hana::make_set(4_c, 3_c, 2_c)); in main() 128 BOOST_HANA_CONSTANT_CHECK(range(g) == hana::make_set(2_c, 3_c, 4_c)); in main() 129 BOOST_HANA_CONSTANT_CHECK(range(h) == hana::make_set(0_c, 1_c, 2_c)); in main() [all …]
|
/third_party/boost/libs/hana/example/ |
D | sort.cpp | 23 hana::sort(hana::make_tuple(1_c, -2_c, 3_c, 0_c)) == 24 hana::make_tuple(-2_c, 0_c, 1_c, 3_c) 29 hana::sort(hana::make_tuple(1_c, -2_c, 3_c, 0_c), hana::greater) == 30 hana::make_tuple(3_c, 1_c, 0_c, -2_c) 36 hana::make_tuple(2_c, 'x', nullptr), in main() 37 hana::make_tuple(1_c, "foobar"s, hana::int_c<4>) in main() 43 hana::make_tuple(1_c, "foobar"s, hana::int_c<4>), in main() 44 hana::make_tuple(2_c, 'x', nullptr) in main()
|
D | drop_while.cpp | 28 hana::drop_while(hana::make_tuple(1_c, -2_c, 4_c, 5_c), negative) 30 hana::make_tuple(1_c, -2_c, 4_c, 5_c)
|
/third_party/mingw-w64/mingw-w64-headers/crt/ |
D | ctype.h | 240 #define iswalpha(_c) (iswctype(_c,_ALPHA)) argument 241 #define iswupper(_c) (iswctype(_c,_UPPER)) argument 242 #define iswlower(_c) (iswctype(_c,_LOWER)) argument 243 #define iswdigit(_c) (iswctype(_c,_DIGIT)) argument 244 #define iswxdigit(_c) (iswctype(_c,_HEX)) argument 245 #define iswspace(_c) (iswctype(_c,_SPACE)) argument 246 #define iswpunct(_c) (iswctype(_c,_PUNCT)) argument 247 #define iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT)) argument 248 #define iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT)) argument 249 #define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT)) argument [all …]
|
D | wctype.h | 142 #define iswalpha(_c) (iswctype(_c,_ALPHA)) argument 143 #define iswupper(_c) (iswctype(_c,_UPPER)) argument 144 #define iswlower(_c) (iswctype(_c,_LOWER)) argument 145 #define iswdigit(_c) (iswctype(_c,_DIGIT)) argument 146 #define iswxdigit(_c) (iswctype(_c,_HEX)) argument 147 #define iswspace(_c) (iswctype(_c,_SPACE)) argument 148 #define iswpunct(_c) (iswctype(_c,_PUNCT)) argument 149 #define iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT)) argument 150 #define iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT)) argument 151 #define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT)) argument [all …]
|
/third_party/boost/libs/histogram/test/ |
D | algorithm_project_test.cpp | 42 auto hx = project(h, 0_c); in run_tests() 45 BOOST_TEST_EQ(hx.axis(), h.axis(0_c)); in run_tests() 49 auto hy = project(h, 1_c); in run_tests() 52 BOOST_TEST_EQ(hy.axis(), h.axis(1_c)); in run_tests() 57 auto hyx = project(h, 1_c, 0_c); in run_tests() 60 BOOST_TEST_EQ(hyx.axis(0_c), h.axis(1_c)); in run_tests() 61 BOOST_TEST_EQ(hyx.axis(1_c), h.axis(0_c)); in run_tests() 79 auto h_0 = project(h, 0_c); in run_tests() 86 auto h_1 = project(h, 1_c); in run_tests() 93 auto h_2 = project(h, 2_c); in run_tests() [all …]
|
/third_party/boost/boost/random/ |
D | triangle_distribution.hpp | 55 : _a(a_arg), _b(b_arg), _c(c_arg) in param_type() 57 BOOST_ASSERT(_a <= _b && _b <= _c); in param_type() 65 RealType c() const { return _c; } in c() 70 os << parm._a << " " << parm._b << " " << parm._c; in BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR() 82 parm._c = c_in; in BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR() 92 { return lhs._a == rhs._a && lhs._b == rhs._b && lhs._c == rhs._c; } in BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR() 100 RealType _c; member in boost::random::triangle_distribution::param_type 112 : _a(a_arg), _b(b_arg), _c(c_arg) in triangle_distribution() 114 BOOST_ASSERT(_a <= _b && _b <= _c); in triangle_distribution() 120 : _a(parm.a()), _b(parm.b()), _c(parm.c()) in triangle_distribution() [all …]
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | gen-vowel-constraints.py | 68 self._c = constraint 76 if isinstance (self._c, list): 77 if constraint == self._c[:len (constraint)]: 78 self._c = constraint 79 elif self._c != constraint[:len (self._c)]: 80 self._c = {self._c[0]: ConstraintSet (self._c[1:])} 81 if isinstance (self._c, dict): 82 if first in self._c: 83 self._c[first].add (rest) 85 self._c[first] = ConstraintSet (rest) [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | h264idct.h | 25 void ff_h264_idct8_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\ 26 void ff_h264_idct_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\ 27 void ff_h264_idct8_dc_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\ 28 void ff_h264_idct_dc_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\ 29 void ff_h264_idct_add16_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, int s… 30 void ff_h264_idct_add16intra_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, … 31 void ff_h264_idct8_add4_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, int s… 32 void ff_h264_idct_add8_422_ ## depth ## _c(uint8_t **dest, const int *blockoffset, int16_t *block, … 33 void ff_h264_idct_add8_ ## depth ## _c(uint8_t **dest, const int *blockoffset, int16_t *block, int … 34 void ff_h264_luma_dc_dequant_idct_ ## depth ## _c(int16_t *output, int16_t *input, int qmul);\ [all …]
|
/third_party/harfbuzz/src/ |
D | gen-vowel-constraints.py | 62 self._c = constraint 70 if isinstance (self._c, list): 71 if constraint == self._c[:len (constraint)]: 72 self._c = constraint 73 elif self._c != constraint[:len (self._c)]: 74 self._c = {self._c[0]: ConstraintSet (self._c[1:])} 75 if isinstance (self._c, dict): 76 if first in self._c: 77 self._c[first].add (rest) 79 self._c[first] = ConstraintSet (rest) [all …]
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-vowel-constraints.py | 62 self._c = constraint 70 if isinstance (self._c, list): 71 if constraint == self._c[:len (constraint)]: 72 self._c = constraint 73 elif self._c != constraint[:len (self._c)]: 74 self._c = {self._c[0]: ConstraintSet (self._c[1:])} 75 if isinstance (self._c, dict): 76 if first in self._c: 77 self._c[first].add (rest) 79 self._c[first] = ConstraintSet (rest) [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/ |
D | gstdrawhelpers.h | 24 #define draw_dot(_vd, _x, _y, _st, _c) G_STMT_START { \ argument 25 _vd[(_y * _st) + _x] = _c; \ 28 #define draw_dot_c(_vd, _x, _y, _st, _c) G_STMT_START { \ argument 29 _vd[(_y * _st) + _x] |= _c; \ 32 #define draw_dot_aa(_vd, _x, _y, _st, _c, _f) G_STMT_START { \ argument 36 _c3 = (_oc & 0xff) + ((_c & 0xff) * _f); \ 38 _c2 = ((_oc & 0xff00) >> 8) + (((_c & 0xff00) >> 8) * _f); \ 40 _c1 = ((_oc & 0xff0000) >> 16) + (((_c & 0xff0000) >> 16) * _f); \ 45 #define draw_line(_vd, _x1, _x2, _y1, _y2, _st, _c) G_STMT_START { \ argument 55 draw_dot (_vd, _x, _y, _st, _c); \ [all …]
|