/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/ |
D | r600.extract-lowbits.ll | 26 ; EG-NEXT: ALU clause starting at 4: 37 ; CM-NEXT: ALU clause starting at 4: 57 ; EG-NEXT: Fetch clause starting at 6: 59 ; EG-NEXT: ALU clause starting at 8: 61 ; EG-NEXT: ALU clause starting at 9: 76 ; CM-NEXT: Fetch clause starting at 6: 78 ; CM-NEXT: ALU clause starting at 8: 80 ; CM-NEXT: ALU clause starting at 9: 101 ; EG-NEXT: ALU clause starting at 4: 112 ; CM-NEXT: ALU clause starting at 4: [all …]
|
D | lds-output-queue.ll | 4 ; the ALU clause. 8 ; CHECK-NOT: ALU clause 19 ; This will start a new clause for the vertex fetch 39 ; clause. The aliasing problem mentioned above causes problems when there is a 69 ; Alu clause: 71 ; VTX clause: 73 ; Alu clause: 89 ; CHECK-NOT: ALU clause
|
D | local-memory.r600.ll | 13 ; GROUP_BARRIER must be the last instruction in a clause 15 ; EG-NEXT: ALU clause 51 ; GROUP_BARRIER must be the last instruction in a clause 53 ; EG-NEXT: ALU clause
|
D | break-smem-soft-clauses.mir | 5 # Trivial clause at beginning of program 17 # Trivial clause at beginning of program 31 # Trivial clause at beginning of program 47 # Trivial clause at beginning of program 115 # breaks the clause. 275 # Regular VALU instruction breaks clause, no nop needed 291 # Regular SALU instruction breaks clause, no nop needed
|
D | vtx-schedule.ll | 8 ; CHECK: Fetch clause 10 ; CHECK: Fetch clause
|
D | vtx-fetch-branch.ll | 5 ; for the ALU clause before the vetex fetch instead of emitting a POP instruction 6 ; after the fetch clause.
|
D | break-vmem-soft-clauses.mir | 4 # Trivial clause at beginning of program 17 # Trivial clause at beginning of program 32 # Trivial clause at beginning of program 49 # Trivial clause at beginning of program 123 # breaks the clause. 242 # The clause is broken by the waitcnt inserted at the end of the 299 # Regular VALU instruction breaks clause, no nop needed 318 # Regular SALU instruction breaks clause, no nop needed 434 # Break a clause from interference between mubuf and flat instructions 450 # Break a clause from interference between mubuf and flat instructions
|
/external/python/cpython3/Doc/tutorial/ |
D | errors.rst | 98 * First, the *try clause* (the statement(s) between the :keyword:`try` and 101 * If no exception occurs, the *except clause* is skipped and execution of the 104 * If an exception occurs during execution of the try clause, the rest of the 105 clause is skipped. Then if its type matches the exception named after the 106 :keyword:`except` keyword, the except clause is executed, and then execution 110 clause, it is passed on to outer :keyword:`try` statements; if no handler is 114 A :keyword:`try` statement may have more than one except clause, to specify 116 Handlers only handle exceptions that occur in the corresponding try clause, not 117 in other handlers of the same :keyword:`!try` statement. An except clause may 123 A class in an :keyword:`except` clause is compatible with an exception if it is [all …]
|
/external/python/cpython2/Doc/tutorial/ |
D | errors.rst | 98 * First, the *try clause* (the statement(s) between the :keyword:`try` and 101 * If no exception occurs, the *except clause* is skipped and execution of the 104 * If an exception occurs during execution of the try clause, the rest of the 105 clause is skipped. Then if its type matches the exception named after the 106 :keyword:`except` keyword, the except clause is executed, and then execution 110 clause, it is passed on to outer :keyword:`try` statements; if no handler is 114 A :keyword:`try` statement may have more than one except clause, to specify 116 Handlers only handle exceptions that occur in the corresponding try clause, not 117 in other handlers of the same :keyword:`try` statement. An except clause may 131 The last except clause may omit the exception name(s), to serve as a wildcard. [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | wineh-coreclr.ll | 170 ; ^ offset of start of clause 172 ; ^ offset of end of clause 183 ; ^ offset of start of clause 185 ; ^ offset of end of clause 196 ; ^ offset of start of clause 198 ; ^ offset of end of clause 212 ; ^ offset of start of clause 214 ; ^ offset of end of clause 225 ; ^ offset of start of clause 227 ; ^ offset of end of clause [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | wineh-coreclr.ll | 170 ; ^ offset of start of clause 172 ; ^ offset of end of clause 183 ; ^ offset of start of clause 185 ; ^ offset of end of clause 196 ; ^ offset of start of clause 198 ; ^ offset of end of clause 212 ; ^ offset of start of clause 214 ; ^ offset of end of clause 225 ; ^ offset of start of clause 227 ; ^ offset of end of clause [all …]
|
/external/swiftshader/third_party/LLVM/test/CodeGen/PTX/ |
D | bra.ll | 17 br i1 %p, label %clause.if, label %clause.else 18 clause.if: 21 clause.else:
|
/external/python/cpython2/Doc/reference/ |
D | compound_stmts.rst | 20 single: clause 23 Compound statements consist of one or more 'clauses.' A clause consists of a 24 header and a 'suite.' The clause headers of a particular compound statement are 25 all at the same indentation level. Each clause header begins with a uniquely 27 controlled by a clause. A suite can be one or more semicolon-separated simple 31 mostly because it wouldn't be clear to which :keyword:`if` clause a following 32 :keyword:`else` clause would belong: :: 68 The formatting of the grammar rules in the following sections places each clause 95 false, the suite of the :keyword:`else` clause, if present, is executed. 117 suite of the :keyword:`else` clause, if present, is executed and the loop [all …]
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | lds-output-queue.ll | 4 ; the ALU clause. 8 ; CHECK-NOT: ALU clause 19 ; This will start a new clause for the vertex fetch 39 ; clause. The aliasing problem mentioned above causes problems when there is a 69 ; Alu clause: 71 ; VTX clause: 73 ; Alu clause: 89 ; CHECK-NOT: ALU clause
|
D | vtx-schedule.ll | 8 ; CHECK: Fetch clause 10 ; CHECK: Fetch clause
|
D | vtx-fetch-branch.ll | 5 ; for the ALU clause before the vetex fetch instead of emitting a POP instruction 6 ; after the fetch clause.
|
/external/python/cpython3/Doc/reference/ |
D | compound_stmts.rst | 22 single: clause 26 A compound statement consists of one or more 'clauses.' A clause consists of a 27 header and a 'suite.' The clause headers of a particular compound statement are 28 all at the same indentation level. Each clause header begins with a uniquely 30 controlled by a clause. A suite can be one or more semicolon-separated simple 34 mostly because it wouldn't be clear to which :keyword:`if` clause a following 35 :keyword:`else` clause would belong:: 73 The formatting of the grammar rules in the following sections places each clause 101 false, the suite of the :keyword:`else` clause, if present, is executed. 124 suite of the :keyword:`!else` clause, if present, is executed and the loop [all …]
|
/external/llvm/test/Transforms/Inline/ |
D | invoke-combine-clauses.ll | 45 ; Check that there isn't another "catch" clause: 79 ; Check that there isn't another "catch" clause: 85 ; include the "catch i8* @exception_outer" clause from the outer 87 ; reachable), but it's OK to include this clause. 116 ; Check that there isn't another "catch" clause:
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/ |
D | invoke-combine-clauses.ll | 45 ; Check that there isn't another "catch" clause: 79 ; Check that there isn't another "catch" clause: 85 ; include the "catch i8* @exception_outer" clause from the outer 87 ; reachable), but it's OK to include this clause. 116 ; Check that there isn't another "catch" clause:
|
/external/clang/test/Parser/ |
D | objc-try-catch-1.m | 42 @try { // expected-error {{@try statement without a @catch and @finally clause}} 50 @try {}// expected-error {{@try statement without a @catch and @finally clause}} 56 @try {}// expected-error {{@try statement without a @catch and @finally clause}}
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 296 // Static attributes for 'default' clause. 300 // Static attributes for 'proc_bind' clause. 305 // Static attributes for 'schedule' clause. 312 // Modifiers for 'schedule' clause. 317 // Static attributes for 'defaultmap' clause. 320 // Modifiers for 'defaultmap' clause. 323 // Static attributes for 'depend' clause. 330 // Modifiers for 'linear' clause. 495 // Map types and map type modifier for 'map' clause. 550 // Static attributes for 'dist_schedule' clause.
|
/external/libopus/ |
D | LICENSE_PLEASE_READ.txt | 7 under the Modified (2-clause or 3-clause) BSD License or the Clear BSD License.
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | README | 85 In the filesystem clause of the profile, one may set the starting 88 used for creating the files separately in the filesystem clause. 90 Also, if a filesystem is to be aged, a special threadgroup clause may 91 be embedded in a filesystem clause to specify the operation mixture 98 In this case, only the location is required in the filesystem clause. 107 To do this, specify "reuse=1" in the filesystem clause, and FFSB will 268 Filesystems are specified by a clause with a filesystem number like 280 The clause must always begin with [filesystemX] and end with [endX] 318 location from the previous filesystem clause if nothing is specified. 322 Full blown filesystem clause example: [all …]
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_gcm.cpp | 332 container_node *clause = NULL; in bu_sched_bb() local 388 clause = NULL; in bu_sched_bb() 438 if (!clause || sampler_indexing) { in bu_sched_bb() 454 clause = sh.create_clause(nst); in bu_sched_bb() 455 bb->push_front(clause); in bu_sched_bb() 458 clause = bb; in bu_sched_bb() 461 bu_schedule(clause, n); in bu_sched_bb()
|
/external/curl/docs/ |
D | LICENSE-MIXING.md | 16 announcement clause). You may still build your own copies that use them all, 22 not have the announcement clause that collides with GPL. 32 announcement clause that makes it "incompatible" with GPL. You are not 97 announcement clause.
|