/external/opencv3/modules/core/include/opencv2/core/cuda/ |
D | warp_reduce.hpp | 61 T partial = ptr[tid]; in warp_reduce() local 63 ptr[tid] = partial = partial + ptr[tid + 16]; in warp_reduce() 64 ptr[tid] = partial = partial + ptr[tid + 8]; in warp_reduce() 65 ptr[tid] = partial = partial + ptr[tid + 4]; in warp_reduce() 66 ptr[tid] = partial = partial + ptr[tid + 2]; in warp_reduce() 67 ptr[tid] = partial = partial + ptr[tid + 1]; in warp_reduce()
|
D | warp.hpp | 113 T partial = ptr[lane]; in reduce() local 115 ptr[lane] = partial = op(partial, ptr[lane + 16]); in reduce() 116 ptr[lane] = partial = op(partial, ptr[lane + 8]); in reduce() 117 ptr[lane] = partial = op(partial, ptr[lane + 4]); in reduce() 118 ptr[lane] = partial = op(partial, ptr[lane + 2]); in reduce() 119 ptr[lane] = partial = op(partial, ptr[lane + 1]); in reduce()
|
/external/v8/test/webkit/resources/ |
D | json2-es5-compat.js | 231 partial, 289 partial = []; 300 partial[i] = str(i, value) || 'null'; 306 v = partial.length === 0 ? '[]' : 308 partial.join(',\n' + gap) + '\n' + 310 '[' + partial.join(',') + ']'; 324 partial.push(quote(k) + (gap ? ': ' : ':') + v); 336 partial.push(quote(k) + (gap ? ': ' : ':') + v); 345 v = partial.length === 0 ? '{}' : 346 gap ? '{\n' + gap + partial.join(',\n' + gap) + '\n' + [all …]
|
/external/clang/test/SemaObjC/ |
D | property-deprecated-warning.m | 12 …erty 'partialPtarget' is declared partial here}} expected-note@+2 {{'partialPtarget' has been expl… 27 …rty 'partialTarget' is declared partial here}} expected-note@+2 {{'setPartialTarget:' has been exp… 43 …partial here}} expected-note@+2 2 {{'partial_dep_target' has been explicitly marked partial here}}… 60 …g@+2 {{'partial_dep_target' is partial: introduced in iOS 5.0}} expected-warning@+2 {{'setPartial_… 85 …// expected-warning@+2 {{'setPartialTarget:' is partial: introduced in iOS 5.0}} expected-note@+2 … 89 …g@+2 {{'partial_dep_target' is partial: introduced in iOS 5.0}} expected-warning@+2 {{'setPartial_… 103 …rty 'partialEnabled' is declared partial here}} expected-note@+2 {{'partialIsEnabled' has been exp… 108 …'partialDelegate' is declared partial here}} expected-note@+2 {{'partialSetNewDelegate:' has been … 118 …ing@+2 {{'partialIsEnabled' is partial: introduced in iOS 5.0}} expected-warning@+3 {{'partialSetN… 141 // expected-warning@+2 {{'partialPtarget' is partial: introduced in iOS 5.0}} expected-note@+2 {{ex…
|
D | attr-availability.m | 8 // expected-note@+2 2 {{'partial_proto_method' has been explicitly marked partial here}} 16 // expected-note@+2 {{'partialMethod' has been explicitly marked partial here}} 49 …// expected-warning@+2 {{'partialMethod' is partial: introduced in OS X 10.8}} expected-note@+2 {{… 54 …// expected-warning@+2 {{'partial_proto_method' is partial: introduced in OS X 10.8}} expected-not… 58 …// expected-warning@+2 {{'partial_proto_method' is partial: introduced in OS X 10.8}} expected-not… 143 // expected-note@+2 {{'ipartialMethod2' has been explicitly marked partial here}} 148 // expected-note@+2 {{'ipartialMethod2' has been explicitly marked partial here}} 166 …// expected-warning@+2 {{'ipartialMethod2' is partial: introduced in OS X 10.8}} expected-note@+2 … 173 …// expected-warning@+2 {{'ipartialMethod2' is partial: introduced in OS X 10.8}} expected-note@+2 … 180 // expected-note@+2 {{'PartialI2' has been explicitly marked partial here}} [all …]
|
/external/v8/src/js/ |
D | json.js | 82 var partial = new InternalArray(); 90 partial.push(strP); 94 final = "[" + partial.join(",") + "]"; 95 } else if (partial.length > 0) { 97 final = "[\n" + indent + partial.join(separator) + "\n" + 111 var partial = new InternalArray(); 121 partial.push(member); 131 partial.push(member); 137 final = "{" + partial.join(",") + "}"; 138 } else if (partial.length > 0) { [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/ |
D | search.py | 82 facet=None, highlight=None, partial=None, options=None): argument 93 self.partial = partial 140 if self.partial is not None: 141 params['partial'] = self.partial 196 if self.partial is not None: 197 params['partial'] = self.partial 236 partial=None, options=None): argument 239 sort=sort, partial=partial, options=options) 242 size=10, start=0, facet=None, highlight=None, sort=None, partial=None, argument 335 partial=partial, options=options)
|
/external/llvm/test/Transforms/LoopVectorize/X86/ |
D | metadata-enable.ll | 1 ; RUN: opt < %s -mcpu=corei7 -O1 -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=O1 2 ; RUN: opt < %s -mcpu=corei7 -O2 -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=O2 3 ; RUN: opt < %s -mcpu=corei7 -O3 -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=O3 4 ; RUN: opt < %s -mcpu=corei7 -Os -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=Os 5 ; RUN: opt < %s -mcpu=corei7 -Oz -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=Oz 6 ; RUN: opt < %s -mcpu=corei7 -O1 -vectorize-loops -S -unroll-allow-partial=0 | FileCheck %s --check… 7 ; RUN: opt < %s -mcpu=corei7 -Oz -vectorize-loops -S -unroll-allow-partial=0 | FileCheck %s --check… 8 ; RUN: opt < %s -mcpu=corei7 -O1 -loop-vectorize -S -unroll-allow-partial=0 | FileCheck %s --check-… 9 ; RUN: opt < %s -mcpu=corei7 -Oz -loop-vectorize -S -unroll-allow-partial=0 | FileCheck %s --check-… 10 ; RUN: opt < %s -mcpu=corei7 -O3 -disable-loop-vectorization -S -unroll-allow-partial=0 | FileCheck…
|
/external/pdfium/testing/resources/ |
D | bug_113.in | 12 % partial object 18 % duplicate definition of partial object
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/ |
D | oobe.py | 5 from functools import partial 76 return partial(Oobe._NavigateWebViewLogin, 79 return partial(Oobe._NavigateIFrameLogin,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearchdomain/ |
D | layer1.py | 76 filter_query=None, highlight=None, partial=None, argument 410 if partial is not None: 411 query_params['partial'] = partial
|
/external/libcxx/include/ |
D | __std_stream | 143 case codecvt_base::partial: 161 } while (__r == _VSTD::codecvt_base::partial); 205 case codecvt_base::partial: 293 else if (__r == codecvt_base::ok || __r == codecvt_base::partial) 298 if (__r == codecvt_base::partial) 305 } while (__r == codecvt_base::partial); 339 } while (__r == codecvt_base::partial);
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
D | ClasspathPattern.java | 45 public boolean partial = false; field in ClasspathPattern.Entry 123 entry.partial = item.endsWith("."); in createEntry() 207 if (entry.partial) in match()
|
/external/curl/tests/ |
D | valgrind.pm | 33 my $partial; 108 $partial=1;
|
/external/libcxx/src/ |
D | locale.cpp | 1584 return partial; in do_out() 1600 return partial; in do_out() 1610 return frm_nxt == frm_end ? ok : partial; in do_out() 1656 return partial; in do_in() 1663 return frm_nxt == frm_end ? ok : partial; in do_in() 1688 return frm_nxt == frm_end ? ok : partial; in do_in() 1706 return partial; in do_unshift() 1805 return codecvt_base::partial; in utf16_to_utf8() 1818 return codecvt_base::partial; in utf16_to_utf8() 1824 return codecvt_base::partial; in utf16_to_utf8() [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | 2010-06-29-PartialRedefFastAlloc.ll | 5 ; This tests the fast register allocator's handling of partial redefines: 10 ; %reg1028 gets allocated %Q0, and if %reg1030 is reloaded for the partial
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | variance_media.asm | 52 ; calculate partial sums 75 ; calculate partial sums 99 ; calculate partial sums 125 ; calculate partial sums 185 ; calculate partial sums 210 ; calculate partial sums 271 ; calculate partial sums 292 ; calculate partial sums 311 ; calculate partial sums 334 ; calculate partial sums
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_gradients/ |
D | py_gradients.markdown | 29 \f$\Delta src = \frac{\partial ^2{src}}{\partial x^2} + \frac{\partial ^2{src}}{\partial y^2}\f$ wh…
|
/external/opencv3/doc/tutorials/imgproc/imgtrans/laplace_operator/ |
D | laplace_operator.markdown | 38 \f[Laplace(f) = \dfrac{\partial^{2} f}{\partial x^{2}} + \dfrac{\partial^{2} f}{\partial y^{2}}\f]
|
/external/wpa_supplicant_8/src/tls/ |
D | tlsv1_client.c | 193 struct wpabuf *partial; in tlsv1_client_handshake() local 195 partial = wpabuf_alloc_copy(pos, end - pos); in tlsv1_client_handshake() 197 conn->partial_input = partial; in tlsv1_client_handshake() 350 struct wpabuf *partial; in tlsv1_client_decrypt() local 352 partial = wpabuf_alloc_copy(pos, in_end - pos); in tlsv1_client_decrypt() 354 conn->partial_input = partial; in tlsv1_client_decrypt()
|
/external/curl/tests/data/ |
D | test1117 | 30 partial body 68 partial body
|
/external/fio/crc/ |
D | sha256.c | 246 unsigned int partial, done; in fio_sha256_update() local 249 partial = sctx->count & 0x3f; in fio_sha256_update() 254 if ((partial + len) > 63) { in fio_sha256_update() 255 if (partial) { in fio_sha256_update() 256 done = -partial; in fio_sha256_update() 257 memcpy(sctx->buf + partial, data, done + 64); in fio_sha256_update() 267 partial = 0; in fio_sha256_update() 269 memcpy(sctx->buf + partial, src, len - done); in fio_sha256_update()
|
/external/eigen/doc/ |
D | TutorialReductionsVisitorsBroadcasting.dox | 128 \subsection TutorialReductionsVisitorsBroadcastingPartialReductionsCombined Combining partial reduc… 129 It is also possible to use the result of a partial reduction to do further processing. 131 within a matrix. With column-wise partial reductions this can be coded as: 164 The concept behind broadcasting is similar to partial reductions, with the difference that broadcas… 213 reductions and partial reductions. 215 Now that broadcasting, reductions and partial reductions have been introduced, we can dive into a m… 217 computing the squared Euclidean distance with the partial reduction named \link MatrixBase::squared… 244 …- <tt>(m.colwise() - v).colwise().squaredNorm()</tt> is a partial reduction, computing the squared…
|
/external/elfutils/libdwfl/ |
D | relocate.c | 481 Elf_Scn *tscn, bool debugscn, bool partial) in relocate_section() argument 602 if (partial) in relocate_section() 632 if (partial) in relocate_section() 653 if (!partial || complete == nrels) in relocate_section() 748 Elf_Scn *relocscn, Elf_Scn *tscn, bool partial) in __libdwfl_relocate_section() argument 764 tscn, false, partial)); in __libdwfl_relocate_section()
|
/external/e2fsprogs/lib/ext2fs/ |
D | tdb.c | 1342 tdb_len_t partial; in transaction_read() local 1354 partial = el->offset - off; in transaction_read() 1355 if (transaction_read(tdb, off, buf, partial, cv) != 0) { in transaction_read() 1358 len -= partial; in transaction_read() 1359 off += partial; in transaction_read() 1360 buf = (void *)(partial + (char *)buf); in transaction_read() 1363 partial = len; in transaction_read() 1365 partial = el->offset + el->length - off; in transaction_read() 1367 memcpy(buf, el->data + (off - el->offset), partial); in transaction_read() 1371 len -= partial; in transaction_read() [all …]
|