HomeSort by relevance Sort by last modified time
    Searched refs:to_copy (Results 1 - 9 of 9) 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;
  /art/runtime/native/
java_lang_StringFactory.cc 65 static jstring StringFactory_newStringFromString(JNIEnv* env, jclass, jstring to_copy) {
67 if (UNLIKELY(to_copy == nullptr)) {
72 Handle<mirror::String> string(hs.NewHandle(soa.Decode<mirror::String*>(to_copy)));
  /art/compiler/optimizing/
gvn.cc 51 ValueSet(ArenaAllocator* allocator, const ValueSet& to_copy)
53 num_buckets_(to_copy.IdealBucketCount()),
56 num_entries_(to_copy.num_entries_) {
60 if (num_buckets_ == to_copy.num_buckets_) {
63 memcpy(buckets_, to_copy.buckets_, num_buckets_ * sizeof(Node*));
67 for (size_t i = 0; i < to_copy.num_buckets_; ++i) {
68 for (Node* node = to_copy.buckets_[i]; node != nullptr; node = node->GetNext()) {
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 287 const size_t to_copy = min((size_t)(end - start), (size - 1)); local
288 memcpy(token, start, to_copy);
289 token[to_copy] = '\0';
  /external/elfutils/src/src/
ar.c 925 struct armem *to_copy = NULL; local
982 if (to_copy == NULL)
983 to_copy = newp->next = newp;
986 newp->next = to_copy->next;
987 to_copy = to_copy->next = newp;
1031 if (likely (to_copy != NULL))
1047 struct armem *last = to_copy;
1048 to_copy = to_copy->next
    [all...]
  /bionic/libc/bionic/
malloc_debug_qemu.cpp 923 size_t to_copy = bytes < cur_desc.requested_bytes ? bytes : cur_desc.requested_bytes; local
    [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc 811 mirror::String* to_copy = shadow_frame->GetVRegReference(arg_offset)->AsString(); 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...]

Completed in 205 milliseconds