/external/clang/test/OpenMP/ |
D | single_firstprivate_messages.cpp | 70 #pragma omp single firstprivate // expected-error {{expected '(' after 'firstprivate'}} in foomain() 73 #pragma omp single firstprivate( // expected-error {{expected expression}} expected-error {{expecte… in foomain() 76 #pragma omp single firstprivate() // expected-error {{expected expression}} in foomain() 79 #pragma omp single firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match th… in foomain() 82 #pragma omp single firstprivate(argc, // expected-error {{expected expression}} expected-error {{ex… in foomain() 85 #pragma omp single firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable… in foomain() 88 #pragma omp single firstprivate(argc) in foomain() 91 #pragma omp single firstprivate(S1) // expected-error {{'S1' does not refer to a value}} in foomain() 94 #pragma omp single firstprivate(a, b) // expected-error {{firstprivate variable with incomplete typ… in foomain() 97 #pragma omp single firstprivate(argv[1]) // expected-error {{expected variable name}} in foomain() [all …]
|
D | single_misc_messages.c | 5 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp single'}} 6 #pragma omp single 8 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp single'}} 9 #pragma omp single foo 13 #pragma omp single in test_no_clause() 16 #pragma omp single in test_no_clause() 28 #pragma omp single in test_branch_protected_scope() 51 // expected-warning@+1 {{extra tokens at the end of '#pragma omp single' are ignored}} in test_invalid_clause() 52 #pragma omp single foo bar in test_invalid_clause() 60 // expected-warning@+1 {{extra tokens at the end of '#pragma omp single' are ignored}} in test_non_identifiers() [all …]
|
D | single_copyprivate_messages.cpp | 49 #pragma omp single copyprivate // expected-error {{expected '(' after 'copyprivate'}} in tmain() 51 #pragma omp single copyprivate( // expected-error {{expected expression}} expected-error {{expected… in tmain() 53 #pragma omp single copyprivate() // expected-error {{expected expression}} in tmain() 55 #pragma omp single copyprivate(k // expected-error {{expected ')'}} expected-note {{to match this '… in tmain() 57 #pragma omp single copyprivate(h, // expected-error {{expected expression}} expected-error {{expect… in tmain() 59 #pragma omp single copyprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable … in tmain() 61 #pragma omp single copyprivate(l) // expected-error 2 {{'operator=' is a private member of 'S4'}} in tmain() 63 #pragma omp single copyprivate(S1) // expected-error {{'S1' does not refer to a value}} in tmain() 65 #pragma omp single copyprivate(argv[1]) // expected-error {{expected variable name}} in tmain() 67 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or… in tmain() [all …]
|
D | single_private_messages.cpp | 33 #pragma omp single private(a) private(this->a) in S4() 45 #pragma omp single private(a) private(this->a) private(s.a) // expected-error {{expected variable n… in operator =() 59 #pragma omp single private(a) private(this->a) in S6() 64 #pragma omp single private(a) private(this->a) private(s.a) // expected-error {{expected variable n… in operator =() 78 #pragma omp single private(a) private(this->a) private(T::a) in S7() 83 #pragma omp single private(a) private(this->a) private(s.a) private(s.T::a) // expected-error 2 {{e… in operator =() 99 #pragma omp single private // expected-error {{expected '(' after 'private'}} in foomain() 101 #pragma omp single private( // expected-error {{expected expression}} expected-error {{expected ')'… in foomain() 103 #pragma omp single private() // expected-error {{expected expression}} in foomain() 105 #pragma omp single private(argc // expected-error {{expected ')'}} expected-note {{to match this '(… in foomain() [all …]
|
D | single_ast_print.cpp | 17 #pragma omp single copyprivate(a, this->b, (this)->c) in SS() 19 // CHECK-NEXT: #pragma omp single copyprivate(this->a,this->b,this->c) in SS() 29 // CHECK-NEXT: #pragma omp single copyprivate(this->a) in SST() 31 // CHECK-NEXT: #pragma omp single copyprivate(this->a) in SST() 33 #pragma omp single copyprivate(this->a) in SST() 45 #pragma omp single private(argc, b), firstprivate(c, d), nowait in tmain() 48 // CHECK-NEXT: #pragma omp single private(argc,b) firstprivate(c,d) nowait in tmain() 51 #pragma omp single private(argc, b), firstprivate(c, d), copyprivate(g) in tmain() 54 // CHECK-NEXT: #pragma omp single private(argc,b) firstprivate(c,d) copyprivate(g) in tmain() 65 #pragma omp single private(argc, b), firstprivate(argv, c), nowait in main() [all …]
|
/external/clang/test/Misc/ |
D | serialized-diags-single-issue.c | 10 // NOTE: it is important that this test case only contain a single issue. This test case checks 13 // CHECK: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitialized w… 14 // CHECK: Range: {{.*}}serialized-diags-single-issue.c:3:12 {{.*}}serialized-diags-single-issue.c:3… 15 // CHECK: +-{{.*}}serialized-diags-single-issue.c:2:13: note: initialize the variable 'voodoo' to s… 16 // CHECK: +-Range: {{.*}}serialized-diags-single-issue.c:2:13 {{.*}}serialized-diags-single-issue.c… 17 // CHECK: +-FIXIT: ({{.*}}serialized-diags-single-issue.c:2:13 - {{.*}}serialized-diags-single-issu… 24 // CHECK-MULT: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitiali… 25 // CHECK-MULT: Range: {{.*}}serialized-diags-single-issue.c:3:12 {{.*}}serialized-diags-single-issu… 26 // CHECK-MULT: +-{{.*}}serialized-diags-single-issue.c:2:13: note: initialize the variable 'voodoo'… 27 // CHECK-MULT: +-Range: {{.*}}serialized-diags-single-issue.c:2:13 {{.*}}serialized-diags-single-is… [all …]
|
/external/vulkan-validation-layers/libs/glm/ |
D | fwd.hpp | 46 /// Quaternion of low single-precision floating-point numbers. 51 /// Quaternion of medium single-precision floating-point numbers. 56 /// Quaternion of high single-precision floating-point numbers. 68 /// Quaternion of default single-precision floating-point numbers. 72 /// Quaternion of low single-precision floating-point numbers. 77 /// Quaternion of medium single-precision floating-point numbers. 82 /// Quaternion of high single-precision floating-point numbers. 87 /// Quaternion of default single-precision floating-point numbers. 1328 /// Low 32 bit single-precision floating-point scalar. 1336 /// Low 32 bit single-precision floating-point scalar. [all …]
|
/external/mesa3d/src/glsl/builtins/tools/ |
D | texture_builtins.py | 9 Single = 4 variable 61 if variant & Single: 175 generate_sigs("", "tex", "1DShadow", Single, 1); 176 generate_sigs("", "tex", "2DShadow", Single); 177 generate_sigs("", "tex", "CubeShadow", Single); 178 generate_sigs("", "tex", "1DArrayShadow", Single); 179 generate_sigs("", "tex", "2DArrayShadow", Single); 181 generate_sigs("", "tex", "2DRectShadow", Single); 189 generate_sigs("", "txb", "1DShadow", Single, 1); 190 generate_sigs("", "txb", "2DShadow", Single); [all …]
|
/external/clang/test/Driver/ |
D | thread-model.c | 2 …target arm-unknown-linux-gnu -c %s -mthread-model single -v 2>&1 | FileCheck -check-prefix=CHECK-S… 5 // CHECK-SINGLE: "-mthread-model" "single" 9 …t arm-unknown-linux-gnu -c %s -v -mthread-model single 2>&1 | FileCheck -check-prefix=CHECK-LINUX-… 13 // CHECK-LINUX-SINGLE: Thread model: single 14 // CHECK-LINUX-SINGLE: "-mthread-model" "single" 18 …32-unknown-linux-gnu -c %s -v -mthread-model single 2>&1 | FileCheck -check-prefix=CHECK-WEBASSEMB… 22 …64-unknown-linux-gnu -c %s -v -mthread-model single 2>&1 | FileCheck -check-prefix=CHECK-WEBASSEMB… 27 // CHECK-WEBASSEMBLY-SINGLE: Thread model: single 28 // CHECK-WEBASSEMBLY-SINGLE: "-mthread-model" "single"
|
/external/autotest/site_utils/autoupdate/ |
D | test_image.py | 33 """Raised when we want a single item but got multiple.""" 68 def gs_ls(pattern, archive_url, single): argument 73 @param single: if true, expect a single match and return it. 85 if not single or (single and len(uri_list) == 1): 97 def find_payload_uri(archive_url, delta=False, single=False): argument 102 @param single: if true, expect a single match and return it, otherwise 105 @return A (possibly empty) list of URIs, or a single (possibly None) URI if 106 |single| is True. 116 payload_uri_list = gs_ls(pattern, archive_url, single) 118 return None if single else [] [all …]
|
/external/llvm/test/DebugInfo/X86/ |
D | tls.ll | 2 ; RUN: | FileCheck --check-prefix=NOEMU --check-prefix=SINGLE --check-prefix=SINGLE-64 --check-pr… 5 ; RUN: | FileCheck --check-prefix=NOEMU --check-prefix=SINGLE --check-prefix=SINGLE-32 --check-pr… 11 ; RUN: | FileCheck --check-prefix=NOEMU --check-prefix=SINGLE --check-prefix=SINGLE-64 --check-pr… 17 ; RUN: | FileCheck --check-prefix=NOEMU --check-prefix=SINGLE --check-prefix=SINGLE-64 --check-pr… 20 ; RUN: | FileCheck --check-prefix=SINGLE --check-prefix=EMUSINGLE-64 \ 24 ; RUN: | FileCheck --check-prefix=SINGLE --check-prefix=EMUSINGLE-32 \ 40 ; SINGLE: .section .debug_info, 44 ; SINGLE-64: .byte 10 # DW_AT_location 46 ; SINGLE-64-NEXT: .byte 14 47 ; SINGLE-64-NEXT: .quad tls@DTPOFF [all …]
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
D | type_precision.hpp | 603 /// 32 bit single-precision floating-point scalar. 612 /// 32 bit single-precision floating-point scalar. 621 /// 32 bit single-precision floating-point scalar. 630 /// Single-precision floating-point vector of 1 component. 634 /// Single-precision floating-point vector of 2 components. 638 /// Single-precision floating-point vector of 3 components. 642 /// Single-precision floating-point vector of 4 components. 647 /// Single-precision floating-point vector of 1 component. 651 /// Single-precision floating-point vector of 2 components. 655 /// Single-precision floating-point vector of 3 components. [all …]
|
/external/tcpdump/tests/ |
D | sflow_multiple_counter_30_pdus.out | 12 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 24 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 36 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 48 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 60 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 72 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 84 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 98 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 110 align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 122 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 [all …]
|
/external/syslinux/codepage/ |
D | cp862.txt | 199 0xb5 0x2561 #BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE 200 0xb6 0x2562 #BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE 201 0xb7 0x2556 #BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE 202 0xb8 0x2555 #BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE 207 0xbd 0x255c #BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 208 0xbe 0x255b #BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 216 0xc6 0x255e #BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE 217 0xc7 0x255f #BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE 225 0xcf 0x2567 #BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 226 0xd0 0x2568 #BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE [all …]
|
D | cp866.txt | 199 0xb5 0x2561 #BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE 200 0xb6 0x2562 #BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE 201 0xb7 0x2556 #BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE 202 0xb8 0x2555 #BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE 207 0xbd 0x255c #BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 208 0xbe 0x255b #BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 216 0xc6 0x255e #BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE 217 0xc7 0x255f #BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE 225 0xcf 0x2567 #BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 226 0xd0 0x2568 #BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE [all …]
|
D | cp737.txt | 199 0xb5 0x2561 #BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE 200 0xb6 0x2562 #BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE 201 0xb7 0x2556 #BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE 202 0xb8 0x2555 #BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE 207 0xbd 0x255c #BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 208 0xbe 0x255b #BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 216 0xc6 0x255e #BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE 217 0xc7 0x255f #BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE 225 0xcf 0x2567 #BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 226 0xd0 0x2568 #BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE [all …]
|
D | cp861.txt | 199 0xb5 0x2561 #BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE 200 0xb6 0x2562 #BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE 201 0xb7 0x2556 #BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE 202 0xb8 0x2555 #BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE 207 0xbd 0x255c #BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 208 0xbe 0x255b #BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 216 0xc6 0x255e #BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE 217 0xc7 0x255f #BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE 225 0xcf 0x2567 #BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 226 0xd0 0x2568 #BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE [all …]
|
D | cp860.txt | 199 0xb5 0x2561 #BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE 200 0xb6 0x2562 #BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE 201 0xb7 0x2556 #BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE 202 0xb8 0x2555 #BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE 207 0xbd 0x255c #BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 208 0xbe 0x255b #BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 216 0xc6 0x255e #BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE 217 0xc7 0x255f #BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE 225 0xcf 0x2567 #BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 226 0xd0 0x2568 #BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE [all …]
|
D | cp437.txt | 199 0xb5 0x2561 #BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE 200 0xb6 0x2562 #BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE 201 0xb7 0x2556 #BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE 202 0xb8 0x2555 #BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE 207 0xbd 0x255c #BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 208 0xbe 0x255b #BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 216 0xc6 0x255e #BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE 217 0xc7 0x255f #BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE 225 0xcf 0x2567 #BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 226 0xd0 0x2568 #BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE [all …]
|
D | cp863.txt | 199 0xb5 0x2561 #BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE 200 0xb6 0x2562 #BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE 201 0xb7 0x2556 #BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE 202 0xb8 0x2555 #BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE 207 0xbd 0x255c #BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 208 0xbe 0x255b #BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 216 0xc6 0x255e #BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE 217 0xc7 0x255f #BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE 225 0xcf 0x2567 #BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 226 0xd0 0x2568 #BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE [all …]
|
/external/selinux/secilc/docs/ |
D | cil_access_vector_rules.md | 27 <td align="left"><p>A single previously defined source <code>type</code>, <code>typealias</code> or… 31 <td align="left"><p>A single previously defined target <code>type</code>, <code>typealias</code> or… 36 <td align="left"><p>A single named or anonymous <code>classpermissionset</code> or a single set of … 111 <td align="left"><p>A single previously defined source <code>type</code>, <code>typealias</code> or… 115 <td align="left"><p>A single previously defined target <code>type</code>, <code>typealias</code> or… 120 <td align="left"><p>A single named or anonymous <code>classpermissionset</code> or a single set of … 159 <td align="left"><p>A single previously defined source <code>type</code>, <code>typealias</code> or… 163 <td align="left"><p>A single previously defined target <code>type</code>, <code>typealias</code> or… 168 <td align="left"><p>A single named or anonymous <code>classpermissionset</code> or a single set of … 204 <td align="left"><p>A single previously defined source <code>type</code>, <code>typealias</code> or… [all …]
|
/external/llvm/docs/ |
D | re_format.7 | 90 possibly followed by a single** 152 (matching any single character), 169 or a single character with no other significance (matching that character). 179 It normally matches any single character from the list (but see below). 182 it matches any single character 225 a multi-character sequence that collates as if it were a single character, 232 The sequence is a single element of the bracket expression's list. 378 Matches any single character that is not a newline 381 Matches any single character in 428 Matches any single character, other than newline, not in [all …]
|
/external/swiftshader/third_party/LLVM/docs/ |
D | re_format.7 | 90 possibly followed by a single** 152 (matching any single character), 169 or a single character with no other significance (matching that character). 179 It normally matches any single character from the list (but see below). 182 it matches any single character 225 a multi-character sequence that collates as if it were a single character, 232 The sequence is a single element of the bracket expression's list. 378 Matches any single character that is not a newline 381 Matches any single character in 428 Matches any single character, other than newline, not in [all …]
|
/external/cblas/src/ |
D | Makefile | 27 # All object files for single real precision 44 # All object files for single complex precision 59 # Common files for single / complex precision 73 # Single real precision 83 # Single complex precision 107 # All object files for single real precision 123 # All object files for single complex precision 146 # Single real precision 156 # Single complex precision 179 # All object files for single real precision [all …]
|
/external/dng_sdk/source/ |
D | dng_bad_pixels.h | 95 /// \brief A list of bad pixels and rectangles (usually single rows or columns). 109 // List of bad single pixels. 113 // List of bad rectangles (usually single rows or columns). 123 /// Returns the number of bad single pixels. 130 /// Retrieves the bad single pixel coordinate via the specified list index. 132 /// \param index The list index from which to retrieve the bad single pixel 157 /// Returns true iff there are zero bad single pixels and zero bad 166 /// Returns true iff there is at least one bad single pixel or at least one 174 /// Add the specified coordinate to the list of bad single pixels. 176 /// \param pt The bad single pixel to add. [all …]
|