/external/drrickorang/LoopbackApp/app/src/main/res/values/ |
D | strings.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2014 The Android Open Source Project 8 http://www.apache.org/licenses/LICENSE-2.0 15 --> 23 <string name="buttonTest_enabled">Round-Trip\nLatency Test</string> 39 <!-- disabled --> 46 <string-array name="mic_source_array"> 54 </string-array> 57 <string-array name="performance_mode_array"> 63 </string-array> [all …]
|
/external/llvm-project/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/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/llvm-project/libcxx/include/ |
D | numbers | 1 // -*- C++ -*- 2 //===---------------------------- numbers ---------------------------------===// 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 //===----------------------------------------------------------------------===// 17 template<class T> inline constexpr T e_v = unspecified; 18 template<class T> inline constexpr T log2e_v = unspecified; 19 template<class T> inline constexpr T log10e_v = unspecified; 20 template<class T> inline constexpr T pi_v = unspecified; 21 template<class T> inline constexpr T inv_pi_v = unspecified; 22 template<class T> inline constexpr T inv_sqrtpi_v = unspecified; [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/llvm-project/lld/test/MachO/ |
D | order-file.s | 2 # RUN: mkdir -p %t 3 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t/test.o 5 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin -o %t/foo.o 6 # RUN: rm -f %t/foo.a 7 # RUN: llvm-ar rcs %t/foo.a %t/foo.o 9 # FOO-FIRST: <_foo>: 10 # FOO-FIRST: <_main>: 12 # FOO-SECOND: <_main>: 13 # FOO-SECOND: <_foo>: 15 # RUN: echo "_foo # just a comment" > %t/ord-1 [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 …]
|
/external/llvm-project/llvm/unittests/ADT/ |
D | TripleTest.cpp | 1 //===----------- Triple.cpp - Triple unit tests ---------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 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() [all …]
|
/external/llvm-project/libcxx/test/std/re/re.traits/ |
D | isctype.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 23 std::regex_traits<char> t; in main() local 26 assert( t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main() 27 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main() 28 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main() 29 assert( t.isctype('5', t.lookup_classname(s.begin(), s.end()))); in main() 30 assert(!t.isctype(' ', t.lookup_classname(s.begin(), s.end()))); in main() 31 assert(!t.isctype('-', t.lookup_classname(s.begin(), s.end()))); in main() [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 …]
|
/external/expat/doc/ |
D | xmlwf.1 | 1 '\" -*- coding: us-ascii -*- 10 xmlwf \- Determines if an XML document is well-formed 18 …-s\fR] [\fB-n\fR] [\fB-p\fR] [\fB-x\fR] [\fB-e \fIencoding\fB\fR] [\fB-w\fR] [\fB-d \fIoutput-dir\… 19 'in \n(.iu-\nxu 24 determine if an XML document is well-formed. It is 25 non-validating. 27 If you do not specify any files on the command-line, and you 30 .SH "WELL-FORMED DOCUMENTS" 31 A well-formed document must adhere to the 36 \*(T<<?xml version="1.0" standalone="yes"?>\*(T>. [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/llvm-project/libcxx/test/std/algorithms/ |
D | robust_against_adl.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // UNSUPPORTED: clang-8 20 template<class T> struct Holder { T t; }; member 34 Tester t {}; in test() local 48 (void)std::all_of(t.data, t.data+10, [](void*){ return true; }); in test() 49 (void)std::any_of(t.data, t.data+10, [](void*){ return true; }); in test() 50 (void)std::copy(t.data, t.data+10, u.data); in test() 51 (void)std::copy_n(t.data, count, u.data); in test() [all …]
|
/external/llvm-project/clang/test/Driver/ |
D | clang-offload-bundler.c | 1 // REQUIRES: x86-registered-target 2 // REQUIRES: powerpc-registered-target 8 // RUN: %clang -O0 -target %itanium_abi_triple %s -E -o %t.i 9 // RUN: %clangxx -O0 -target %itanium_abi_triple -x c++ %s -E -o %t.ii 10 // RUN: %clang -O0 -target %itanium_abi_triple %s -S -emit-llvm -o %t.ll 11 // RUN: %clang -O0 -target %itanium_abi_triple %s -c -emit-llvm -o %t.bc 12 // RUN: %clang -O0 -target %itanium_abi_triple %s -S -o %t.s 13 // RUN: %clang -O0 -target %itanium_abi_triple %s -c -o %t.o 14 // RUN: %clang -O0 -target %itanium_abi_triple %s -emit-ast -o %t.ast 19 // RUN: touch %t.empty [all …]
|
/external/adhd/cros_alsa/src/ |
D | elem.rs | 2 // Use of this source code is governed by a BSD-style license that can be 5 //! This module provides different implementations of `Elem` that use the alsa-lib control interface 27 /// The Result type of cros-alsa::elem. 28 pub type Result<T> = std::result::Result<T, Error>; 32 /// Possible errors that can occur in cros-alsa::elem. 45 fn from(err: control_primitive::Error) -> Error { in from() 51 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() 62 // The `$t:ident $($ts:ident)*` part matches and removes one token at a time. It's used for 65 {$n:expr, $type:ty, $t:ident $($ts:ident)*} => { 67 type T = Self; [all …]
|
/external/llvm-project/lld/test/COFF/ |
D | incremental.test | 1 # RUN: yaml2obj %p/Inputs/export.yaml -o %t.obj 3 # RUN: lld-link -out:%t.dll -dll %t.obj 2>&1 \ 4 # RUN: | FileCheck -allow-empty -check-prefix=NOWARN %s 5 # RUN: touch -t 198002011200.00 %t.lib 6 # RUN: lld-link -out:%t.dll -dll %t.obj 7 # RUN: ls -l %t.lib | FileCheck -check-prefix=NOKEEP %s 9 # RUN: lld-link -out:%t.dll -dll -incremental %t.obj 2>&1 \ 10 # RUN: | FileCheck -allow-empty -check-prefix=WARN-REF %s 11 # RUN: touch -t 198002011200.00 %t.lib 12 # RUN: lld-link -out:%t.dll -dll -incremental %t.obj [all …]
|
/external/llvm-project/llvm/test/tools/llvm-objdump/ELF/AMDGPU/ |
D | subtarget.ll | 7 ; ----------------------------------GFX10-------------------------------------- 9 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx1033 -filetype=obj -O0 -o %t.o %s 10 ; RUN: llvm-objdump -D --arch-name=amdgcn --mcpu=gfx1033 %t.o > %t-specify.txt 11 ; RUN: llvm-objdump -D %t.o > %t-detect.txt 12 ; RUN: diff %t-specify.txt %t-detect.txt 14 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx1032 -filetype=obj -O0 -o %t.o %s 15 ; RUN: llvm-objdump -D --arch-name=amdgcn --mcpu=gfx1032 %t.o > %t-specify.txt 16 ; RUN: llvm-objdump -D %t.o > %t-detect.txt 17 ; RUN: diff %t-specify.txt %t-detect.txt 19 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx1031 -filetype=obj -O0 -o %t.o %s [all …]
|