Lines Matching defs:tbitpos
82 isc_bitstring_t *target, unsigned int tbitpos,
89 * the 'n' bits of 'target' starting at 'tbitpos'.
102 tlast = tbitpos + n;
104 REQUIRE(tbitpos <= target->length);
105 tbitpos = PADDED(target->size) - tbitpos;
106 REQUIRE(tbitpos >= n);
107 tbitpos -= n;
120 SETBIT(target, tbitpos);
122 CLEARBIT(target, tbitpos);
124 tbitpos++;