/linux-4.1.27/include/drm/ |
D | drm_atomic.h | 78 #define for_each_connector_in_state(state, connector, connector_state, __i) \ argument 79 for ((__i) = 0; \ 80 (__i) < (state)->num_connector && \ 81 ((connector) = (state)->connectors[__i], \ 82 (connector_state) = (state)->connector_states[__i], 1); \ 83 (__i)++) \ 86 #define for_each_crtc_in_state(state, crtc, crtc_state, __i) \ argument 87 for ((__i) = 0; \ 88 (__i) < (state)->dev->mode_config.num_crtc && \ 89 ((crtc) = (state)->crtcs[__i], \ [all …]
|
/linux-4.1.27/include/uapi/linux/netfilter_bridge/ |
D | ebtables.h | 199 unsigned int __i; \ 203 for (__i = sizeof(struct ebt_entry); \ 204 __i < (e)->watchers_offset; \ 205 __i += __match->match_size + \ 207 __match = (void *)(e) + __i; \ 214 if (__i != (e)->watchers_offset) \ 222 unsigned int __i; \ 226 for (__i = e->watchers_offset; \ 227 __i < (e)->target_offset; \ 228 __i += __watcher->watcher_size + \ [all …]
|
/linux-4.1.27/lib/mpi/ |
D | longlong.h | 234 struct {USItype __l, __h; } __i; \ 240 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 243 struct {SItype __l, __h; } __i; \ 249 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 323 struct {USItype __h, __l; } __i; \ 329 (wh) = __xx.__i.__h; \ 330 (wl) = __xx.__i.__l; \ 355 struct {USItype __h, __l; } __i; \ 359 : "=r" (__xx.__i.__h), \ 360 "=r" (__xx.__i.__l) \ [all …]
|
/linux-4.1.27/include/uapi/linux/netfilter/ |
D | x_tables.h | 130 unsigned int __i; \ 134 for (__i = sizeof(type); \ 135 __i < (e)->target_offset; \ 136 __i += __m->u.match_size) { \ 137 __m = (void *)e + __i; \ 149 unsigned int __i, __n; \ 153 for (__i = 0, __n = 0; __i < (size); \ 154 __i += __entry->next_offset, __n++) { \ 155 __entry = (void *)(entries) + __i; \
|
/linux-4.1.27/security/apparmor/include/ |
D | match.h | 106 typeof(LEN) __i; \ 109 for (__i = 0; __i < LEN; __i++) { \ 110 __t[__i] = NTOHX(__b[__i]); \
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
D | rtw_debug.h | 178 int __i; \ 182 for (__i = 0; __i < (int)_HexDataLen; __i++) { \ 183 printk("%02X%s", ptr[__i], \ 184 (((__i + 1) % 4) == 0) ? " " : " "); \ 185 if (((__i + 1) % 16) == 0) \
|
/linux-4.1.27/drivers/staging/rtl8188eu/include/ |
D | rtw_debug.h | 105 int __i; \ 109 for (__i = 0; __i < (int)_hexdatalen; __i++) { \ 110 pr_info("%02X%s", ptr[__i], \ 111 (((__i + 1) % 4) == 0) ? \ 113 if (((__i + 1) % 16) == 0) \
|
/linux-4.1.27/tools/virtio/linux/ |
D | scatterlist.h | 78 #define for_each_sg(sglist, sg, nr, __i) \ argument 79 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
|
/linux-4.1.27/include/linux/ |
D | edac.h | 501 int __i; \ 503 __i = layer0; \ 505 __i = (layer1) + ((layers[1]).size * (layer0)); \ 507 __i = (layer2) + ((layers[2]).size * ((layer1) + \ 510 __i = -EINVAL; \ 511 __i; \
|
D | scatterlist.h | 123 #define for_each_sg(sglist, sg, nr, __i) \ argument 124 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
|
D | vmstat.h | 197 #define add_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, __d) argument 198 #define sub_zone_page_state(__z, __i, __d) mod_zone_page_state(__z, __i, -(__d)) argument
|
D | blk-mq.h | 259 unsigned int __ret = 0, __i; \ 261 queue_for_each_ctx((q), __x, __i) \
|
/linux-4.1.27/fs/logfs/ |
D | logfs.h | 463 #define journal_for_each(__i) for (__i = 0; __i < LOGFS_JOURNAL_SEGS; __i++) argument 464 #define for_each_area(__i) for (__i = 0; __i < LOGFS_NO_AREAS; __i++) argument 465 #define for_each_area_down(__i) for (__i = LOGFS_NO_AREAS - 1; __i >= 0; __i--) argument
|
/linux-4.1.27/arch/mips/include/asm/ |
D | div64.h | 24 unsigned long __cf, __tmp, __tmp2, __i; \ 59 "=&r" (__i), "=&r" (__tmp2) \
|
/linux-4.1.27/drivers/net/wireless/ath/carl9170/ |
D | debug.c | 463 unsigned int __i, __err = -ENODEV; \ 465 for (__i = 0; __i < ARRAY_SIZE(name##_regs); __i++) { \ 466 __tmp[__i] = name##_regs[__i].reg; \ 467 ar->debug.stats.name##_counter[__i] = 0; \ 476 unsigned int __i; \ 478 for (__i = 0; __i < ARRAY_SIZE(name##_regs); __i++) { \ 479 ar->debug.stats.name##_sum[__i] += \ 480 ar->debug.stats.name##_counter[__i]; \
|
/linux-4.1.27/include/scsi/ |
D | scsi_cmnd.h | 196 #define scsi_for_each_sg(cmd, sg, nseg, __i) \ argument 197 for_each_sg(scsi_sglist(cmd), sg, nseg, __i) 323 #define scsi_for_each_prot_sg(cmd, sg, nseg, __i) \ argument 324 for_each_sg(scsi_prot_sglist(cmd), sg, nseg, __i)
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
D | nv10.c | 417 int __i; \ 419 for (__i = 0; __i < ARRAY_SIZE(state); __i++) \ 420 state[__i] = nv_rd32(priv, NV10_PGRAPH_PIPE_DATA); \ 425 int __i; \ 427 for (__i = 0; __i < ARRAY_SIZE(state); __i++) \ 428 nv_wr32(priv, NV10_PGRAPH_PIPE_DATA, state[__i]); \
|
/linux-4.1.27/arch/x86/include/asm/ |
D | local.h | 107 long __i = i; in local_add_return() local 111 return i + __i; in local_add_return()
|
/linux-4.1.27/arch/alpha/kernel/ |
D | smc37c669.c | 72 #define SMC37c669_DEVICE_IRQ( __i ) \ argument 73 ((SMC37c669_DEVICE_IRQ_MASK) | (__i)) 74 #define SMC37c669_IS_DEVICE_IRQ(__i) \ argument 75 (((__i) & (SMC37c669_DEVICE_IRQ_MASK)) == (SMC37c669_DEVICE_IRQ_MASK)) 76 #define SMC37c669_RAW_DEVICE_IRQ(__i) \ argument 77 ((__i) & ~(SMC37c669_DEVICE_IRQ_MASK))
|
/linux-4.1.27/drivers/input/mouse/ |
D | appletouch.c | 235 int __i; \ 237 for (__i = 0; __i < ATP_XSENSORS + ATP_YSENSORS; __i++) \ 238 printk(" %02x", tab[__i]); \
|
/linux-4.1.27/arch/x86/include/asm/uv/ |
D | uv_bau.h | 762 short __i = i; in atom_asr() local 766 return i + __i; in atom_asr()
|
/linux-4.1.27/arch/m68k/include/asm/ |
D | motorola_pgtable.h | 142 short __i = 16; \ 143 while (--__i >= 0) \
|
/linux-4.1.27/drivers/iommu/ |
D | omap-iommu.c | 41 #define for_each_iotlb_cr(obj, n, __i, cr) \ argument 42 for (__i = 0; \ 43 (__i < (n)) && (cr = __iotlb_read_cr((obj), __i), true); \ 44 __i++)
|
/linux-4.1.27/drivers/staging/rtl8723au/hal/ |
D | rtl8723a_bt-coexist.c | 32 u32 __i; \ 36 for (__i = 0; __i < 6; __i++) \ 37 printk("%02X%s", ptr[__i], (__i == 5)?"":"-"); \ 42 u32 __i; \ 45 for (__i = 0; __i < (u32)_HexDataLen; __i++) { \ 46 printk("%02X%s", ptr[__i], (((__i + 1) % 4) == 0)?" ":" ");\ 47 if (((__i + 1) % 16) == 0) \ 58 u32 __i; \ 63 for (__i = 0; __i < length; __i++) { \ 64 if (!PRINTABLE(buffer[__i])) \ [all …]
|