Home
last modified time | relevance | path

Searched refs:bufin (Results 1 – 5 of 5) sorted by relevance

/third_party/libcoap/src/
Dcoap_ws.c96 const uint8_t *bufin; in coap_base64_decode_buffer() local
119 bufin = (const uint8_t *)bufcoded; in coap_base64_decode_buffer()
120 while (pr2six[*(bufin++)] <= 63); in coap_base64_decode_buffer()
121 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1; in coap_base64_decode_buffer()
127 bufin = (const uint8_t *)bufcoded; in coap_base64_decode_buffer()
131 (uint8_t)(pr2six[*bufin] << 2 | pr2six[bufin[1]] >> 4); in coap_base64_decode_buffer()
133 (uint8_t)(pr2six[bufin[1]] << 4 | pr2six[bufin[2]] >> 2); in coap_base64_decode_buffer()
135 (uint8_t)(pr2six[bufin[2]] << 6 | pr2six[bufin[3]]); in coap_base64_decode_buffer()
136 bufin += 4; in coap_base64_decode_buffer()
142 *(bufout++) = (uint8_t)(pr2six[*bufin] << 2 | pr2six[bufin[1]] >> 4); in coap_base64_decode_buffer()
[all …]
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Drtpstorage.c98 GstBuffer *bufin, *bufout, *bufs[10]; in GST_START_TEST() local
104 bufin = create_rtp_packet (96, 0xabe2b0b, 0x111111, 0); in GST_START_TEST()
105 bufout = gst_harness_push_and_pull (h, bufin); in GST_START_TEST()
106 fail_unless (bufin == bufout); in GST_START_TEST()
Drtpred.c670 GstBuffer *bufin; in GST_START_TEST() local
682 bufin = in GST_START_TEST()
684 fail_unless (gst_rtp_buffer_map (bufin, GST_MAP_READ, &rtp)); in GST_START_TEST()
688 bufout = gst_harness_push_and_pull (h, bufin); in GST_START_TEST()
700 bufin = in GST_START_TEST()
702 bufout = gst_harness_push_and_pull (h, bufin); in GST_START_TEST()
/third_party/libwebsockets/lib/roles/ws/
Dclient-ws.c72 unsigned char *bufin = *buf; in lws_ws_handshake_client() local
107 *buf = bufin; in lws_ws_handshake_client()
Dserver-ws.c992 unsigned char *bufin = *buf; in lws_parse_ws() local
1027 *buf = bufin; in lws_parse_ws()