• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/

Lines Matching refs:word

924 	xfs_rtword_t	*b;		/* current word in buffer */
925 int bit; /* bit number in the word */
928 xfs_rtword_t *bufp; /* starting word in buffer */
931 xfs_rtblock_t lastbit; /* last useful bit in word */
934 int word; /* word number in the buffer */
949 * Compute the starting word's address, and starting bit.
951 word = XFS_BITTOWORD(mp, start);
952 b = &bufp[word];
959 * If not starting on a word boundary, deal with the first
960 * (partial) word.
986 * Go on to next block if that's where the next word is
987 * and we need the next word.
989 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
999 word = 0;
1002 * Go on to the next word in the buffer.
1008 * Starting on a word boundary, no partial word.
1032 * Go on to next block if that's where the next word is
1033 * and we need the next word.
1035 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
1045 word = 0;
1048 * Go on to the next word in the buffer.
1054 * If not ending on a word boundary, deal with the last
1055 * (partial) word.
1140 xfs_rtword_t *b; /* current word in buffer */
1141 int bit; /* bit number in the word */
1144 xfs_rtword_t *bufp; /* starting word in buffer */
1146 xfs_rtblock_t firstbit; /* first useful bit in the word */
1152 int word; /* word number in the buffer */
1164 * Get the first word's index & point to it.
1166 word = XFS_BITTOWORD(mp, start);
1167 b = &bufp[word];
1176 * If the starting position is not word-aligned, deal with the
1177 * partial word.
1182 * and mask for all the relevant bits in this word.
1202 * Go on to previous block if that's where the previous word is
1203 * and we need the previous word.
1205 if (--word == -1 && i < len) {
1215 word = XFS_BLOCKWMASK(mp);
1216 b = &bufp[word];
1219 * Go on to the previous word in the buffer.
1225 * Starting on a word boundary, no partial word.
1248 * Go on to previous block if that's where the previous word is
1249 * and we need the previous word.
1251 if (--word == -1 && i < len) {
1261 word = XFS_BLOCKWMASK(mp);
1262 b = &bufp[word];
1265 * Go on to the previous word in the buffer.
1271 * If not ending on a word boundary, deal with the last
1272 * (partial) word.
1277 * and mask for all the relevant bits in this word.
1315 xfs_rtword_t *b; /* current word in buffer */
1316 int bit; /* bit number in the word */
1319 xfs_rtword_t *bufp; /* starting word in buffer */
1322 xfs_rtblock_t lastbit; /* last useful bit in the word */
1327 int word; /* word number in the buffer */
1339 * Get the first word's index & point to it.
1341 word = XFS_BITTOWORD(mp, start);
1342 b = &bufp[word];
1351 * If the starting position is not word-aligned, deal with the
1352 * partial word.
1357 * and mask for all the relevant bits in this word.
1376 * Go on to next block if that's where the next word is
1377 * and we need the next word.
1379 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
1389 word = 0;
1392 * Go on to the previous word in the buffer.
1398 * Starting on a word boundary, no partial word.
1421 * Go on to next block if that's where the next word is
1422 * and we need the next word.
1424 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
1434 word = 0;
1437 * Go on to the next word in the buffer.
1443 * If not ending on a word boundary, deal with the last
1444 * (partial) word.
1448 * Calculate mask for all the relevant bits in this word.
1630 xfs_rtword_t *b; /* current word in buffer */
1631 int bit; /* bit number in the word */
1634 xfs_rtword_t *bufp; /* starting word in buffer */
1636 xfs_rtword_t *first; /* first used word in the buffer */
1638 int lastbit; /* last useful bit in word */
1640 int word; /* word number in the buffer */
1655 * Compute the starting word's address, and starting bit.
1657 word = XFS_BITTOWORD(mp, start);
1658 first = b = &bufp[word];
1665 * If not starting on a word boundary, deal with the first
1666 * (partial) word.
1683 * Go on to the next block if that's where the next word is
1684 * and we need the next word.
1686 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
1699 word = 0;
1702 * Go on to the next word in the buffer
1708 * Starting on a word boundary, no partial word.
1718 * Set the word value correctly.
1723 * Go on to the next block if that's where the next word is
1724 * and we need the next word.
1726 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
1739 word = 0;
1742 * Go on to the next word in the buffer
1748 * If not ending on a word boundary, deal with the last
1749 * (partial) word.