Lines Matching defs:temp
1418 int i; /* temp state */
1426 xfs_filblks_t temp=0; /* value for da_new calculations */
1654 temp = PREV.br_blockcount - new->br_blockcount;
1655 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1660 PREV.br_blockcount = temp;
1721 temp = PREV.br_blockcount - new->br_blockcount;
1722 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1727 PREV.br_blockcount = temp;
1760 temp = PREV.br_blockcount - new->br_blockcount;
1761 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1764 PREV.br_blockcount = temp;
1808 temp = PREV.br_blockcount - new->br_blockcount;
1809 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1814 PREV.br_blockcount = temp;
1968 int i; /* temp state */
2504 xfs_filblks_t temp; /* temp for indirect calculations */
2555 temp = left.br_blockcount + new->br_blockcount +
2561 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2564 left.br_blockcount = temp;
2577 temp = left.br_blockcount + new->br_blockcount;
2581 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2583 left.br_blockcount = temp;
2596 temp = new->br_blockcount + right.br_blockcount;
2599 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2603 right.br_blockcount = temp;
2646 int i; /* temp state */
2889 xfs_fileoff_t align_off; /* temp for offset */
2890 xfs_extlen_t align_alen; /* temp for length */
2891 xfs_extlen_t temp; /* temp for calculations */
2917 div_u64_rem(orig_off, extsz, &temp);
2918 if (temp) {
2919 align_alen += temp;
2920 align_off -= temp;
2924 temp = (align_alen % extsz);
2925 if (temp)
2926 align_alen += extsz - temp;
2992 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
2999 align_alen - temp < orig_alen)
3004 if (align_off + temp <= orig_off) {
3005 align_alen -= temp;
3006 align_off += temp;
3011 else if (align_off + align_alen - temp >= orig_end)
3012 align_alen -= temp;
5020 int i; /* temp state */