Searched defs:tbitpos (Results 1 - 1 of 1) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/
H A Dbitstring.c82 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);
81 isc_bitstring_copy(isc_bitstring_t *source, unsigned int sbitpos, isc_bitstring_t *target, unsigned int tbitpos, unsigned int n) argument
[all...]

Completed in 20 milliseconds