/linux-4.1.27/arch/sparc/include/asm/ |
H A D | string_32.h | 27 void *_t = (_to); \ 28 __memmove(_t, (_from), (_n)); \ 29 _t; \
|
/linux-4.1.27/arch/s390/boot/ |
H A D | Makefile | 7 tr -c '[0-9A-Za-z]' '_'`_t
|
/linux-4.1.27/include/math-emu/ |
H A D | op-common.h | 839 _FP_W_TYPE _t = (x); \ 841 if (_t > 0xffff) r -= 16; \ 842 if (_t > 0xffff) _t >>= 16; \ 843 if (_t > 0xff) r -= 8; \ 844 if (_t > 0xff) _t >>= 8; \ 845 if (_t & 0xf0) r -= 4; \ 846 if (_t & 0xf0) _t >>= 4; \ 847 if (_t & 0xc) r -= 2; \ 848 if (_t & 0xc) _t >>= 2; \ 849 if (_t & 0x2) r -= 1; \ 854 _FP_W_TYPE _t = (x); \ 856 if (_t > 0xffffffff) r -= 32; \ 857 if (_t > 0xffffffff) _t >>= 32; \ 858 if (_t > 0xffff) r -= 16; \ 859 if (_t > 0xffff) _t >>= 16; \ 860 if (_t > 0xff) r -= 8; \ 861 if (_t > 0xff) _t >>= 8; \ 862 if (_t & 0xf0) r -= 4; \ 863 if (_t & 0xf0) _t >>= 4; \ 864 if (_t & 0xc) r -= 2; \ 865 if (_t & 0xc) _t >>= 2; \ 866 if (_t & 0x2) r -= 1; \
|
H A D | op-4.h | 343 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; \
|
H A D | op-2.h | 162 UWtype _t = xl; \ 163 xh -= yh + ((xl -= yl) > _t); \
|
/linux-4.1.27/arch/parisc/lib/ |
H A D | memcpy.c | 100 #define def_load_ai_insn(_insn,_sz,_tt,_s,_a,_t,_e) \ 104 : _tt(_t), "+r"(_a) \ 108 #define def_store_ai_insn(_insn,_sz,_tt,_s,_a,_t,_e) \ 113 : _tt(_t) \ 116 #define ldbma(_s, _a, _t, _e) def_load_ai_insn(ldbs,1,"=r",_s,_a,_t,_e) 117 #define stbma(_s, _t, _a, _e) def_store_ai_insn(stbs,1,"r",_s,_a,_t,_e) 118 #define ldwma(_s, _a, _t, _e) def_load_ai_insn(ldw,4,"=r",_s,_a,_t,_e) 119 #define stwma(_s, _t, _a, _e) def_store_ai_insn(stw,4,"r",_s,_a,_t,_e) 120 #define flddma(_s, _a, _t, _e) def_load_ai_insn(fldd,8,"=f",_s,_a,_t,_e) 121 #define fstdma(_s, _t, _a, _e) def_store_ai_insn(fstd,8,"f",_s,_a,_t,_e) 123 #define def_load_insn(_insn,_tt,_s,_o,_a,_t,_e) \ 127 : _tt(_t) \ 131 #define def_store_insn(_insn,_tt,_s,_t,_o,_a,_e) \ 136 : _tt(_t), "r"(_a) \ 139 #define ldw(_s,_o,_a,_t,_e) def_load_insn(ldw,"=r",_s,_o,_a,_t,_e) 140 #define stw(_s,_t,_o,_a,_e) def_store_insn(stw,"r",_s,_t,_o,_a,_e)
|
H A D | checksum.c | 25 #define addc(_t,_r) \ 29 : "=r"(_t) \ 30 : "r"(_r), "0"(_t));
|
/linux-4.1.27/arch/arm64/include/asm/ |
H A D | efi.h | 15 efi_##f##_t *__f; \ 29 efi_##f##_t *__f; \
|
/linux-4.1.27/arch/blackfin/include/asm/ |
H A D | ipipe.h | 90 #define ipipe_tsc2ns(_t) (((unsigned long)(_t)) * __ipipe_freq_scale) 91 #define ipipe_tsc2us(_t) (ipipe_tsc2ns(_t) / 1000 + 1)
|
/linux-4.1.27/drivers/scsi/fnic/ |
H A D | fnic_trace.h | 87 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \ 99 trace_buf->tag = _t; \
|
/linux-4.1.27/kernel/locking/ |
H A D | spinlock.c | 61 void __lockfunc __raw_##op##_lock(locktype##_t *lock) \ 77 unsigned long __lockfunc __raw_##op##_lock_irqsave(locktype##_t *lock) \ 98 void __lockfunc __raw_##op##_lock_irq(locktype##_t *lock) \ 103 void __lockfunc __raw_##op##_lock_bh(locktype##_t *lock) \
|
/linux-4.1.27/drivers/regulator/ |
H A D | tps65217-regulator.c | 31 _t, _lr, _nlr) \ 45 .volt_table = _t, \
|
/linux-4.1.27/arch/x86/include/asm/ |
H A D | efi.h | 42 __s = ((efi_##f##_t __attribute__((regparm(0)))*) \ 52 ((efi_##f##_t __attribute__((regparm(0)))*) \
|
/linux-4.1.27/crypto/asymmetric_keys/ |
H A D | x509_parser.h | 52 extern int x509_decode_time(time64_t *_t, size_t hdrlen,
|
H A D | x509_cert_parser.c | 479 * @_t: The time to fill in 495 int x509_decode_time(time64_t *_t, size_t hdrlen, x509_decode_time() argument 556 *_t = mktime64(year, mon, day, hour, min, sec); x509_decode_time()
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
H A D | cvmx.h | 211 static inline void cvmx_write64_##TYPE(uint64_t addr, TYPE##_t val) \ 213 *CASTPTR(volatile TYPE##_t, addr) = val; \ 225 static inline TYPE##_t cvmx_read64_##TYPE(uint64_t addr) \ 227 return *CASTPTR(volatile TYPE##_t, addr); \
|
/linux-4.1.27/include/linux/ |
H A D | btree-type.h | 7 #define VISITOR_FN_T _BTREE_TP(visitor, BTREE_TYPE_SUFFIX, _t)
|
/linux-4.1.27/drivers/scsi/libsas/ |
H A D | sas_internal.h | 40 #define ASSIGN_SAS_TASK(_sc, _t) do { (_sc)->host_scribble = (void *) _t; } while (0)
|
/linux-4.1.27/drivers/md/bcache/ |
H A D | util.h | 241 typeof(*((dest)->data)) _t; \ 243 fifo_pop(src, _t)) \ 244 fifo_push(dest, _t); \
|
/linux-4.1.27/arch/mips/ar7/ |
H A D | prom.c | 116 | 00 |CTRL|CHECKSUM | 02 | _b | _o | _o | _t | _l | _o | _a | _d | _e | _r | _V
|
/linux-4.1.27/Documentation/DocBook/media/ |
H A D | Makefile | 78 $(shell perl -ne 'print "$$1 " if /^}\s+([a-z0-9_]+_t)/' $(srctree)/include/uapi/linux/dvb/frontend.h) 184 -e "s,\(}\s\+\)\([a-z0-9_]\+_t\+\),\1\<link linkend=\"\2\">\2\<\/link\>,g" \
|
/linux-4.1.27/drivers/media/usb/airspy/ |
H A D | airspy.c | 158 #define airspy_dbg_usb_control_msg(_dev, _r, _t, _v, _i, _b, _l) { \ 160 if (_t & USB_DIR_IN) \ 165 _t, _r, _v & 0xff, _v >> 8, _i & 0xff, _i >> 8, \
|
/linux-4.1.27/net/l2tp/ |
H A D | l2tp_core.c | 144 #define l2tp_tunnel_inc_refcount(_t) \ 147 __func__, __LINE__, (_t)->name, \ 148 atomic_read(&_t->ref_count)); \ 149 l2tp_tunnel_inc_refcount_1(_t); \ 151 #define l2tp_tunnel_dec_refcount(_t) \ 154 __func__, __LINE__, (_t)->name, \ 155 atomic_read(&_t->ref_count)); \ 156 l2tp_tunnel_dec_refcount_1(_t); \
|
/linux-4.1.27/drivers/media/mmc/siano/ |
H A D | smssdio.c | 26 * - only typedefs should be name *_t
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
H A D | addi_apci_3120.c | 67 #define APCI3120_TIMER_MODE(_t, _m) ((_m) << ((_t) * 2)) 72 #define APCI3120_TIMER_MODE_MASK(_t) (3 << ((_t) * 2))
|
/linux-4.1.27/arch/x86/vdso/ |
H A D | vdso2c.c | 154 #define INT_BITS BITSFUNC2(int, ELF_BITS, _t)
|
/linux-4.1.27/drivers/media/usb/hackrf/ |
H A D | hackrf.c | 145 #define hackrf_dbg_usb_control_msg(_dev, _r, _t, _v, _i, _b, _l) { \ 147 if (_t & USB_DIR_IN) \ 152 _t, _r, _v & 0xff, _v >> 8, _i & 0xff, \
|
/linux-4.1.27/drivers/media/usb/msi2500/ |
H A D | msi2500.c | 655 #define msi2500_dbg_usb_control_msg(_dev, _r, _t, _v, _i, _b, _l) { \ 657 if (_t & USB_DIR_IN) \ 662 _t, _r, _v & 0xff, _v >> 8, _i & 0xff, _i >> 8, \
|
/linux-4.1.27/drivers/atm/ |
H A D | iphase.h | 1445 u32 _t; \ 1448 _t = readl(iadev->reg+IPHASE5575_EEPROM_ACCESS); \ 1449 value = (_t & NVDO) ? 1 : 0; \
|
/linux-4.1.27/include/scsi/ |
H A D | sg.h | 210 /* Alternate style type names, "..._t" variants preferred */
|
/linux-4.1.27/arch/x86/boot/compressed/ |
H A D | eboot.c | 31 efi_system_table_##bits##_t *table; \ 32 efi_boot_services_##bits##_t *bt; \
|
/linux-4.1.27/drivers/usb/atm/ |
H A D | cxacru.c | 238 #define CXACRU_ATTR_CREATE(_v, _t, _name) CXACRU_DEVICE_CREATE_FILE(_name) 243 #define CXACRU_ATTR_REMOVE(_v, _t, _name) CXACRU_DEVICE_REMOVE_FILE(_name)
|
/linux-4.1.27/scripts/ |
H A D | checkpatch.pl | 416 qr{${Ident}_t}, 5058 "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . "$here\n$stat\n");
|