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

  /hardware/libhardware/modules/consumerir/
consumerir.c 60 size_t to_copy = ARRAY_SIZE(consumerir_freqs); local
62 to_copy = len < to_copy ? len : to_copy;
63 memcpy(ranges, consumerir_freqs, to_copy * sizeof(consumerir_freq_range_t));
64 return to_copy;
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 286 const size_t to_copy = min((size_t)(end - start), (size - 1)); local
287 memcpy(token, start, to_copy);
288 token[to_copy] = '\0';
  /external/elfutils/src/
ar.c 921 struct armem *to_copy = NULL; local
978 if (to_copy == NULL)
979 to_copy = newp->next = newp;
982 newp->next = to_copy->next;
983 to_copy = to_copy->next = newp;
1027 if (likely (to_copy != NULL))
1043 struct armem *last = to_copy;
1044 to_copy = to_copy->next
    [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...]
  /art/runtime/interpreter/
unstarted_runtime.cc 1092 mirror::String* to_copy = shadow_frame->GetVRegReference(arg_offset)->AsString(); local
    [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...]

Completed in 680 milliseconds