Searched refs:enc_add2 (Results 1 – 1 of 1) sorted by relevance
/third_party/grpc/src/core/ext/transport/chttp2/transport/ |
D | bin_encoder.cc | 150 static void enc_add2(huff_out* out, uint8_t a, uint8_t b) { in enc_add2() function 189 enc_add2(&out, in[0] >> 2, low_to_high | high_to_low); in grpc_chttp2_base64_encode_and_huffman_compress() 193 enc_add2(&out, a | b, in[2] & 0x3f); in grpc_chttp2_base64_encode_and_huffman_compress() 202 enc_add2(&out, in[0] >> 2, static_cast<uint8_t>((in[0] & 0x3) << 4)); in grpc_chttp2_base64_encode_and_huffman_compress() 208 enc_add2(&out, in[0] >> 2, low_to_high | high_to_low); in grpc_chttp2_base64_encode_and_huffman_compress()
|