HomeSort by relevance Sort by last modified time
    Searched refs:copied (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/llvm/lib/Support/
MemoryObject.cpp 19 uint64_t* copied) const {
33 if (copied)
34 *copied = current - address;
StreamableMemoryObject.cpp 32 uint64_t* copied) const;
65 uint64_t* copied) const {
68 if (copied) *copied = size;
109 uint64_t* copied) const {
112 if (copied) *copied = size;
  /external/qemu/memcheck/
memcheck_util.c 5 ** 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] = '\0'
142 size_t copied = 0; local
    [all...]
  /external/llvm/include/llvm/Support/
MemoryObject.h 57 /// @param copied - A pointer to a nunber that is filled in with the number
64 uint64_t* copied) const;
StreamableMemoryObject.h 70 /// @param copied - A pointer to a nunber that is filled in with the number
77 uint64_t* copied) const = 0;
116 uint64_t* copied) const ;
  /frameworks/av/media/libstagefright/
SkipCutBuffer.cpp 64 size_t copied = read(dst, buffer->size()); local
65 buffer->set_range(0, copied);
91 size_t copied = read(dst, buffer->capacity()); local
92 buffer->setRange(0, copied);
  /external/webkit/LayoutTests/fast/url/script-tests/
port.js 4 // Invalid input should be copied w/ failure.
  /ndk/sources/host-tools/sed-4.2.1/
autoboot 475 copied=
487 copied=$copied${sep}$gnulib_mk; sep=$nl
498 copied=$copied$sep$file; sep=$nl
519 if test -n "$copied"; then
520 insert_sorted_if_absent $ig "$copied"
525 f=`echo "$copied"|sed 's/\.in\.h$/.h/;s/\.sin$/.sed/;s/\.y$/.c/;s/\.gperf$/.h/'`
530 f=`echo "$copied"|sed 's/sys_.*\.in\.h$/sys/'`
  /external/chromium/net/socket/
ssl_server_socket_unittest.cc 74 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;
  /frameworks/base/core/jni/
android_util_EventLog.cpp 101 jsize copied = 0, num = env->GetArrayLength(value); local
102 for (; copied < num && copied < 255; ++copied) {
103 jobject item = env->GetObjectArrayElement(value, copied);
136 buf[1] = copied;
  /external/v8/test/mjsunit/
array-concat.js 57 // copied on concat.
75 // should be copied, but not the one on the prototype.
83 // copied.
89 // ben was not copied
127 // copied on concat.
145 // should be copied, but not the one on the prototype.
153 // copied.
159 // ben was not copied
161 // moe was not copied, but we can see it through the prototype
  /external/openssl/crypto/dso/
dso_lib.c 367 char *copied; local
380 copied = OPENSSL_malloc(strlen(filename) + 1);
381 if(copied == NULL)
386 BUF_strlcpy(copied, filename, strlen(filename) + 1);
389 dso->filename = copied;
  /external/chromium/android/net/
android_network_library_impl.cc 40 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/
copy-files.cmd 76 echo Deleting copied files...
  /external/webkit/Source/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 116 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;
  /sdk/emulator/opengl/system/egl/
Android.mk 25 # Ensure that this file is only copied to emulator-specific builds.
  /build/core/
dumpvar.mk 14 # this should be copied to HOST_OUT_EXECUTABLES instead
20 # this should be copied to HOST_OUT_EXECUTABLES instead
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SuballocatedIntVector.java 214 int copied=(m_blocksize-offset < numberOfElements) local
216 numberOfElements-=copied;
217 while(copied-- > 0)
  /external/chromium/webkit/glue/media/
simple_data_source.cc 126 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));
  /bootable/recovery/
Android.mk 38 # It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses
  /external/mesa3d/docs/
MESA_pixmap_colormap.spec 73 rendered into the pixmap may then be copied to a window (which uses the
  /sdk/emulator/opengl/tests/gles_android_wrapper/
Android.mk 47 # Ensure that this file is only copied to emulator-specific builds.
  /build/core/tasks/
sdk-addon.mk 41 # Files that are built and then copied into the sdk-addon
53 # Files that are copied directly into the sdk-addon
  /cts/
CtsTestCaseList.mk 44 # Any APKs that need to be copied to the CTS distribution's testcases
  /external/chromium/crypto/
nss_util.cc 63 PRInt32 copied = PR_GetErrorText(error_text.get()); local
64 result = std::string(error_text.get(), copied);

Completed in 1457 milliseconds

1 2 3