/external/qemu/memcheck/ |
D | memcheck_util.c | 123 size_t copied = 0; in memcheck_get_guest_string() local 126 for (copied = 0; copied < qemu_buffer_size - 1; copied++) { in memcheck_get_guest_string() 127 qemu_str[copied] = ldub_user(guest_str + copied); in memcheck_get_guest_string() 128 if (qemu_str[copied] == '\0') { in memcheck_get_guest_string() 129 return copied; in memcheck_get_guest_string() 133 qemu_str[copied] = '\0'; in memcheck_get_guest_string() 134 return copied; in memcheck_get_guest_string() 142 size_t copied = 0; in memcheck_get_guest_kernel_string() local 145 for (copied = 0; copied < qemu_buffer_size - 1; copied++) { in memcheck_get_guest_kernel_string() 146 qemu_str[copied] = ldub_kernel(guest_str + copied); in memcheck_get_guest_kernel_string() [all …]
|
/external/llvm/lib/Support/ |
D | StreamableMemoryObject.cpp | 35 uint64_t* copied) const LLVM_OVERRIDE; 71 uint64_t* copied) const { in readBytes() 74 if (copied) *copied = size; in readBytes() 115 uint64_t* copied) const { in readBytes() 118 if (copied) *copied = size; in readBytes()
|
D | MemoryObject.cpp | 19 uint64_t* copied) const { in readBytes() 33 if (copied) in readBytes() 34 *copied = current - address; in readBytes()
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
D | SpdyStream.java | 449 int copied = 0; in read() local 456 copied += bytesToCopy; in read() 463 if (copied < count) { in read() 464 int bytesToCopy = Math.min(limit - pos, count - copied); in read() 465 System.arraycopy(buffer, pos, b, offset + copied, bytesToCopy); in read() 467 copied += bytesToCopy; in read() 471 unacknowledgedBytes += copied; in read() 482 return copied; in read()
|
/external/chromium/net/socket/ |
D | ssl_server_socket_unittest.cc | 74 int copied = PropogateData(read_buf_, read_buf_len_); in DoReadCallback() local 79 callback->Run(copied); in DoReadCallback() 84 int copied = std::min(buf->BytesRemaining(), read_buf_len); in PropogateData() local 85 memcpy(read_buf->data(), buf->data(), copied); in PropogateData() 86 buf->DidConsume(copied); in PropogateData() 90 return copied; in PropogateData()
|
/external/chromium/base/third_party/icu/ |
D | README.chromium | 4 This file has the relevant components from ICU copied to handle basic 5 UTF8/16/32 conversions. Components are copied from utf.h utf8.h utf16.h and
|
/external/webkit/Source/WebCore/platform/network/qt/ |
D | QNetworkReplyHandler.cpp | 116 qint64 copied = 0; in readData() local 117 while (copied < size && !m_formElements.isEmpty()) { in readData() 119 const qint64 available = size-copied; in readData() 123 memcpy(destination+copied, element.m_data.data()+m_currentDelta, toCopy); in readData() 125 copied += toCopy; in readData() 131 memcpy(destination+copied, data.constData(), data.size()); in readData() 132 copied += data.size(); in readData() 139 return copied; in readData()
|
/external/openssl/crypto/dso/ |
D | dso_lib.c | 375 char *copied; in DSO_set_filename() local 388 copied = OPENSSL_malloc(strlen(filename) + 1); in DSO_set_filename() 389 if(copied == NULL) in DSO_set_filename() 394 BUF_strlcpy(copied, filename, strlen(filename) + 1); in DSO_set_filename() 397 dso->filename = copied; in DSO_set_filename()
|
/external/llvm/include/llvm/Support/ |
D | StreamableMemoryObject.h | 78 uint64_t* copied) const = 0; 117 uint64_t* copied) const LLVM_OVERRIDE;
|
D | MemoryObject.h | 64 uint64_t* copied) const;
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64CallingConv.td | 98 // the argument had been copied to the least significant bits of a 64-bit 103 // precision Floating-point or Short Vector Type, then the argument is copied 111 // copied to the least significant bits of x[NGRN]. The NGRN is incremented by 130 // equal to 16 and the NGRN is less than 7, the argument is copied to x[NGRN] 141 // of the argument is not more than 8 minus NGRN, then the argument is copied 158 // PCS: "C.13: If the argument is a composite type then the argument is copied 168 // copied to the least significant bits of a 64-bit register and the remaining 174 // PCS: "C.15: The argument is copied to memory at the adjusted NSAA. The NSAA
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | SuballocatedIntVector.java | 214 int copied=(m_blocksize-offset < numberOfElements) in addElements() local 216 numberOfElements-=copied; in addElements() 217 while(copied-- > 0) in addElements()
|
/external/chromium/android/net/ |
D | android_network_library_impl.cc | 40 size_t copied = cert_chain[i].copy(reinterpret_cast<char*>(bytes), len); in GetCertificateByteArray() local 41 DCHECK_EQ(copied, len); in GetCertificateByteArray()
|
/external/chromium/webkit/glue/media/ |
D | simple_data_source.cc | 126 size_t copied = std::min(size, static_cast<size_t>(size_ - position)); in Read() local 127 memcpy(data, data_.c_str() + position, copied); in Read() 128 read_callback->RunWithParams(Tuple1<size_t>(copied)); in Read()
|
/external/bzip2/ |
D | README.android | 9 * copied LICENSE to NOTICE
|
/external/openssl/crypto/bf/ |
D | COPYRIGHT | 40 copied and put under another distrubution license 44 experience in code simply being copied and the attribution removed
|
/external/smack/asmack-master/patch/beem/ |
D | README.txt | 3 directory must be copied in the patch directory of asmack in order to be used.
|
/external/clang/docs/ |
D | BlockLanguageSpec.rst | 336 Captured variables are copied into the Block at the instant of 337 evaluating the Block literal expression. They are also copied when 339 cases, they are copied as if the variable were const-qualified, and 348 allocated in the heap or may first appear on the stack and be copied 349 to the heap as a result of a ``Block_copy()`` operation. When copied 350 from the stack, ``__block`` variables are copied using their normal 352 variables are copied as x-values if that is possible, then as l-values
|
/external/llvm/test/CodeGen/Thumb2/ |
D | 2010-04-15-DynAllocBug.ll | 4 ; Make sure the result of the first dynamic_alloc isn't copied back to sp more
|
/external/chromium/net/third_party/gssapi/ |
D | README.chromium | 13 The LICENSE from the header has been copied here.
|
/external/iptables/extensions/ |
D | libxt_CONNMARK.man | 49 copied. 53 copied. This is only valid in the \fBmangle\fP table.
|
/external/openssl/crypto/des/ |
D | COPYRIGHT | 44 copied and put under another distrubution license 48 experience in code simply being copied and the attribution removed
|
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/ |
D | README | 14 These ligatures have been copied from a "Noori Nastaliq computerised Urdu
|
/external/libmtp/src/ |
D | README | 4 Parts of libptp2 are copied (and modified) from version 1.1.0:
|
/external/llvm/test/CodeGen/ARM/ |
D | integer_insertelement.ll | 4 ; the vector is not spuriously copied. "vorr dX, dY, dY" is the way of moving
|