Lines Matching refs:bpp
107 static void convert_v4v6_hostent(struct hostent* hp, char** bpp, char* ep,
110 static void pad_v4v6_hostent(struct hostent* hp, char** bpp, char* ep);
617 static void convert_v4v6_hostent(struct hostent* hp, char** bpp, char* ep, in convert_v4v6_hostent() argument
621 _DIAGASSERT(bpp != NULL); in convert_v4v6_hostent()
627 int i = (int)(sizeof(align) - (size_t)((uintptr_t)*bpp % sizeof(align))); in convert_v4v6_hostent()
629 if (ep - *bpp < (i + NS_IN6ADDRSZ)) { in convert_v4v6_hostent()
634 *bpp += i; in convert_v4v6_hostent()
635 map_addr(*ap, *bpp); in convert_v4v6_hostent()
636 *ap = *bpp; in convert_v4v6_hostent()
637 *bpp += NS_IN6ADDRSZ; in convert_v4v6_hostent()
642 static void pad_v4v6_hostent(struct hostent* hp, char** bpp, char* ep) { in pad_v4v6_hostent() argument
643 convert_v4v6_hostent(hp, bpp, ep, in pad_v4v6_hostent()