| /external/clang/test/Modules/ |
| D | exponential-paths.cpp | 3 // RUN: rm -rf %t 4 // RUN: mkdir %t 6 // Build module map with 40 modules; two layers with importing and re-exporting 9 // RUN: echo 'module a0 { header "a0.h" export * }' > %t/module.modulemap 10 // RUN: echo 'module b0 { header "b0.h" export * }' >> %t/module.modulemap 11 // RUN: echo 'module a1 { header "a1.h" export * }' >> %t/module.modulemap 12 // RUN: echo 'module b1 { header "b1.h" export * }' >> %t/module.modulemap 13 // RUN: echo 'module a2 { header "a2.h" export * }' >> %t/module.modulemap 14 // RUN: echo 'module b2 { header "b2.h" export * }' >> %t/module.modulemap 15 // RUN: echo 'module a3 { header "a3.h" export * }' >> %t/module.modulemap [all …]
|
| /external/armnn/src/armnn/test/ |
| D | ProfilerTests.cpp | 3 // SPDX-License-Identifier: MIT 26 return static_cast<size_t>(-1); in GetProfilerEventSequenceSize() 29 return profiler->m_EventSequence.size(); in GetProfilerEventSequenceSize() 38 // Important! Don't use BOOST_TEST macros in this function as they in RegisterUnregisterProfilerSingleThreadImpl() 57 // Check that the profiler has been un-registered for this thread. in RegisterUnregisterProfilerSingleThreadImpl() 72 BOOST_TEST(!profiler->IsProfilingEnabled()); in BOOST_AUTO_TEST_CASE() 75 profiler->EnableProfiling(true); in BOOST_AUTO_TEST_CASE() 78 BOOST_TEST(profiler->IsProfilingEnabled()); in BOOST_AUTO_TEST_CASE() 81 profiler->EnableProfiling(false); in BOOST_AUTO_TEST_CASE() 84 BOOST_TEST(!profiler->IsProfilingEnabled()); in BOOST_AUTO_TEST_CASE() [all …]
|
| /external/python/cpython2/Tools/pybench/ |
| D | Tuples.py | 12 t = tuple(range(100)) 18 m = t[50:] 19 m = t[:25] 20 m = t[50:55] 21 m = t[:-1] 22 m = t[1:] 23 m = t[-10:] 24 m = t[:10] 26 m = t[50:] 27 m = t[:25] [all …]
|
| /external/oboe/samples/RhythmGame/third_party/glm/detail/ |
| D | type_vec2.inl | 7 template <typename T, precision P> 8 const tvec2<T, P> tvec2<T, P>::ZERO(static_cast<T>(0), static_cast<T>(0)); 10 template <typename T, precision P> 11 const tvec2<T, P> tvec2<T, P>::X(static_cast<T>(1), static_cast<T>(0)); 13 template <typename T, precision P> 14 const tvec2<T, P> tvec2<T, P>::Y(static_cast<T>(0), static_cast<T>(1)); 16 template <typename T, precision P> 17 const tvec2<T, P> tvec2<T, P>::XY(static_cast<T>(1), static_cast<T>(1)); 19 // -- Implicit basic constructors -- 22 template <typename T, precision P> [all …]
|
| D | type_vec3.inl | 8 template <typename T, precision P> 9 const tvec3<T, P> tvec3<T, P>::ZERO(static_cast<T>(0), static_cast<T>(0), static_cast<T>(0)); 11 template <typename T, precision P> 12 const tvec3<T, P> tvec3<T, P>::X(static_cast<T>(1), static_cast<T>(0), static_cast<T>(0)); 14 template <typename T, precision P> 15 const tvec3<T, P> tvec3<T, P>::Y(static_cast<T>(0), static_cast<T>(1), static_cast<T>(0)); 17 template <typename T, precision P> 18 const tvec3<T, P> tvec3<T, P>::Z(static_cast<T>(0), static_cast<T>(0), static_cast<T>(1)); 20 template <typename T, precision P> 21 const tvec3<T, P> tvec3<T, P>::XY(static_cast<T>(1), static_cast<T>(1), static_cast<T>(0)); [all …]
|
| D | type_vec1.inl | 6 // -- Implicit basic constructors -- 9 template <typename T, precision P> 10 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1() 18 template <typename T, precision P> 19 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(tvec1<T, P> const & v) argument 24 template <typename T, precision P> 26 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(tvec1<T, Q> const & v) argument 30 // -- Explicit basic constructors -- 32 template <typename T, precision P> 33 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(ctor) [all …]
|
| D | type_vec2.hpp | 18 template <typename T, precision P = defaultp> 21 // -- Implementation detail -- 23 typedef T value_type; 24 typedef tvec2<T, P> type; 27 // -- Data -- 30 T x, y; 35 # pragma GCC diagnostic ignored "-Wpedantic" 39 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct" 40 # pragma clang diagnostic ignored "-Wnested-anon-types" 45 struct{ T x, y; }; [all …]
|
| D | type_vec3.hpp | 18 template <typename T, precision P = defaultp> 21 // -- Implementation detail -- 23 typedef T value_type; 24 typedef tvec3<T, P> type; 27 // -- Data -- 30 T x, y, z; 35 # pragma GCC diagnostic ignored "-Wpedantic" 39 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct" 40 # pragma clang diagnostic ignored "-Wnested-anon-types" 45 struct{ T x, y, z; }; [all …]
|
| D | type_vec4.hpp | 18 template <typename T, precision P = defaultp> 21 // -- Implementation detail -- 23 typedef T value_type; 24 typedef tvec4<T, P> type; 27 // -- Data -- 30 T x, y, z, w; 35 # pragma GCC diagnostic ignored "-Wpedantic" 39 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct" 40 # pragma clang diagnostic ignored "-Wnested-anon-types" 45 struct { T x, y, z, w;}; [all …]
|
| D | type_vec1.hpp | 19 template <typename T, precision P = defaultp> 22 // -- Implementation detail -- 24 typedef T value_type; 25 typedef tvec1<T, P> type; 28 // -- Data -- 31 T x; 36 # pragma GCC diagnostic ignored "-Wpedantic" 40 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct" 41 # pragma clang diagnostic ignored "-Wnested-anon-types" 46 T x; [all …]
|
| D | type_vec4.inl | 7 template <typename T> 37 template <typename T, precision P, bool Aligned> 40 GLM_FUNC_QUALIFIER static tvec4<T, P> call(tvec4<T, P> const & a, tvec4<T, P> const & b) 42 return tvec4<T, P>(a.x + b.x, a.y + b.y, a.z + b.z, a.w + b.w); 46 template <typename T, precision P, bool Aligned> 49 GLM_FUNC_QUALIFIER static tvec4<T, P> call(tvec4<T, P> const & a, tvec4<T, P> const & b) 51 return tvec4<T, P>(a.x - b.x, a.y - b.y, a.z - b.z, a.w - b.w); 55 template <typename T, precision P, bool Aligned> 58 GLM_FUNC_QUALIFIER static tvec4<T, P> call(tvec4<T, P> const & a, tvec4<T, P> const & b) 60 return tvec4<T, P>(a.x * b.x, a.y * b.y, a.z * b.z, a.w * b.w); [all …]
|
| /external/libcxx/test/std/re/re.traits/ |
| D | isctype.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 27 std::regex_traits<char> t; in main() local 30 assert( t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main() 31 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main() 32 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main() 33 assert( t.isctype('5', t.lookup_classname(s.begin(), s.end()))); in main() 34 assert(!t.isctype(' ', t.lookup_classname(s.begin(), s.end()))); in main() 35 assert(!t.isctype('-', t.lookup_classname(s.begin(), s.end()))); in main() 36 assert(!t.isctype('@', t.lookup_classname(s.begin(), s.end()))); in main() [all …]
|
| /external/ply/ply/example/ansic/ |
| D | cparse.py | 1 # ----------------------------------------------------------------------------- 5 # ----------------------------------------------------------------------------- 14 # translation-unit: 17 def p_translation_unit_1(t): argument 22 def p_translation_unit_2(t): argument 26 # external-declaration: 29 def p_external_declaration_1(t): argument 34 def p_external_declaration_2(t): argument 38 # function-definition: 41 def p_function_definition_1(t): argument [all …]
|
| /external/gemmlowp/internal/ |
| D | kernel_sse.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 52 // A 4x4 block of accumulators is stored in 32bit in xmm4--xmm7. in Run() 54 // +-------+-------+-------+-------+ in Run() 56 // Rhs +-------+---------------+-------+ in Run() 58 // +-------+-------+-------+-------+ in Run() 64 // +--+--+ - - - - +-------+-------+-------+-------+ in Run() 69 // +--+--+ - - - - +-------+-------+-------+-------+ in Run() 76 "pxor %%xmm4 , %%xmm4 \n\t" in Run() 77 "pxor %%xmm5 , %%xmm5 \n\t" in Run() 78 "pxor %%xmm6 , %%xmm6 \n\t" in Run() [all …]
|
| /external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
| D | matrix_transform.inl | 10 template <typename T, precision P> 11 GLM_FUNC_QUALIFIER tmat4x4<T, P> translate(tmat4x4<T, P> const & m, tvec3<T, P> const & v) argument 13 tmat4x4<T, P> Result(m); 18 template <typename T, precision P> 19 GLM_FUNC_QUALIFIER tmat4x4<T, P> rotate(tmat4x4<T, P> const & m, T angle, tvec3<T, P> const & v) argument 21 T const a = angle; 22 T const c = cos(a); 23 T const s = sin(a); 25 tvec3<T, P> axis(normalize(v)); 26 tvec3<T, P> temp((T(1) - c) * axis); [all …]
|
| D | noise.inl | 4 // Based on the work of Stefan Gustavson and Ashima Arts on "webgl-noise": 5 // https://github.com/ashima/webgl-noise 12 template <typename T, precision P> 13 GLM_FUNC_QUALIFIER tvec4<T, P> grad4(T const & j, tvec4<T, P> const & ip) argument 15 tvec3<T, P> pXYZ = floor(fract(tvec3<T, P>(j) * tvec3<T, P>(ip)) * T(7)) * ip[2] - T(1); 16 T pW = static_cast<T>(1.5) - dot(abs(pXYZ), tvec3<T, P>(1)); 17 tvec4<T, P> s = tvec4<T, P>(lessThan(tvec4<T, P>(pXYZ, pW), tvec4<T, P>(0.0))); 18 pXYZ = pXYZ + (tvec3<T, P>(s) * T(2) - T(1)) * s.w; 19 return tvec4<T, P>(pXYZ, pW); 24 template <typename T, precision P> [all …]
|
| D | quaternion.inl | 12 template <typename T, precision P, bool Aligned> 13 struct compute_dot<tquat, T, P, Aligned> 15 static GLM_FUNC_QUALIFIER T call(tquat<T, P> const& x, tquat<T, P> const& y) 17 tvec4<T, P> tmp(x.x * y.x, x.y * y.y, x.z * y.z, x.w * y.w); 22 template <typename T, precision P, bool Aligned> 25 static tquat<T, P> call(tquat<T, P> const& q, tquat<T, P> const& p) 27 return tquat<T, P>(q.w + p.w, q.x + p.x, q.y + p.y, q.z + p.z); 31 template <typename T, precision P, bool Aligned> 34 static tquat<T, P> call(tquat<T, P> const& q, tquat<T, P> const& p) 36 return tquat<T, P>(q.w - p.w, q.x - p.x, q.y - p.y, q.z - p.z); [all …]
|
| /external/llvm/unittests/ADT/ |
| D | TripleTest.cpp | 1 //===----------- Triple.cpp - Triple unit tests ---------------------------===// 8 //===----------------------------------------------------------------------===// 18 Triple T; in TEST() local 20 T = Triple(""); in TEST() 21 EXPECT_EQ("", T.getArchName().str()); in TEST() 22 EXPECT_EQ("", T.getVendorName().str()); in TEST() 23 EXPECT_EQ("", T.getOSName().str()); in TEST() 24 EXPECT_EQ("", T.getEnvironmentName().str()); in TEST() 26 T = Triple("-"); in TEST() 27 EXPECT_EQ("", T.getArchName().str()); in TEST() [all …]
|
| /external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/ |
| D | parsing.cc | 9 * http://www.apache.org/licenses/LICENSE-2.0 39 static grpc_error_handle init_frame_parser(grpc_chttp2_transport* t); 40 static grpc_error_handle init_header_frame_parser(grpc_chttp2_transport* t, 42 static grpc_error_handle init_data_frame_parser(grpc_chttp2_transport* t); 43 static grpc_error_handle init_rst_stream_parser(grpc_chttp2_transport* t); 44 static grpc_error_handle init_settings_frame_parser(grpc_chttp2_transport* t); 46 grpc_chttp2_transport* t); 47 static grpc_error_handle init_ping_parser(grpc_chttp2_transport* t); 48 static grpc_error_handle init_goaway_parser(grpc_chttp2_transport* t); 49 static grpc_error_handle init_skip_frame_parser(grpc_chttp2_transport* t, [all …]
|
| /external/expat/doc/ |
| D | xmlwf.1 | 1 '\" -*- coding: us-ascii -*- 10 xmlwf \- Determines if an XML document is well-formed 19 'in \n(.iu-\nxu 28 \fB-h\fR 29 'in \n(.iu-\nxu 38 \fB-v\fR 39 'in \n(.iu-\nxu 44 determine if an XML document is well-formed. It is 45 non-validating. 47 If you do not specify any files on the command-line, and you [all …]
|
| /external/libwebm/ |
| D | mkvparser_sample.cc | 3 // Use of this source code is governed by a BSD-style license 29 if (size == 0 || size == static_cast<size_t>(-1)) in utf8towcs() 43 const mkvparser::Cues* const cues = segment->GetCues(); in InputHasCues() 47 while (!cues->DoneParsing()) in InputHasCues() 48 cues->LoadCuePoint(); in InputHasCues() 50 const mkvparser::CuePoint* const cue_point = cues->GetFirst(); in InputHasCues() 83 printf("\t\t libwebm version: %d.%d.%d.%d\n", maj, min, build, rev); in main() 95 printf("\t\t\t EBML Header\n"); in main() 96 printf("\t\tEBML Version\t\t: %lld\n", ebmlHeader.m_version); in main() 97 printf("\t\tEBML MaxIDLength\t: %lld\n", ebmlHeader.m_maxIdLength); in main() [all …]
|
| /external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
| D | parsing.cc | 9 * http://www.apache.org/licenses/LICENSE-2.0 36 static grpc_error* init_frame_parser(grpc_chttp2_transport* t); 37 static grpc_error* init_header_frame_parser(grpc_chttp2_transport* t, 39 static grpc_error* init_data_frame_parser(grpc_chttp2_transport* t); 40 static grpc_error* init_rst_stream_parser(grpc_chttp2_transport* t); 41 static grpc_error* init_settings_frame_parser(grpc_chttp2_transport* t); 42 static grpc_error* init_window_update_frame_parser(grpc_chttp2_transport* t); 43 static grpc_error* init_ping_parser(grpc_chttp2_transport* t); 44 static grpc_error* init_goaway_parser(grpc_chttp2_transport* t); 45 static grpc_error* init_skip_frame_parser(grpc_chttp2_transport* t, [all …]
|
| /external/fmtlib/doc/_static/fonts/ |
| D | glyphicons-halflings-regular.svg | 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > 6 <font id="glyphicons_halflingsregular" horiz-adv-x="1200" > 7 <font-face units-per-em="1200" ascent="960" descent="-240" /> 8 <missing-glyph horiz-adv-x="500" /> 13 …l-183 183l141 141l183 -183v259h200v-259l183 183l141 -141l-183 -183h259v-200h-259l183 -183l-141 -14… 14 <glyph unicode="+" d="M0 400v300h400v400h300v-400h400v-300h-400v-400h-300v400h-400z" /> 16 <glyph unicode=" " horiz-adv-x="652" /> 17 <glyph unicode=" " horiz-adv-x="1304" /> 18 <glyph unicode=" " horiz-adv-x="652" /> 19 <glyph unicode=" " horiz-adv-x="1304" /> [all …]
|
| /external/webp/src/dsp/ |
| D | lossless_mips_dsp_r2.c | 3 // Use of this source code is governed by a BSD-style license 8 // ----------------------------------------------------------------------------- 33 ".ifc " #TYPE ", uint8_t \n\t" \ 34 "lbu %[tmp1], 0(%[src]) \n\t" \ 35 "lbu %[tmp2], 1(%[src]) \n\t" \ 36 "lbu %[tmp3], 2(%[src]) \n\t" \ 37 "lbu %[tmp4], 3(%[src]) \n\t" \ 38 "addiu %[src], %[src], 4 \n\t" \ 39 ".endif \n\t" \ 40 ".ifc " #TYPE ", uint32_t \n\t" \ [all …]
|
| /external/ltp/runtest/ |
| D | net.nfs | 5 nfs3_01 nfs01 -v 3 -t udp 6 nfs3t_01 nfs01 -v 3 -t tcp 7 nfs4_01 nfs01 -v 4 -t tcp 8 nfs41_01 nfs01 -v 4.1 -t tcp 9 nfs42_01 nfs01 -v 4.2 -t tcp 10 nfs3_ipv6_01 nfs01 -6 -v 3 -t udp 11 nfs3t_ipv6_01 nfs01 -6 -v 3 -t tcp 12 nfs4_ipv6_01 nfs01 -6 -v 4 -t tcp 13 nfs41_ipv6_01 nfs01 -6 -v 4.1 -t tcp 14 nfs42_ipv6_01 nfs01 -6 -v 4.2 -t tcp [all …]
|