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

  /system/core/liblinenoise/
linenoise.c 436 int tocopy = history_len; local
440 if (len < tocopy) tocopy = len;
441 memcpy(new,history+(history_max_len-tocopy), sizeof(char*)*tocopy);
  /external/chromium/base/
tuple_unittest.cc 82 CopyLogger(const CopyLogger& tocopy) { ++TimesConstructed; ++TimesCopied; }
  /external/e2fsprogs/lib/ext2fs/
extent.c 831 int tocopy; local
895 tocopy = ext2fs_le16_to_cpu(eh->eh_entries);
904 tocopy = ext2fs_le16_to_cpu(eh->eh_entries) / 2;
909 tocopy, ext2fs_le16_to_cpu(eh->eh_entries),
913 if (!tocopy) {
951 neweh->eh_entries = ext2fs_cpu_to_le16(tocopy);
959 (ext2fs_le16_to_cpu(eh->eh_entries) - tocopy),
960 sizeof(struct ext3_extent_idx) * tocopy);
984 path->entries -= tocopy;
985 path->left -= tocopy;
    [all...]
  /external/libmtp/src/
libusb-glue.c 1034 unsigned long tocopy = wantlen; local
    [all...]
ptp.c 217 unsigned long tocopy = wantlen; local
219 if (priv->curoff + tocopy > priv->size)
220 tocopy = priv->size - priv->curoff;
221 memcpy (data, priv->data + priv->curoff, tocopy);
222 priv->curoff += tocopy;
223 *gotlen = tocopy;
    [all...]

Completed in 510 milliseconds