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

  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 265 const size_t to_copy = min((size_t)(end - start), (size - 1)); local
266 memcpy(token, start, to_copy);
267 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.cpp 833 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 817 int to_copy = MIN(sizeof(host_name)-1, port_name - host_and_port); local
818 if (to_copy != 0) {
819 memcpy(host_name, host_and_port, to_copy);
820 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/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/src/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 1702 milliseconds