Home
last modified time | relevance | path

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

/Linux-v5.15/drivers/usb/dwc3/
Dcore.h1467 #define DWC3_IP_IS(_ip) \ argument
1468 (dwc->ip == _ip##_IP)
1470 #define DWC3_VER_IS(_ip, _ver) \ argument
1471 (DWC3_IP_IS(_ip) && dwc->revision == _ip##_REVISION_##_ver)
1473 #define DWC3_VER_IS_PRIOR(_ip, _ver) \ argument
1474 (DWC3_IP_IS(_ip) && dwc->revision < _ip##_REVISION_##_ver)
1476 #define DWC3_VER_IS_WITHIN(_ip, _from, _to) \ argument
1477 (DWC3_IP_IS(_ip) && \
1478 dwc->revision >= _ip##_REVISION_##_from && \
1479 (!(_ip##_REVISION_##_to) || \
[all …]
/Linux-v5.15/arch/x86/include/asm/
Dftrace.h58 #define ftrace_instruction_pointer_set(fregs, _ip) \ argument
59 do { (fregs)->regs.ip = (_ip); } while (0)
/Linux-v5.15/net/netfilter/
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()