Searched defs:bytes_to_copy (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/libldap5/sources/ldap/ber/
H A Dio.c1024 int bytes_to_copy = 0; local
1027 bytes_to_copy = bytes_to_read;
1029 bytes_to_copy = (b->length - b->offset);
1031 if (1 == bytes_to_copy) {
1034 if (0 == bytes_to_copy) {
1038 memcpy(return_buffer,b->p+b->offset,bytes_to_copy);
1039 b->offset += bytes_to_copy;
1041 return bytes_to_copy;
/osnet-11/usr/src/cmd/hal/hald/
H A Ddevice_info.c1332 int bytes_to_copy; local
1343 bytes_to_copy = len;
1344 if (bytes_to_copy > bytes_left)
1345 bytes_to_copy = bytes_left;
1347 if (bytes_to_copy > 0)
1349 bytes_to_copy);
1351 pc->cdata_buf_len += bytes_to_copy;

Completed in 20 milliseconds