Home
last modified time | relevance | path

Searched refs:_ip (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/usb/dwc3/
H A Dcore.h1586 #define DWC3_IP_IS(_ip) \ argument
1587 (dwc->ip == _ip##_IP)
1589 #define DWC3_VER_IS(_ip, _ver) \ argument
1590 (DWC3_IP_IS(_ip) && dwc->revision == _ip##_REVISION_##_ver)
1592 #define DWC3_VER_IS_PRIOR(_ip, _ver) \ argument
1593 (DWC3_IP_IS(_ip) && dwc->revision < _ip##_REVISION_##_ver)
1595 #define DWC3_VER_IS_WITHIN(_ip, _from, _to) \ argument
1596 (DWC3_IP_IS(_ip) && \
1597 dwc->revision >= _ip##_REVISION_##_from && \
1598 (!(_ip##_REVISION_##_to) || \
[all …]
/linux/arch/x86/include/asm/
H A Dftrace.h71 #define ftrace_regs_set_instruction_pointer(fregs, _ip) \ argument
72 do { arch_ftrace_regs(fregs)->regs.ip = (_ip); } while (0)
/linux/net/netfilter/
H A Dxt_HMARK.c253 struct iphdr *ip, _ip; in hmark_pkt_set_htuple_ipv4() local
260 ip = skb_header_pointer(skb, nhoff, sizeof(_ip), &_ip); in hmark_pkt_set_htuple_ipv4()