Home
last modified time | relevance | path

Searched refs:to_copy (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Python/
Dmysnprintf.c92 const size_t to_copy = (size_t)len < size ? in PyOS_vsnprintf() local
94 assert(to_copy < size); in PyOS_vsnprintf()
95 memcpy(str, buffer, to_copy); in PyOS_vsnprintf()
96 str[to_copy] = '\0'; in PyOS_vsnprintf()
/external/boringssl/src/crypto/curve25519/
Dspake25519.c456 size_t to_copy = max_out_key_len; in SPAKE2_process_msg() local
457 if (to_copy > sizeof(key)) { in SPAKE2_process_msg()
458 to_copy = sizeof(key); in SPAKE2_process_msg()
460 OPENSSL_memcpy(out_key, key, to_copy); in SPAKE2_process_msg()
461 *out_key_len = to_copy; in SPAKE2_process_msg()
/external/elfutils/src/
Dar.c921 struct armem *to_copy = NULL; in do_oper_delete() local
978 if (to_copy == NULL) in do_oper_delete()
979 to_copy = newp->next = newp; in do_oper_delete()
982 newp->next = to_copy->next; in do_oper_delete()
983 to_copy = to_copy->next = newp; in do_oper_delete()
1027 if (likely (to_copy != NULL)) in do_oper_delete()
1043 struct armem *last = to_copy; in do_oper_delete()
1044 to_copy = to_copy->next; in do_oper_delete()
1051 if (write_member (to_copy, &start, &len, elf, cur_off, newfd) != 0) in do_oper_delete()
1053 while ((to_copy = to_copy->next) != NULL); in do_oper_delete()
/external/zlib/src/contrib/minizip/
Dzip.c247 unsigned char* to_copy; in add_data_in_datablock() local
263 to_copy = &(ldi->data[ldi->filled_in_this_block]); in add_data_in_datablock()
266 *(to_copy+i)=*(from_copy+i); in add_data_in_datablock()