Lines Matching refs:temp

389 	long		temp;
859 temp = 1;
861 temp = expr();
869 addr = getdirslot((long)(dirslot + temp));
874 cur_inum += temp;
877 cur_inum -= temp;
883 cur_cgrp += temp;
885 cur_cgrp -= temp;
890 addr = getshadowslot((long)(cur_shad + temp));
897 addr += temp * objsz;
898 cur_bytes += temp * objsz;
910 temp = 1;
912 temp = expr();
920 addr = getdirslot((long)(dirslot - temp));
925 cur_inum -= temp;
928 cur_inum += temp;
934 cur_cgrp -= temp;
936 cur_cgrp += temp;
941 addr = getshadowslot((long)(cur_shad - temp));
947 addr -= temp * objsz;
948 cur_bytes -= temp * objsz;
957 temp = expr();
962 addr *= temp;
968 temp = expr();
971 if (!temp) {
978 addr /= temp;
1028 temp = expr();
1031 put(value+temp, objsz);
1034 temp = expr();
1037 put(value-temp, objsz);
1259 temp = cur_inum;
1264 restore_inode((ino_t)temp);
1280 restore_inode((ino_t)temp);
1494 temp = 1;
1496 temp *= NINDIR(fs) * BLKSIZE;
1497 cur_bytes += temp;
1536 if (log_lodb((u_offset_t)addr, &temp)) {
1537 addr = temp;
1545 temp = cur_inum;
1574 restore_inode((ino_t)temp);
1596 restore_inode((ino_t)temp);
2004 long numb = 0, temp;
2027 temp = term();
2028 if (!temp) {
2033 numb /= temp;
2147 long temp;
2151 temp = cur_inum;
2157 restore_inode((ino_t)temp);
2182 restore_inode((ino_t)temp);
2196 restore_inode((ino_t)temp);
2204 restore_inode((ino_t)temp);
2213 restore_inode((ino_t)temp);
2224 restore_inode((ino_t)temp);
2822 long temp, tcount;
2830 temp = expr();
2846 temp &= 0177777L;
2849 temp &= 0377;
2858 *(long *)cptr = temp;
2862 *(short *)cptr = temp;
2865 *cptr = temp;
2871 put((u_offset_t)temp, objsz);
2891 u_offset_t temp = addr;
2895 temp &= ~(SHORT - 1);
2897 temp &= ~(LONG - 1);
2898 if ((bptr = getblk(temp)) == 0)
2900 bptr += blkoff(fs, temp);
2990 short bod = 0, mode, temp;
3056 temp = slot;
3070 if (!temp--)
3074 dirslot = slot - temp - 1;
3450 long maxchars, s_err, nbytes, temp;
3490 temp = (long)*cptr;
3492 olditem += temp & 0xff;
3550 temp = 1;
3552 temp <<= 1;
3553 olditem += item & (temp - 1);
3561 temp = 1;
3563 temp <<= 1;
3564 olditem += item & (temp - 1);
3617 long tinode, tcount, temp;
3929 temp = (addr - (cgimin(fs, i) << FRGSHIFT)) >> FRGSHIFT;
3930 temp = (i * fs->fs_ipg) + fragstoblks(fs, temp) *
3939 for (i = 0; tcount--; ip++, temp++) {
3977 print(temp, 12, -8, 0);
4082 print(temp, 12, -8, 0);
4237 getshadowdata(&temp, LONG);
4238 p = (char *)&temp;
4335 long temp, tcount = count, tcur_bytes = cur_bytes;
4349 temp = cur_block - lblkno(fs, cur_bytes);
4350 cur_block -= temp;
4352 cur_block += temp;
4355 temp = tcur_bytes - cur_bytes;
4356 addr += temp;
4357 cur_bytes += temp;
4364 temp = lblkno(fs, cur_bytes) - cur_block;
4365 cur_block += temp;
4367 cur_block -= temp;
4370 temp = tcur_bytes - cur_bytes;
4371 addr += temp;
4372 cur_bytes += temp;
4413 int j, k, temp = BYTESPERLINE / objsz;
4421 if (i % temp == 0) {
4422 if (*tcount >= temp - 1) {
4436 if (j > (i + temp - 1)) {
4437 j = (j - i) / temp;
4440 sptr += temp;
4442 lptr += temp;
4443 *tcount -= temp;
4444 i += temp;