Home
last modified time | relevance | path

Searched refs:_t (Results 1 – 9 of 9) sorted by relevance

/linux-2.4.37.9/arch/ppc/math-emu/
Dop-common.h653 _FP_W_TYPE _t = (x); \
655 if (_t > 0xffff) r -= 16; \
656 if (_t > 0xffff) _t >>= 16; \
657 if (_t > 0xff) r -= 8; \
658 if (_t > 0xff) _t >>= 8; \
659 if (_t & 0xf0) r -= 4; \
660 if (_t & 0xf0) _t >>= 4; \
661 if (_t & 0xc) r -= 2; \
662 if (_t & 0xc) _t >>= 2; \
663 if (_t & 0x2) r -= 1; \
[all …]
/linux-2.4.37.9/include/math-emu/
Dop-common.h816 _FP_W_TYPE _t = (x); \
818 if (_t > 0xffff) r -= 16; \
819 if (_t > 0xffff) _t >>= 16; \
820 if (_t > 0xff) r -= 8; \
821 if (_t > 0xff) _t >>= 8; \
822 if (_t & 0xf0) r -= 4; \
823 if (_t & 0xf0) _t >>= 4; \
824 if (_t & 0xc) r -= 2; \
825 if (_t & 0xc) _t >>= 2; \
826 if (_t & 0x2) r -= 1; \
[all …]
Dop-4.h343 UWtype _t; \
345 umul_ppmm(p2,_t,m,n1); \
346 __FP_FRAC_ADDI_2(p2,p1,_t); \
347 umul_ppmm(p3,_t,m,n2); \
348 __FP_FRAC_ADDI_2(p3,p2,_t); \
600 UWtype _t; \
601 _t = ((x0 += i) < i); \
602 x1 += _t; _t = (x1 < _t); \
603 x2 += _t; _t = (x2 < _t); \
604 x3 += _t; \
Dop-2.h162 UWtype _t = xl; \
163 xh -= yh + ((xl -= yl) > _t); \
/linux-2.4.37.9/include/asm-sparc/
Dstring.h30 void *_t = (_to); \
31 __memmove(_t, (_from), (_n)); \
32 _t; \
/linux-2.4.37.9/include/asm-ia64/sn/
Dmodule.h69 #define RBT_TO_MODULE(_r, _b, _t) ((_r) << MODULE_RACK_SHFT | \ argument
71 (_t) << MODULE_BTYPE_SHFT)
/linux-2.4.37.9/drivers/atm/
Diphase.h1466 u32 _t; \
1469 _t = readl(iadev->reg+IPHASE5575_EEPROM_ACCESS); \
1470 value = (_t & NVDO) ? 1 : 0; \
/linux-2.4.37.9/fs/udf/
Dballoc.c47 #define xuint(x) uint ## x ## _t
/linux-2.4.37.9/fs/hfs/
DChangeLog428 Move typedefs of hfs_{byte,word,lword}_t from hfs.h to hfs_sysdep.h.