Searched defs:to_read (Results 1 - 5 of 5) sorted by relevance
/osnet-11/usr/src/lib/libntfs/common/libntfs/ |
H A D | compress.c | 326 s64 br, to_read, ofs, total, total2; local 430 to_read = min(count, cb_size - ofs); 431 memset(b, 0, to_read); 433 total += to_read; 434 count -= to_read; 435 b = (u8*)b + to_read; 451 to_read = min(count, cb_size - ofs); 458 br = ntfs_attr_pread(na, ofs, to_read, b); 474 to_read -= br; 476 } while (to_read > [all...] |
H A D | crypto.c | 172 int f, to_read, total, attempts, br; local 205 to_read = key_stat.st_size; 208 br = read(f, *pfx + total, to_read); 215 to_read -= br; 217 } while (to_read > 0 && attempts < 3);
|
H A D | runlist.c | 1038 s64 bytes_read, to_read, ofs, total; local 1060 to_read = min(count, (rl->length << 1062 memset(b, 0, to_read); 1064 total += to_read; 1065 count -= to_read; 1066 b = (u8*)b + to_read; 1070 to_read = min(count, (rl->length << vol->cluster_size_bits) - 1074 vol->cluster_size_bits) + ofs, to_read, b);
|
H A D | attrib.c | 868 s64 br, to_read, ofs, total, total2; local 975 to_read = min(count, (rl->length << 977 memset(b, 0, to_read); 979 total += to_read; 980 count -= to_read; 981 b = (u8*)b + to_read; 985 to_read = min(count, (rl->length << vol->cluster_size_bits) - 989 "lcn 0x%llx, ofs 0x%llx.\n", to_read, rl->vcn, 992 ofs, to_read, b);
|
/osnet-11/usr/src/grub/grub-0.97/stage2/ |
H A D | fsys_reiserfs.c | 891 unsigned int to_read; local 926 to_read = blocksize - offset; 927 if (to_read > len) 928 to_read = len; 935 (INFO->current_item - LEAF + offset), to_read, buf); 940 memcpy (buf, INFO->current_item + offset, to_read); 957 to_read = INFO->blocksize - blk_offset; 958 if (to_read > len) 959 to_read = len; 967 blk_offset, to_read, bu [all...] |
Completed in 66 milliseconds