Home
last modified time | relevance | path

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

/reactos/drivers/network/tcpip/lwip/src/netif/ppp/
H A Dvj.c167 struct tcp_hdr *oth; in vj_compress_tcp() local
274 oth = (struct tcp_hdr *)&((struct vj_u32_t*)&cs->cs_ip)[ilen]; in vj_compress_tcp()
291 || TCPH_HDRLEN(th) != TCPH_HDRLEN(oth) in vj_compress_tcp()
293 || (TCPH_HDRLEN(th) > 5 && BCMP(th + 1, oth + 1, (TCPH_HDRLEN(th) - 5) << 2))) { in vj_compress_tcp()
307 } else if (th->urgp != oth->urgp) { in vj_compress_tcp()
315 if ((deltaS = (u16_t)(lwip_ntohs(th->wnd) - lwip_ntohs(oth->wnd))) != 0) { in vj_compress_tcp()
320 if ((deltaL = lwip_ntohl(th->ackno) - lwip_ntohl(oth->ackno)) != 0) { in vj_compress_tcp()
329 if ((deltaL = lwip_ntohl(th->seqno) - lwip_ntohl(oth->seqno)) != 0) { in vj_compress_tcp()
/reactos/dll/win32/shell32/
H A DCShellItem.cpp191 HRESULT WINAPI CShellItem::Compare(IShellItem *oth, SICHINTF hint, int *piOrder) in Compare() argument
198 TRACE("(%p,%p,%x,%p)\n", this, oth, hint, piOrder); in Compare()
200 if (piOrder == NULL || oth == NULL) in Compare()
203 hr = oth->QueryInterface(IID_PPV_ARG(IPersistIDList, &pIDList)); in Compare()
H A DCShellItem.h46 STDMETHOD(Compare)(IShellItem *oth, SICHINTF hint, int *piOrder) override;