/reactos/drivers/filesystems/btrfs/ |
H A D | send.c | 287 if (tp2 && !tp) { in send_inode() 291 …R("(%I64x,%x,%I64x) was %u bytes, expected %Iu\n", tp2->item->key.obj_id, tp2->item->key.obj_type,… in send_inode() 335 if (tp2) { in send_inode() 382 } else if (!tp2) { in send_inode() 1609 if (tp2) in wait_for_flush() 1636 if (tp2) { in wait_for_flush() 2698 if (tp2) { in send_extent_data() 2752 RtlCopyMemory(&se->data, tp2->item->data, tp2->item->size); in send_extent_data() 2791 if (tp2 && tp2->item->size < sizeof(DIR_ITEM)) { in send_xattr() 2797 if (tp && !tp2) { in send_xattr() [all …]
|
H A D | extent-tree.c | 749 traverse_ptr tp2; in increase_extent_refcount() local 763 …x,%I64x) was %x bytes, expecting %Ix\n", tp2.item->key.obj_id, tp2.item->key.obj_type, tp2.item->k… in increase_extent_refcount() 766 …%x,%I64x) was %x bytes, expecting %x\n", tp2.item->key.obj_id, tp2.item->key.obj_type, tp2.item->k… in increase_extent_refcount() 776 RtlCopyMemory(data2, tp2.item->data, tp2.item->size); in increase_extent_refcount() 802 …ert_tree_item(Vcb, Vcb->extent_root, tp2.item->key.obj_id, tp2.item->key.obj_type, tp2.item->key.o… in increase_extent_refcount() 907 traverse_ptr tp, tp2; in decrease_extent_refcount() local 1269 …ERR("(%I64x,%x,%I64x) not found\n", tp2.item->key.obj_id, tp2.item->key.obj_type, tp2.item->key.of… in decrease_extent_refcount() 1273 if (tp2.item->size < datalen) { in decrease_extent_refcount() 1274 … was %u bytes, expected at least %lu\n", tp2.item->key.obj_id, tp2.item->key.obj_type, tp2.item->k… in decrease_extent_refcount() 1327 …ert_tree_item(Vcb, Vcb->extent_root, tp2.item->key.obj_id, tp2.item->key.obj_type, tp2.item->key.o… in decrease_extent_refcount() [all …]
|
H A D | balance.c | 170 traverse_ptr tp2 = *tp, next_tp; variable 173 tp2 = next_tp; 189 Status = delete_tree_item(Vcb, &tp2); 1256 traverse_ptr tp2; variable 1259 tp = tp2; 1269 traverse_ptr tp2; variable 1308 tp = tp2; 1422 traverse_ptr tp2 = *tp, next_tp; variable 1425 tp2 = next_tp; 1428 … if (tp2.item->key.obj_type == TYPE_EXTENT_DATA_REF && tp2.item->size >= sizeof(EXTENT_DATA_REF)) { [all …]
|
H A D | scrub.c | 2558 traverse_ptr tp2; in scrub_chunk_raid56_stripe_run() local 2574 if (tp2.item->key.offset >= extent_end) in scrub_chunk_raid56_stripe_run() 2577 if (tp2.item->key.offset >= extent_start) { in scrub_chunk_raid56_stripe_run() 2579 …uint64_t csum_end = min(extent_end, tp2.item->key.offset + (((uint64_t)tp2.item->size << Vcb->sect… in scrub_chunk_raid56_stripe_run() 2584 … tp2.item->data + (((csum_start - tp2.item->key.offset) * Vcb->csum_size) >> Vcb->sector_shift), in scrub_chunk_raid56_stripe_run() 2591 tp2 = next_tp2; in scrub_chunk_raid56_stripe_run() 3006 traverse_ptr tp2; in scrub_chunk() local 3047 …else if (tp2.item->size >= Vcb->csum_size && tp2.item->key.offset + (((uint64_t)tp2.item->size << … in scrub_chunk() 3049 …uint64_t ce = min(tp.item->key.obj_id + size, tp2.item->key.offset + (((uint64_t)tp2.item->size <<… in scrub_chunk() 3052 … tp2.item->data + (((cs - tp2.item->key.offset) * Vcb->csum_size) >> Vcb->sector_shift), in scrub_chunk() [all …]
|
H A D | treefuncs.c | 378 NTSTATUS skip_to_difference(device_extension* Vcb, traverse_ptr* tp, traverse_ptr* tp2, bool* ended… in skip_to_difference() argument 384 t2 = tp2->tree; in skip_to_difference() 420 Status = find_item(Vcb, t2->root, tp2, &tp4.item->key, false, NULL); in skip_to_difference() 437 Status = find_item(Vcb, t2->root, tp2, &tp4.item->key, false, NULL); in skip_to_difference() 2020 traverse_ptr tp2; variable 2022 if (find_next_item(Vcb, &tp, &tp2, false, Irp)) { 2023 … if (tp2.item->key.obj_id == bi->key.obj_id && tp2.item->key.obj_type == bi->key.obj_type) { 2024 tp = tp2;
|
H A D | fsctl.c | 4627 traverse_ptr tp2; in find_subvol() local 4633 Status = find_item(Vcb, Vcb->root_root, &tp2, &searchkey2, false, Irp); in find_subvol() 4639 … if (tp2.item->key.obj_id == searchkey2.obj_id && tp2.item->key.obj_type == searchkey2.obj_type && in find_subvol() 4640 tp2.item->size >= offsetof(ROOT_ITEM, otransid)) { in find_subvol() 4641 ROOT_ITEM* ri = (ROOT_ITEM*)tp2.item->data; in find_subvol() 4672 traverse_ptr tp2; in find_subvol() local 4678 Status = find_item(Vcb, Vcb->root_root, &tp2, &searchkey2, false, Irp); in find_subvol() 4684 … if (tp2.item->key.obj_id == searchkey2.obj_id && tp2.item->key.obj_type == searchkey2.obj_type && in find_subvol() 4685 tp2.item->size >= offsetof(ROOT_ITEM, otransid)) { in find_subvol() 4686 ROOT_ITEM* ri = (ROOT_ITEM*)tp2.item->data; in find_subvol()
|
H A D | btrfs_drv.h | 1317 NTSTATUS skip_to_difference(device_extension* Vcb, traverse_ptr* tp, traverse_ptr* tp2, bool* ended…
|
/reactos/base/applications/network/ftp/ |
H A D | cmds.c | 387 tp2 = tmpbuf; in mput() 390 *tp2 = 'a' + *tp2 - 'A'; in mput() 393 tp2++; in mput() 540 tp2 = tmpbuf; in getit() 541 while ((*tp2 = *tp)) { in getit() 542 if (isupper(*tp2)) { in getit() 543 *tp2 = 'a' + *tp2 - 'A'; in getit() 546 tp2++; in getit() 681 tp2 = tmpbuf; in mget() 684 *tp2 = 'a' + *tp2 - 'A'; in mget() [all …]
|