Searched refs:copied (Results 1 - 25 of 34) sorted by relevance

12

/external/llvm/lib/Support/
H A DMemoryObject.cpp19 uint64_t* copied) const {
33 if (copied)
34 *copied = current - address;
H A DStreamableMemoryObject.cpp35 uint64_t* copied) const LLVM_OVERRIDE;
71 uint64_t* copied) const {
74 if (copied) *copied = size;
115 uint64_t* copied) const {
118 if (copied) *copied = size;
/external/qemu/memcheck/
H A Dmemcheck_util.c5 ** may be copied, distributed, and modified under those terms.
123 size_t copied = 0; local
126 for (copied = 0; copied < qemu_buffer_size - 1; copied++) {
127 qemu_str[copied] = ldub_user(guest_str + copied);
128 if (qemu_str[copied] == '\0') {
129 return copied;
133 qemu_str[copied]
142 size_t copied = 0; local
[all...]
/external/llvm/include/llvm/Support/
H A DMemoryObject.h57 /// @param copied - A pointer to a nunber that is filled in with the number
64 uint64_t* copied) const;
H A DStreamableMemoryObject.h71 /// @param copied - A pointer to a nunber that is filled in with the number
78 uint64_t* copied) const = 0;
117 uint64_t* copied) const LLVM_OVERRIDE;
/external/chromium/net/socket/
H A Dssl_server_socket_unittest.cc74 int copied = PropogateData(read_buf_, read_buf_len_); local
79 callback->Run(copied);
84 int copied = std::min(buf->BytesRemaining(), read_buf_len); local
85 memcpy(read_buf->data(), buf->data(), copied);
86 buf->DidConsume(copied);
90 return copied;
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdyStream.java449 int copied = 0;
456 copied += bytesToCopy;
463 if (copied < count) {
464 int bytesToCopy = Math.min(limit - pos, count - copied);
465 System.arraycopy(buffer, pos, b, offset + copied, bytesToCopy);
467 copied += bytesToCopy;
471 unacknowledgedBytes += copied;
482 return copied;
/external/openssl/crypto/dso/
H A Ddso_lib.c375 char *copied; local
388 copied = OPENSSL_malloc(strlen(filename) + 1);
389 if(copied == NULL)
394 BUF_strlcpy(copied, filename, strlen(filename) + 1);
397 dso->filename = copied;
/external/chromium/android/net/
H A Dandroid_network_library_impl.cc40 size_t copied = cert_chain[i].copy(reinterpret_cast<char*>(bytes), len); local
41 DCHECK_EQ(copied, len);
/external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
H A Dcopy-files.cmd76 echo Deleting copied files...
/external/webkit/Source/WebCore/platform/network/qt/
H A DQNetworkReplyHandler.cpp116 qint64 copied = 0;
117 while (copied < size && !m_formElements.isEmpty()) {
119 const qint64 available = size-copied;
123 memcpy(destination+copied, element.m_data.data()+m_currentDelta, toCopy);
125 copied += toCopy;
131 memcpy(destination+copied, data.constData(), data.size());
132 copied += data.size();
139 return copied;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSuballocatedIntVector.java214 int copied=(m_blocksize-offset < numberOfElements)
216 numberOfElements-=copied;
217 while(copied-- > 0)
/external/chromium/webkit/glue/media/
H A Dsimple_data_source.cc126 size_t copied = std::min(size, static_cast<size_t>(size_ - position)); local
127 memcpy(data, data_.c_str() + position, copied);
128 read_callback->RunWithParams(Tuple1<size_t>(copied));
/external/chromium/crypto/
H A Dnss_util.cc63 PRInt32 copied = PR_GetErrorText(error_text.get()); local
64 result = std::string(error_text.get(), copied);
/external/kernel-headers/original/linux/sunrpc/
H A Dxprt.h164 unsigned long tcp_copied, /* copied to request */
255 void xprt_complete_rqst(struct rpc_task *task, int copied);
/external/openssl/crypto/bn/
H A Dbn_prime.pl87 * copied and put under another distribution licence
/external/llvm/lib/Support/Unix/
H A DSignals.inc238 // made on insertion become invalid by being copied down an element.
/external/openssl/crypto/conf/
H A Dkeysets.pl109 * copied and put under another distribution licence
/external/openssl/crypto/objects/
H A Dobj_dat.pl231 * copied and put under another distribution licence
H A Dobjects.pl182 * copied and put under another distribution licence
/external/protobuf/
H A DAndroid.mk217 # Define the header files to be copied
283 # Define the header files to be copied
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libvpx/libvpx/vp8/common/arm/neon/
H A Dvp8_subpixelvariance8x8_neon.asm25 ;note: most of the code is copied from bilinear_predict8x8_neon and vp8_variance8x8_neon.
/external/srec/tests/
H A DAndroid.mk133 # By default they are not copied to /system/usr/srec since they are #

Completed in 439 milliseconds

12