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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
mysnprintf.c 92 const size_t to_copy = (size_t)len < size ? local
94 assert(to_copy < size);
95 memcpy(str, buffer, to_copy);
96 str[to_copy] = '\0';
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
mysnprintf.c 92 const size_t to_copy = (size_t)len < size ? local
94 assert(to_copy < size);
95 memcpy(str, buffer, to_copy);
96 str[to_copy] = '\0';
  /external/python/cpython2/Python/
mysnprintf.c 92 const size_t to_copy = (size_t)len < size ? local
94 assert(to_copy < size);
95 memcpy(str, buffer, to_copy);
96 str[to_copy] = '\0';
  /hardware/libhardware/modules/consumerir/
consumerir.c 64 size_t to_copy = ARRAY_SIZE(consumerir_freqs); local
66 to_copy = len < to_copy ? len : to_copy;
67 memcpy(ranges, consumerir_freqs, to_copy * sizeof(consumerir_freq_range_t));
68 return to_copy;
  /external/boringssl/src/crypto/curve25519/
spake25519.c 456 size_t to_copy = max_out_key_len; local
457 if (to_copy > sizeof(key)) {
458 to_copy = sizeof(key);
460 OPENSSL_memcpy(out_key, key, to_copy);
461 *out_key_len = to_copy;
  /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...]
  /art/runtime/interpreter/
unstarted_runtime.cc 1317 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 701 milliseconds