/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/chromium_org/media/base/ |
audio_buffer_queue.cc | 98 int copied = std::min(frames - taken, remaining_frames_in_buffer); local 103 copied, current_buffer_offset, dest_frame_offset + taken, dest); 106 // Increase total number of frames copied, which regulates when to end 108 taken += copied; 110 // We have read |copied| frames from the current buffer. Advance the 112 current_buffer_offset += copied; 123 // If we are at the last buffer, no more data to be copied, so stop. 135 // Update the appropriate values since |taken| frames have been copied out.
|
seekable_buffer.cc | 206 // single step copied no more than the current buffer size. 207 int copied = std::min(size - taken, remaining_bytes_in_buffer); local 211 memcpy(data + taken, buffer->data() + current_buffer_offset, copied); 213 // Increase total number of bytes copied, which regulates when to end this 215 taken += copied; 217 // We have read |copied| bytes from the current buffer. Advances the 219 current_buffer_offset += copied;
|
/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);
|
/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_org/ppapi/native_client/tests/nacl_browser/fault_injection/ |
fault_pm_nameservice_test.cc | 46 int copied; local 55 for (got = 0; got < nbytes; got += copied) { 56 copied = read(d, bytes.get() + got, nbytes - got); 57 if (-1 == copied) { 62 printf("read(%d, ..., %u) -> %d\n", d, nbytes - got, copied);
|
/external/chromium_org/ppapi/native_client/tests/nacl_browser/nameservice/ |
pm_nameservice_test.cc | 46 int copied; local 55 for (got = 0; got < nbytes; got += copied) { 56 copied = read(d, bytes.get() + got, nbytes - got); 57 if (-1 == copied) { 62 printf("read(%d, ..., %u) -> %d\n", d, nbytes - got, copied);
|
/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;
|
/build/core/ |
dumpvar.mk | 15 # this should be copied to HOST_OUT_EXECUTABLES instead 19 # this should be copied to HOST_OUT_EXECUTABLES instead 26 # this should be copied to HOST_OUT_EXECUTABLES instead 33 # this should be copied to HOST_OUT_EXECUTABLES instead
|
/external/chromium_org/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/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyStream.java | 449 int copied = 0; local 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/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/chromium_org/third_party/openssl/openssl/crypto/dso/ |
dso_lib.c | 375 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/openssl/crypto/dso/ |
dso_lib.c | 375 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;
|
/device/generic/goldfish/opengl/system/egl/ |
Android.mk | 25 # Ensure that this file is only copied to emulator-specific builds.
|
/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);
|
/ndk/build/core/ |
prebuilt-static-library.mk | 27 # Prebuilt static libraries don't need to be copied to TARGET_OUT
|
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_exec.h | 102 struct vbo_exec_copied_vtx copied; member in struct:vbo_exec_context::__anon13424
|
vbo_exec_api.c | 70 exec->vtx.copied.nr = 0; 87 /* Execute the buffer and save copied vertices. 93 exec->vtx.copied.nr = 0; 106 if (exec->vtx.copied.nr == last_count) 119 GLfloat *data = exec->vtx.copied.buffer; 123 * to exec->vtx.copied. 134 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr); 136 for (i = 0 ; i < exec->vtx.copied.nr ; i++) { 144 exec->vtx.copied.nr = 0; 231 * Flush existing data, set new attrib size, replay copied vertices [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_exec.h | 102 struct vbo_exec_copied_vtx copied; member in struct:vbo_exec_context::__anon23891
|
vbo_exec_api.c | 70 exec->vtx.copied.nr = 0; 87 /* Execute the buffer and save copied vertices. 93 exec->vtx.copied.nr = 0; 106 if (exec->vtx.copied.nr == last_count) 119 GLfloat *data = exec->vtx.copied.buffer; 123 * to exec->vtx.copied. 134 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr); 136 for (i = 0 ; i < exec->vtx.copied.nr ; i++) { 144 exec->vtx.copied.nr = 0; 231 * Flush existing data, set new attrib size, replay copied vertices [all...] |
/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)
|
/packages/apps/UnifiedEmail/src/com/android/mail/ |
SenderInfoLoader.java | 213 int copied = 0; local 216 copied++; 217 if (copied >= truncatedLen) {
|
/external/chromium_org/net/socket/ |
ssl_server_socket_unittest.cc | 107 int copied = PropogateData(read_buf_, read_buf_len_); local 112 callback.Run(copied); 126 int copied = std::min(buf->BytesRemaining(), read_buf_len); local 127 memcpy(read_buf->data(), buf->data(), copied); 128 buf->DidConsume(copied); 132 return copied;
|