Lines Matching defs:bitmap
61 nsecbitmap_has_type_rdata(uint8_t* bitmap, size_t len, uint16_t type)
63 /* Check type present in NSEC typemap with bitmap arg */
69 /* read each of the type bitmap windows and see if the searched
72 if(len < 3) /* bad window, at least window# winlen bitmap */
74 win = *bitmap++;
75 winlen = *bitmap++;
80 /* search window bitmap for the correct byte */
85 return (int)(bitmap[mybyte] & masks[type_low&0x7]);
88 bitmap += winlen;
92 /* end of bitmap reached, no type found */