/external/clang/test/Sema/ |
D | warn-shadow-intrinsics.c | 1 // RUN: %clang_cc1 -ffreestanding -triple x86_64-apple-macosx10.8.0 -fsyntax-only %s 6 // useless -Wshadow warning. 8 __m128i qf = _mm_setzero_si128(); in rdar10679282() local 9 qf = _mm_slli_si128(_mm_add_epi64(qf, _mm_srli_si128(qf, 8)), 8); // no-warning in rdar10679282() 10 (void) qf; in rdar10679282()
|
D | float128-ld-incompatibility.cpp | 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 \ 2 // RUN: -triple powerpc64le-unknown-linux-gnu -target-cpu pwr8 \ 3 // RUN: -target-feature +float128 %s 5 __float128 qf(); 10 long double ld{qf()}; // expected-error {{cannot initialize a variable of type 'long double' with a… 11 __float128 q{ldf()}; // expected-error {{cannot initialize a variable of type '__float128' with an… 13 auto test1(__float128 q, long double ld) -> decltype(q + ld) { // expected-error {{invalid operands… in test1() 14 …return q + ld; // expected-error {{invalid operands to binary expression ('__float128' and 'l… in test1() 17 auto test2(long double a, __float128 b) -> decltype(a + b) { // expected-error {{invalid operands t… in test2() 18 …return a + b; // expected-error {{invalid operands to binary expression ('long double' and '_… in test2() [all …]
|
/external/llvm-project/clang/test/Sema/ |
D | warn-shadow-intrinsics.c | 1 // RUN: %clang_cc1 -ffreestanding -triple x86_64-apple-macosx10.8.0 -fsyntax-only %s 6 // useless -Wshadow warning. 8 __m128i qf = _mm_setzero_si128(); in rdar10679282() local 9 qf = _mm_slli_si128(_mm_add_epi64(qf, _mm_srli_si128(qf, 8)), 8); // no-warning in rdar10679282() 10 (void) qf; in rdar10679282()
|
D | float128-ld-incompatibility.cpp | 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 \ 2 // RUN: -triple powerpc64le-unknown-linux-gnu -target-cpu pwr9 \ 3 // RUN: -target-feature +float128 %s 4 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -triple x86_64-unknown-linux-gnu -Wno-unused-value -Wno… 6 __float128 qf(); 12 long double ld{qf()}; // expected-error {{cannot initialize a variable of type 'long double' with a… 13 __float128 q{ldf()}; // expected-error {{cannot initialize a variable of type '__float128' with an… 15 auto test1(__float128 q, long double ld) -> decltype(q + ld) { // expected-error {{invalid operands… in test1() 16 …return q + ld; // expected-error {{invalid operands to binary expression ('__float128' and 'l… in test1() 19 auto test2(long double a, __float128 b) -> decltype(a + b) { // expected-error {{invalid operands t… in test2() [all …]
|
/external/f2fs-tools/fsck/ |
D | quotaio.c | 4 * Jan Kara <jack@suse.cz> - sponsored by SuSE CR 5 * Aditya Kali <adityakali@google.com> - Ported to e2fsprogs 6 * Hyojun Kim <hyojun@google.com> - Ported to f2fs-tools 36 int cur_qtype = -1; 62 if (q->dq_dqb.dqb_bsoftlimit && toqb(q->dq_dqb.dqb_curspace) > in update_grace_times() 63 q->dq_dqb.dqb_bsoftlimit) { in update_grace_times() 64 if (!q->dq_dqb.dqb_btime) in update_grace_times() 65 q->dq_dqb.dqb_btime = in update_grace_times() 66 now + q->dq_h->qh_info.dqi_bgrace; in update_grace_times() 68 q->dq_dqb.dqb_btime = 0; in update_grace_times() [all …]
|
D | quotaio_v2.c | 4 * Jan Kara <jack@suse.cz> - sponsored by SuSE CR 5 * Hyojun Kim <hyojun@google.com> - Ported to f2fs-tools 50 struct util_dqblk *m = &dquot->dq_dqb; in v2r1_disk2memdqblk() 53 dquot->dq_id = le32_to_cpu(d->dqb_id); in v2r1_disk2memdqblk() 54 m->dqb_ihardlimit = le64_to_cpu(d->dqb_ihardlimit); in v2r1_disk2memdqblk() 55 m->dqb_isoftlimit = le64_to_cpu(d->dqb_isoftlimit); in v2r1_disk2memdqblk() 56 m->dqb_bhardlimit = le64_to_cpu(d->dqb_bhardlimit); in v2r1_disk2memdqblk() 57 m->dqb_bsoftlimit = le64_to_cpu(d->dqb_bsoftlimit); in v2r1_disk2memdqblk() 58 m->dqb_curinodes = le64_to_cpu(d->dqb_curinodes); in v2r1_disk2memdqblk() 59 m->dqb_curspace = le64_to_cpu(d->dqb_curspace); in v2r1_disk2memdqblk() [all …]
|
/external/openssh/regress/ |
D | keygen-knownhosts.sh | 1 # $OpenBSD: keygen-knownhosts.sh,v 1.4 2018/06/01 03:52:37 djm Exp $ 4 tid="ssh-keygen known_hosts" 6 rm -f $OBJ/kh.* 9 for x in host-a host-b host-c host-d host-e host-f host-a2 host-b2; do 10 ${SSHKEYGEN} -qt ed25519 -f $OBJ/kh.$x -C "$x" -N "" || \ 11 fatal "ssh-keygen failed" 16 host-a|host-b) printf "$x " ;; 17 host-c) printf "@cert-authority $x " ;; 18 host-d) printf "@revoked $x " ;; 19 host-e) printf "host-e* " ;; [all …]
|
D | ssh-com.sh | 1 # $OpenBSD: ssh-com.sh,v 1.10 2017/05/08 01:52:49 djm Exp $ 55 sed "s/HostKeyAlias.*/HostKeyAlias ssh2-localhost-with-alias/" \ 59 rm -f ${OBJ}/dsa ${OBJ}/dsa.pub 60 ${SSHKEYGEN} -q -N '' -t dsa -f ${OBJ}/dsa 63 mkdir -p ${OBJ}/${USER} 66 ${SSHKEYGEN} -e -f ${OBJ}/$t.pub > ${OBJ}/${USER}/$t.com 73 printf 'ssh2-localhost-with-alias,127.0.0.1,::1 ' 74 ${SSHKEYGEN} -if ${SRC}/dsa_ssh2.pub 80 if [ ! -x ${sshd2} ]; then 84 PROXY="proxycommand ${sshd2} -qif ${OBJ}/sshd2_config 2> /dev/null" [all …]
|
/external/llvm-project/lld/COFF/ |
D | Options.td | 6 class F<string name> : Flag<["/", "-", "/?", "-?"], name>; 10 Joined<["/", "-", "/?", "-?"], name#":">, HelpText<help>; 15 Joined<["/", "-", "/?", "-?"], name#":">; 35 def color_diagnostics: Flag<["--"], "color-diagnostics">, 36 HelpText<"Alias for --color-diagnostics=always">; 37 def no_color_diagnostics: Flag<["--"], "no-color-diagnostics">, 38 HelpText<"Alias for --color-diagnostics=never">; 39 def color_diagnostics_eq: Joined<["--"], "color-diagnostics=">, 61 def linkrepro : Joined<["/", "-", "/?", "-?"], "linkrepro:">, 83 def pdbstream : Joined<["/", "-", "/?", "-?"], "pdbstream:">, [all …]
|
/external/llvm/lib/LibDriver/ |
D | Options.td | 6 class F<string name> : Flag<["/", "-", "-?"], name>; 10 Joined<["/", "-", "-?"], name#":">, HelpText<help>; 21 class QF<string name> : Joined<["/", "-", "-?"], name#":">; 23 def ignore : QF<"ignore">; 24 def machine: QF<"machine">;
|
/external/eigen/bench/ |
D | quat_slerp.cpp | 13 return Q((a.coeffs() * (1.0-t) + b.coeffs() * t).normalized()); in nlerp() 26 static const Scalar one = Scalar(1) - dummy_precision<Scalar>(); in slerp_legacy() 36 Scalar scale0 = internal::sin( ( Scalar(1) - t ) * theta) / sinTheta; in slerp_legacy() 39 scale1 = -scale1; in slerp_legacy() 48 static const Scalar one = Scalar(1) - epsilon<Scalar>(); in slerp_legacy_nlerp() 57 scale0 = Scalar(1) - t; in slerp_legacy_nlerp() 66 scale0 = internal::sin( ( Scalar(1) - t ) * theta) / sinTheta; in slerp_legacy_nlerp() 69 scale1 = -scale1; in slerp_legacy_nlerp() 92 theta = /*M_PI -*/ Scalar(2)*std::asin( (a.coeffs()+b.coeffs()).norm()/2 ); in slerp_rw() 94 theta = Scalar(2)*std::asin( (a.coeffs()-b.coeffs()).norm()/2 ); in slerp_rw() [all …]
|
/external/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
D | Options.td | 6 class F<string name> : Flag<["/", "-", "/?", "-?"], name>; 10 Joined<["/", "-", "/?", "-?"], name#":">, HelpText<help>; 28 // /?? and -?? must be before /? and -? to not confuse lib/Options. 29 def help_q : Flag<["/??", "-??", "/?", "-?"], "">, Alias<help>; 35 class QF<string name> : Joined<["/", "-", "/?", "-?"], name#":">; 37 def ignore : QF<"ignore">;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-lib/ |
D | Options.td | 6 class F<string name> : Flag<["/", "-", "/?", "-?"], name>; 10 Joined<["/", "-", "/?", "-?"], name#":">, HelpText<help>; 25 // /?? and -?? must be before /? and -? to not confuse lib/Options. 26 def help_q : Flag<["/??", "-??", "/?", "-?"], "">, Alias<help>; 32 class QF<string name> : Joined<["/", "-", "/?", "-?"], name#":">; 34 def ignore : QF<"ignore">;
|
/external/e2fsprogs/lib/support/ |
D | quotaio.c | 4 * Jan Kara <jack@suse.cz> - sponsored by SuSE CR 5 * Aditya Kali <adityakali@google.com> - Ported to e2fsprogs 61 return sb->s_prj_quota_inum; in quota_type2inum() 89 if (q->dq_dqb.dqb_bsoftlimit && toqb(q->dq_dqb.dqb_curspace) > in update_grace_times() 90 q->dq_dqb.dqb_bsoftlimit) { in update_grace_times() 91 if (!q->dq_dqb.dqb_btime) in update_grace_times() 92 q->dq_dqb.dqb_btime = in update_grace_times() 93 now + q->dq_h->qh_info.dqi_bgrace; in update_grace_times() 95 q->dq_dqb.dqb_btime = 0; in update_grace_times() 98 if (q->dq_dqb.dqb_isoftlimit && q->dq_dqb.dqb_curinodes > in update_grace_times() [all …]
|
/external/exoplayer/tree/testdata/src/test/assets/amr/ |
D | sample_nb.amr | 3 …s��Ȑi��L���7�W��=�bhV���\܄;َ<���Ͼ1�4��(%)s&&���<�-%���%Q�����䖔&��@���O��_*��qf���o? 4 …-�E.�B8�����W��q�����ּH�Ô>�U�7#x�>�ls��Z�.`������*p�������-P�&�����:��4n[&���… 14 RĦL<��mC���<3���gŀ ڱ�e��kE��Y�����#���V6%�iB��-{.p�2_a�C����� 8��85�3��� 15 …������~6<����ߵ���M4<b������W>J���z����5L%R�>K�}�ت`�_I���r|ϔ�_����ʬ-7�Jǧ������tZDz���… 19 VzTV����@ɡ�E��~���Ңi���$l�Հ+�f�qf!��Kj]��N�<��8�< 20 v-#,�����F'���=��g�����U�<g܇��VW���F
|
D | sample_nb_cbr.amr | 3 …s��Ȑi��L���7�W��=�bhV���\܄;َ<���Ͼ1�4��(%)s&&���<�-%���%Q�����䖔&��@���O��_*��qf���o? 4 …-�E.�B8�����W��q�����ּH�Ô>�U�7#x�>�ls��Z�.`������*p�������-P�&�����:��4n[&���… 14 RĦL<��mC���<3���gŀ ڱ�e��kE��Y�����#���V6%�iB��-{.p�2_a�C����� 8��85�3��� 15 …������~6<����ߵ���M4<b������W>J���z����5L%R�>K�}�ت`�_I���r|ϔ�_����ʬ-7�Jǧ������tZDz���… 19 VzTV����@ɡ�E��~���Ңi���$l�Հ+�f�qf!��Kj]��N�<��8�< 20 v-#,�����F'���=��g�����U�<g܇��VW���F
|
/external/autotest/client/bin/ |
D | package_unittest.py | 45 s_cmd = 'rpm -qp --qf %{SOURCE} ' + input_package + ' 2>/dev/null' 46 a_cmd = 'rpm -qp --qf %{ARCH} ' + input_package + ' 2>/dev/null' 47 v_cmd = 'rpm -qp ' + input_package + ' 2>/dev/null' 50 i_cmd = 'rpm -q ' + ver + ' 2>&1 >/dev/null' 82 a_cmd = 'dpkg -f ' + input_package + ' Architecture 2>/dev/null' 83 v_cmd = 'dpkg -f ' + input_package + ' Package 2>/dev/null' 85 i_cmd = 'dpkg -s ' + ver + ' 2>/dev/null' 115 install_command = 'rpm %s -U %s' % ('', input_package) 132 'alien --to-deb %s 2>/dev/null' % input_package).and_return(output)
|
/external/e2fsprogs/tests/scripts/ |
D | resize_test | 6 [ "$1" = "-s" ] && size=$2 && shift 2 15 rm -f $TMPFILE 20 if truncate -s $SIZE_2 $TMPFILE 2> /dev/null; then 27 if ! truncate -s $SIZE_2 $TMPFILE >> $LOG 2>&1; then 34 echo $MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 >> $LOG 35 $MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 >> $LOG 37 OUT_TMP=$(mktemp ${TMPDIR:-/tmp}/csum-tmp.XXXXXX) 46 $DEBUGFS -w $TMPFILE >> $LOG 2>&1 << EOF 56 rm -f $OUT_TMP 58 echo $FSCK -fy $TMPFILE >> $LOG 2>&1 [all …]
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | upgrade_memory_model_test.cpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 65 ; CHECK-NOT: OpDecorate in TEST_F() 129 ; CHECK-NOT: OpDecorate in TEST_F() 156 ; CHECK-NOT: OpDecorate in TEST_F() 183 ; CHECK-NOT: OpDecorate in TEST_F() 184 ; CHECK-NOT: OpConstant in TEST_F() 209 ; CHECK-NOT: OpDecorate in TEST_F() 237 ; CHECK-NOT: OpDecorate in TEST_F() 266 ; CHECK-NOT: OpDecorate in TEST_F() 298 ; CHECK-NOT: OpDecorate in TEST_F() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | upgrade_memory_model_test.cpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 65 ; CHECK-NOT: OpDecorate in TEST_F() 129 ; CHECK-NOT: OpDecorate in TEST_F() 156 ; CHECK-NOT: OpDecorate in TEST_F() 183 ; CHECK-NOT: OpDecorate in TEST_F() 184 ; CHECK-NOT: OpConstant in TEST_F() 209 ; CHECK-NOT: OpDecorate in TEST_F() 237 ; CHECK-NOT: OpDecorate in TEST_F() 266 ; CHECK-NOT: OpDecorate in TEST_F() 298 ; CHECK-NOT: OpDecorate in TEST_F() [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/ |
D | upgrade_memory_model_test.cpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 65 ; CHECK-NOT: OpDecorate in TEST_F() 129 ; CHECK-NOT: OpDecorate in TEST_F() 156 ; CHECK-NOT: OpDecorate in TEST_F() 183 ; CHECK-NOT: OpDecorate in TEST_F() 184 ; CHECK-NOT: OpConstant in TEST_F() 209 ; CHECK-NOT: OpDecorate in TEST_F() 237 ; CHECK-NOT: OpDecorate in TEST_F() 266 ; CHECK-NOT: OpDecorate in TEST_F() 298 ; CHECK-NOT: OpDecorate in TEST_F() [all …]
|
/external/vulkan-validation-layers/tests/ |
D | layer_validation_tests.cpp | 2 * Copyright (c) 2015-2019 The Khronos Group Inc. 3 * Copyright (c) 2015-2019 Valve Corporation 4 * Copyright (c) 2015-2019 LunarG, Inc. 5 * Copyright (c) 2015-2019 Google, Inc. 11 * http://www.apache.org/licenses/LICENSE-2.0 13 * Author: Chia-I Wu <olvaffe@gmail.com> 77 … // (It's not clear that this is any more definitive than using the original version - but no harm) in ImageFormatAndFeaturesSupported() 106 if (msgFlags & errMonitor->GetMessageFlags()) { in myDbgFunc() 107 return errMonitor->CheckForDesiredMsg(pMsg); in myDbgFunc() 113 // Find address of extension call and make the call -- assumes needed extensions are enabled. in GetPushDescriptorProperties() [all …]
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | address_space-dependent.cpp | 1 // RUN: %clang_cc1 -x c++ -std=c++14 -fsyntax-only -verify %s 5 …int __attribute__((address_space(I))) __attribute__((address_space(J))) * Y; // expected-error {{… in car() 6 …int *__attribute__((address_space(I))) __attribute__((address_space(J))) * Z; // expected-error {{… in car() 8 …__attribute__((address_space(I))) int local; // expected-error {{automatic variable qualifi… in car() 9 …__attribute__((address_space(J))) int array[5]; // expected-error {{automatic variable qualifi… in car() 10 …__attribute__((address_space(I))) int arrarr[5][5]; // expected-error {{automatic variable qualifi… in car() 12 …__attribute__((address_space(J))) * x; // expected-error {{C++ requires a type specifier for all d… in car() 18 AS2Int typedef_as_field; // expected-error {{field may not be qualified with an address space}} in car() 28 …__attribute__((address_space(I))) int as_field; // expected-error {{field may not be qualified wit… 32 void foo(__attribute__((address_space(I))) float *a, // expected-note {{candidate template ignored:… in foo() [all …]
|
/external/python/cryptography/vectors/cryptography_vectors/x509/ |
D | utf8-dnsname.pem | 1 -----BEGIN CERTIFICATE----- 39 w92yuH8OpkEQmv5YBtwTqTaEV0anfnC1Pukpqjv4N+e3fUafr+ZHIhoZMVmkU+QF 41 -----END CERTIFICATE-----
|
/external/conscrypt/openjdk/src/test/resources/ |
D | blocklist_test_chain.pem | 1 -----BEGIN CERTIFICATE----- 6 qf/YCN3F8JOcot1QUEojcjIrm54rDgi1+o9qDDY0CfbJ8UGmjgh0h5odlxnZbsF2 17 -----END CERTIFICATE----- 18 -----BEGIN CERTIFICATE----- 35 -----END CERTIFICATE-----
|