Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:bs

349  * Find the hash node that corresponds to the bytestring 'bs'
354 lookup_bytestring(register const u_char *bs, const unsigned int nlen)
360 k = (bs[0] << 8) | bs[1];
361 j = (bs[2] << 8) | bs[3];
362 i = (bs[4] << 8) | bs[5];
364 k = (bs[0] << 8) | bs[1];
365 j = (bs[2] << 8) | bs[3];
375 memcmp((const char *)bs, (const char *)(tp->e_bs), nlen) == 0)
385 memcpy(tp->e_bs, bs, nlen);