/third_party/toybox/tests/files/bc/ |
D | bessel.txt | 1 j(0, 0) 2 j(0, .5) 3 j(0, -.5) 4 j(0, 1) 5 j(0, -1) 6 j(0, 1.5) 7 j(0, -1.5) 8 j(0, 1.74) 9 j(0, -1.74) 10 j(0, 2) [all …]
|
/third_party/freetype/docs/reference/assets/javascripts/lunr/ |
D | lunr.pt.js | 17 …j,C,r;e.pt=function(){this.pipeline.reset(),this.pipeline.add(e.pt.trimmer,e.pt.stopWordFilter,e.p…
|
/third_party/json/test/src/ |
D | unit-inspection.cpp | 45 json j {{"foo", 1}, {"bar", false}}; variable 46 CHECK(!j.is_null()); 47 CHECK(!j.is_boolean()); 48 CHECK(!j.is_number()); 49 CHECK(!j.is_number_integer()); 50 CHECK(!j.is_number_unsigned()); 51 CHECK(!j.is_number_float()); 52 CHECK(!j.is_binary()); 53 CHECK(j.is_object()); 54 CHECK(!j.is_array()); [all …]
|
D | unit-element_access1.cpp | 39 json j = {1, 1u, true, nullptr, "string", 42.23, json::object(), {1, 2, 3}}; variable 40 const json j_const = j; 46 CHECK(j.at(0) == json(1)); 47 CHECK(j.at(1) == json(1u)); 48 CHECK(j.at(2) == json(true)); 49 CHECK(j.at(3) == json(nullptr)); 50 CHECK(j.at(4) == json("string")); 51 CHECK(j.at(5) == json(42.23)); 52 CHECK(j.at(6) == json::object()); 53 CHECK(j.at(7) == json({1, 2, 3})); [all …]
|
D | unit-constructor1.cpp | 54 json j(t); 55 CHECK(j.type() == t); 61 json j(t); 62 CHECK(j.type() == t); 68 json j(t); 69 CHECK(j.type() == t); 75 json j(t); 76 CHECK(j.type() == t); 82 json j(t); 83 CHECK(j.type() == t); [all …]
|
D | unit-capacity.cpp | 41 json j = true; variable 42 const json j_const(j); 46 CHECK(j.empty() == false); 52 CHECK(j.empty() == (j.begin() == j.end())); 59 json j = "hello world"; variable 60 const json j_const(j); 64 CHECK(j.empty() == false); 70 CHECK(j.empty() == (j.begin() == j.end())); 79 json j = json::array(); variable 80 const json j_const(j); [all …]
|
D | unit-constructor2.cpp | 41 json j {{"foo", 1}, {"bar", false}}; variable 42 json k(j); 43 CHECK(j == k); 48 json j {"foo", 1, 42.23, false}; variable 49 json k(j); 50 CHECK(j == k); 55 json j(nullptr); 56 json k(j); 57 CHECK(j == k); 62 json j(true); [all …]
|
D | unit-modifiers.cpp | 41 json j = true; variable 42 json k = j; 44 j.clear(); 45 CHECK(j == json(json::value_t::boolean)); 46 CHECK(j == json(k.type())); 51 json j = "hello world"; variable 52 json k = j; 54 j.clear(); 55 CHECK(j == json(json::value_t::string)); 56 CHECK(j == json(k.type())); [all …]
|
D | unit-iterators1.cpp | 52 json j = true; variable 53 json j_const(j); 57 json::iterator it = j.begin(); 58 CHECK(it != j.end()); 59 CHECK(*it == j); 62 CHECK(it != j.begin()); 63 CHECK(it == j.end()); 66 CHECK(it == j.begin()); 67 CHECK(it != j.end()); 68 CHECK(*it == j); [all …]
|
/third_party/python/Lib/ |
D | _markupbase.py | 48 def updatepos(self, i, j): argument 49 if i >= j: 50 return j 52 nlines = rawdata.count("\n", i, j) 55 pos = rawdata.rindex("\n", i, j) # Should not fail 56 self.offset = j-(pos+1) 58 self.offset = self.offset + j-i 59 return j 76 j = i + 2 77 assert rawdata[i:j] == "<!", "unexpected call to parse_declaration" [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | tpeldsp.c | 56 int i, j; in put_tpel_pixels_mc10_c() local 59 for (j = 0; j < width; j++) in put_tpel_pixels_mc10_c() 60 dst[j] = ((2 * src[j] + src[j + 1] + 1) * in put_tpel_pixels_mc10_c() 70 int i, j; in put_tpel_pixels_mc20_c() local 73 for (j = 0; j < width; j++) in put_tpel_pixels_mc20_c() 74 dst[j] = ((src[j] + 2 * src[j + 1] + 1) * in put_tpel_pixels_mc20_c() 84 int i, j; in put_tpel_pixels_mc01_c() local 87 for (j = 0; j < width; j++) in put_tpel_pixels_mc01_c() 88 dst[j] = ((2 * src[j] + src[j + stride] + 1) * in put_tpel_pixels_mc01_c() 98 int i, j; in put_tpel_pixels_mc11_c() local [all …]
|
D | synth_filter.c | 33 int i, j; in synth_filter_float() local 42 for (j = 0; j < 512 - *synth_buf_offset; j += 64) { in synth_filter_float() 43 a += window[i + j ] * (-synth_buf[15 - i + j ]); in synth_filter_float() 44 b += window[i + j + 16] * ( synth_buf[ i + j ]); in synth_filter_float() 45 c += window[i + j + 32] * ( synth_buf[16 + i + j ]); in synth_filter_float() 46 d += window[i + j + 48] * ( synth_buf[31 - i + j ]); in synth_filter_float() 48 for ( ; j < 512; j += 64) { in synth_filter_float() 49 a += window[i + j ] * (-synth_buf[15 - i + j - 512]); in synth_filter_float() 50 b += window[i + j + 16] * ( synth_buf[ i + j - 512]); in synth_filter_float() 51 c += window[i + j + 32] * ( synth_buf[16 + i + j - 512]); in synth_filter_float() [all …]
|
/third_party/libsnd/src/ALAC/ |
D | matrix_dec.c | 65 int32_t j ; in unmix16() local 70 for (j = 0 ; j < numSamples ; j++) in unmix16() 74 l = u [j] + v [j] - ((mixres * v [j]) >> mixbits) ; in unmix16() 75 r = l - v [j] ; in unmix16() 85 for (j = 0 ; j < numSamples ; j++) in unmix16() 87 out [0] = u [j] << 16 ; in unmix16() 88 out [1] = v [j] << 16 ; in unmix16() 100 int32_t j ; in unmix20() local 105 for (j = 0 ; j < numSamples ; j++) in unmix20() 109 l = u [j] + v [j] - ((mixres * v [j]) >> mixbits) ; in unmix20() [all …]
|
/third_party/libwebsockets/plugins/ssh-base/crypto/ |
D | smult_curve25519_ref.c | 11 unsigned int j; in add() local 14 for (j = 0;j < 31;++j) { u += a[j] + b[j]; out[j] = u & 255; u >>= 8; } in add() 20 unsigned int j; in sub() local 23 for (j = 0;j < 31;++j) { in sub() 24 u += a[j] + 65280 - b[j]; in sub() 25 out[j] = u & 255; in sub() 34 unsigned int j; in squeeze() local 37 for (j = 0;j < 31;++j) { u += a[j]; a[j] = u & 255; u >>= 8; } in squeeze() 40 for (j = 0;j < 31;++j) { u += a[j]; a[j] = u & 255; u >>= 8; } in squeeze() 51 unsigned int j; in freeze() local [all …]
|
/third_party/json/include/nlohmann/detail/conversions/ |
D | to_json.hpp | 31 static void construct(BasicJsonType& j, typename BasicJsonType::boolean_t b) noexcept in construct() 33 j.m_type = value_t::boolean; in construct() 34 j.m_value = b; in construct() 35 j.assert_invariant(); in construct() 43 static void construct(BasicJsonType& j, const typename BasicJsonType::string_t& s) in construct() 45 j.m_type = value_t::string; in construct() 46 j.m_value = s; in construct() 47 j.assert_invariant(); in construct() 51 static void construct(BasicJsonType& j, typename BasicJsonType::string_t&& s) in construct() 53 j.m_type = value_t::string; in construct() [all …]
|
/third_party/boost/libs/type_traits/tools/ |
D | specialisations.cpp | 19 unsigned i, j; in main() local 27 for(j = 0; j < i; ++j) in main() 29 os << ", class A" << j; in main() 36 for(j = 0; j < i; ++j) in main() 38 if(j) os << ", "; in main() 39 os << "A" << j; in main() 51 for(j = 0; j < i; ++j) in main() 53 os << ", class A" << j; in main() 60 for(j = 0; j < i; ++j) in main() 62 if(j) os << ", "; in main() [all …]
|
/third_party/boost/boost/math/interpolators/ |
D | catmull_rom.hpp | 167 for(size_t j = 0; j < size(m_pnts[0]); ++j) in operator ()() local 169 A1_or_A3[j] = denom*(s1s*m_pnts[i-1][j] - s0s*m_pnts[i][j]); in operator ()() 173 for(size_t j = 0; j < size(m_pnts[0]); ++j) in operator ()() local 175 A2_or_B2[j] = denom21*(s2s*m_pnts[i][j] - s1s*m_pnts[i+1][j]); in operator ()() 180 for(size_t j = 0; j < size(m_pnts[0]); ++j) in operator ()() local 182 B1_or_C[j] = denom*(s2s*A1_or_A3[j] - s0s*A2_or_B2[j]); in operator ()() 186 for(size_t j = 0; j < size(m_pnts[0]); ++j) in operator ()() local 188 A1_or_A3[j] = denom*(s3s*m_pnts[i+1][j] - s2s*m_pnts[i+2][j]); in operator ()() 193 for(size_t j = 0; j < size(m_pnts[0]); ++j) in operator ()() local 195 B2[j] = denom*(s3s*A2_or_B2[j] - s1s*A1_or_A3[j]); in operator ()() [all …]
|
/third_party/quickjs/tests/ |
D | microbench.js | 135 var i, j, n, t, t1, ti, nb_its, ref, ti_n, ti_n1, min_ti; 145 for (j = 0; j < max_iterations; j++) { 176 var j; 177 for(j = 0; j < n; j++) { 183 var j; 184 for(j = 0; j < n; j++) { 192 var obj, sum, j; 195 for(j = 0; j < n; j++) { 207 var obj, j; 209 for(j = 0; j < n; j++) { [all …]
|
/third_party/mksh/ |
D | jobs.c | 288 Job *j; in j_exit() local 291 for (j = job_list; j != NULL; j = j->next) { in j_exit() 292 if (j->ppid == procpid && in j_exit() 293 (j->state == PSTOPPED || in j_exit() 294 (j->state == PRUNNING && in j_exit() 295 ((j->flags & JF_FG) || in j_exit() 298 if (j->pgrp == 0) in j_exit() 299 kill_job(j, SIGHUP); in j_exit() 301 mksh_killpg(j->pgrp, SIGHUP); in j_exit() 303 if (j->state == PSTOPPED) { in j_exit() [all …]
|
/third_party/glib/tests/ |
D | slice-threadinit.c | 55 guint i, j, n_trials = N_PAGES * PAGE_SIZE / SAMPLE_SIZE; /* upper bound */ in allocate_from_known_page() local 62 for (j = 0; j < N_PAGES; j++) in allocate_from_known_page() 63 if (pages[j].page == p) in allocate_from_known_page() 73 int j, n_pages = 0; in main() local 77 for (j = 0; j < N_MAGAZINE_PROBES; j++) in main() 78 mps[j] = g_slice_alloc (magazine_probes[j]); in main() 86 for (j = 0; j < N_PAGES; j++) in main() 87 if (pages[j].page == p) in main() 89 if (j < N_PAGES) /* known page */ in main() 93 j = n_pages++; in main() [all …]
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_spline.cpp | 85 int32 j; in Solve() local 90 for (j = start + 2; j < end; ++j) in Solve() 93 real64 C = X [j] - X [j-1]; in Solve() 94 real64 D = (Y [j] - Y [j-1]) / C; in Solve() 96 S [j-1] = (B * C + D * A) / (A + C); in Solve() 122 for (j = start+1; j < end - 1; ++j) in Solve() 125 A = (X [j+1] - X [j-1]) * 2.0; in Solve() 127 E [j] = (X [j+1] - X [j]) / A; in Solve() 128 F [j] = (X [j] - X [j-1]) / A; in Solve() 129 G [j] = 1.5 * S [j]; in Solve() [all …]
|
/third_party/flutter/skia/tests/ |
D | SkRasterPipelineTest.cpp | 117 for (unsigned j = 0; j < i; j++) { in DEF_TEST() local 119 if (buffer[j][k] != data[j][k]) { in DEF_TEST() 120 ERRORF(r, "(%u, %u) - a: %g r: %g\n", j, k, data[j][k], buffer[j][k]); in DEF_TEST() 124 for (int j = i; j < 4; j++) { in DEF_TEST() local 125 for (auto f : buffer[j]) { in DEF_TEST() 151 for (unsigned j = 0; j < i; j++) { in DEF_TEST() local 153 if (buffer[j][k] != data[j][k]) { in DEF_TEST() 154 ERRORF(r, "(%u, %u) - a: %g r: %g\n", j, k, data[j][k], buffer[j][k]); in DEF_TEST() 157 if (buffer[j][2] != 0) { in DEF_TEST() 158 ERRORF(r, "(%u, 2) - a: 0 r: %g\n", j, buffer[j][2]); in DEF_TEST() [all …]
|
/third_party/skia/tests/ |
D | SkRasterPipelineTest.cpp | 117 for (unsigned j = 0; j < i; j++) { in DEF_TEST() local 119 if (buffer[j][k] != data[j][k]) { in DEF_TEST() 120 ERRORF(r, "(%u, %u) - a: %g r: %g\n", j, k, data[j][k], buffer[j][k]); in DEF_TEST() 124 for (int j = i; j < 4; j++) { in DEF_TEST() local 125 for (auto f : buffer[j]) { in DEF_TEST() 151 for (unsigned j = 0; j < i; j++) { in DEF_TEST() local 153 if (buffer[j][k] != data[j][k]) { in DEF_TEST() 154 ERRORF(r, "(%u, %u) - a: %g r: %g\n", j, k, data[j][k], buffer[j][k]); in DEF_TEST() 157 if (buffer[j][2] != 0) { in DEF_TEST() 158 ERRORF(r, "(%u, 2) - a: 0 r: %g\n", j, buffer[j][2]); in DEF_TEST() [all …]
|
/third_party/gettext/gettext-tools/src/ |
D | str-list.c | 83 size_t j; in string_list_append_unique() local 86 for (j = 0; j < slp->nitems; ++j) in string_list_append_unique() 87 if (strcmp (slp->item[j], s) == 0) in string_list_append_unique() 108 size_t j; in string_list_destroy() local 110 for (j = 0; j < slp->nitems; ++j) in string_list_destroy() 111 free ((char *) slp->item[j]); in string_list_destroy() 121 size_t j; in string_list_free() local 123 for (j = 0; j < slp->nitems; ++j) in string_list_free() 124 free ((char *) slp->item[j]); in string_list_free() 137 size_t j; in string_list_concat() local [all …]
|
/third_party/boost/libs/numeric/odeint/examples/2d_lattice/ |
D | lattice2d.hpp | 43 for( int j = 0 ; j < N ; ++j ) in operator ()() local 45 const int j_l = (j-1+N) % N; in operator ()() 46 const int j_r = (j+1) % N; in operator ()() 47 dpdt[i][j] = - m_omega[i][j] * pow<Kappa-1>( q[i][j] ) in operator ()() 48 - m_beta * pow<Lambda-1>( q[i][j] - q[i][j_l] ) in operator ()() 49 - m_beta * pow<Lambda-1>( q[i][j] - q[i][j_r] ) in operator ()() 50 - m_beta * pow<Lambda-1>( q[i][j] - q[i_l][j] ) in operator ()() 51 - m_beta * pow<Lambda-1>( q[i][j] - q[i_r][j] ); in operator ()() 67 for( int j = 0 ; j < N ; ++j ) in energy() local 69 const int j_l = (j-1+N) % N; in energy() [all …]
|