Home
last modified time | relevance | path

Searched refs:tocopy (Results 1 – 7 of 7) sorted by relevance

/external/libcap/libcap/
Dcap_file.c35 unsigned tocopy, i; in _fcaps_load() local
41 tocopy = VFS_CAP_U32_1; in _fcaps_load()
48 tocopy = VFS_CAP_U32_2; in _fcaps_load()
68 for (i=0; i < tocopy; i++) { in _fcaps_load()
93 unsigned tocopy, i; in _fcaps_save() local
104 tocopy = VFS_CAP_U32_1; in _fcaps_save()
112 tocopy = VFS_CAP_U32_2; in _fcaps_save()
120 tocopy = VFS_CAP_U32_2; in _fcaps_save()
132 for (eff_not_zero = 0, i = 0; i < tocopy; i++) { in _fcaps_save()
148 for (i=0; i < tocopy; i++) { in _fcaps_save()
/external/skia/src/pdf/
DSkDeflate.cpp106 size_t tocopy = in write() local
108 memcpy(fImpl->fInBuffer + fImpl->fInBufferIndex, buffer, tocopy); in write()
109 len -= tocopy; in write()
110 buffer += tocopy; in write()
111 fImpl->fInBufferIndex += tocopy; in write()
/external/e2fsprogs/lib/ext2fs/
Dextent.c833 int tocopy; in ext2fs_extent_node_split() local
897 tocopy = ext2fs_le16_to_cpu(eh->eh_entries); in ext2fs_extent_node_split()
906 tocopy = ext2fs_le16_to_cpu(eh->eh_entries) / 2; in ext2fs_extent_node_split()
911 tocopy, ext2fs_le16_to_cpu(eh->eh_entries), in ext2fs_extent_node_split()
915 if (!tocopy) { in ext2fs_extent_node_split()
952 neweh->eh_entries = ext2fs_cpu_to_le16(tocopy); in ext2fs_extent_node_split()
960 (ext2fs_le16_to_cpu(eh->eh_entries) - tocopy), in ext2fs_extent_node_split()
961 sizeof(struct ext3_extent_idx) * tocopy); in ext2fs_extent_node_split()
986 path->entries -= tocopy; in ext2fs_extent_node_split()
987 path->left -= tocopy; in ext2fs_extent_node_split()
/external/libmtp/src/
Dlibusb-glue.c1036 unsigned long tocopy = wantlen; in memory_getfunc() local
1038 if (priv->curoff + tocopy > priv->size) in memory_getfunc()
1039 tocopy = priv->size - priv->curoff; in memory_getfunc()
1040 memcpy (data, priv->data + priv->curoff, tocopy); in memory_getfunc()
1041 priv->curoff += tocopy; in memory_getfunc()
1042 *gotlen = tocopy; in memory_getfunc()
Dptp.c217 unsigned long tocopy = wantlen; in memory_getfunc() local
219 if (priv->curoff + tocopy > priv->size) in memory_getfunc()
220 tocopy = priv->size - priv->curoff; in memory_getfunc()
221 memcpy (data, priv->data + priv->curoff, tocopy); in memory_getfunc()
222 priv->curoff += tocopy; in memory_getfunc()
223 *gotlen = tocopy; in memory_getfunc()
/external/libweave/third_party/chromium/base/
Dtuple_unittest.cc87 CopyLogger(const CopyLogger& tocopy) { ++TimesConstructed; ++TimesCopied; } in CopyLogger()
/external/libchrome/base/
Dtuple_unittest.cc86 CopyLogger(const CopyLogger& tocopy) { ++TimesConstructed; ++TimesCopied; } in CopyLogger()