HomeSort by relevance Sort by last modified time
    Searched refs:to_copy (Results 1 - 11 of 11) sorted by null

  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 267 const size_t to_copy = min((end - start), (size - 1)); local
268 memcpy(token, start, to_copy);
269 token[to_copy] = '\0';
  /external/elfutils/src/
ar.c 905 struct armem *to_copy = NULL; local
962 if (to_copy == NULL)
963 to_copy = newp->next = newp;
966 newp->next = to_copy->next;
967 to_copy = to_copy->next = newp;
1011 if (likely (to_copy != NULL))
1027 struct armem *last = to_copy;
1028 to_copy = to_copy->next
    [all...]
  /bionic/libc/bionic/
malloc_debug_qemu.c 872 size_t to_copy; local
    [all...]
  /hardware/ril/mock-ril/src/cpp/
node_buffer.cpp 405 ssize_t to_copy = MIN(source_end - source_start, local
410 to_copy);
413 return scope.Close(Integer::New(to_copy));
  /external/qemu/
sockets.c 816 int to_copy = MIN(sizeof(host_name)-1, port_name - host_and_port); local
817 if (to_copy != 0) {
818 memcpy(host_name, host_and_port, to_copy);
819 host_name[to_copy] = '\0';
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
sockets.c 821 int to_copy = MIN((int)sizeof(host_name)-1, port_name - host_and_port); local
822 if (to_copy != 0) {
823 memcpy(host_name, host_and_port, to_copy);
824 host_name[to_copy] = '\0';
    [all...]
  /external/qemu/android/
hw-qemud.c 2044 size_t to_copy = min(msg->size - msg->offset, buff->size - off_in_buff); local
    [all...]
  /external/bluetooth/bluez/audio/
avdtp.c 573 int left, to_copy; local
578 to_copy = session->omtu - sizeof(cont);
579 DBG("sending continue with %d bytes", to_copy);
582 to_copy = left;
583 DBG("sending end with %d bytes", to_copy);
590 memcpy(session->buf + sizeof(cont), data + sent, to_copy);
592 if (!try_send(sock, session->buf, to_copy + sizeof(cont)))
595 sent += to_copy;
    [all...]
  /external/libusb/libusb/os/
linux_usbfs.c 426 int to_copy; local
492 to_copy = (len < sizeof(tmp)) ? len : sizeof(tmp);
493 memcpy(buffer, tmp, to_copy);
    [all...]
  /external/zlib/contrib/minizip/
zip.c 247 unsigned char* to_copy; local
263 to_copy = &(ldi->data[ldi->filled_in_this_block]);
266 *(to_copy+i)=*(from_copy+i);
    [all...]
  /external/v8/src/
builtins.cc 893 const int to_copy = len - actual_delete_count - actual_start; local
897 actual_start + item_count, to_copy);
    [all...]

Completed in 594 milliseconds