Home
last modified time | relevance | path

Searched refs:databuf (Results 1 – 14 of 14) sorted by relevance

/third_party/python/Modules/
Dbinascii.c1410 const unsigned char *databuf; in binascii_b2a_qp_impl() local
1419 databuf = data->buf; in binascii_b2a_qp_impl()
1426 p = (const unsigned char *) memchr(databuf, '\n', datalen); in binascii_b2a_qp_impl()
1427 if ((p != NULL) && (p > databuf) && (*(p-1) == '\r')) in binascii_b2a_qp_impl()
1434 if ((databuf[in] > 126) || in binascii_b2a_qp_impl()
1435 (databuf[in] == '=') || in binascii_b2a_qp_impl()
1436 (header && databuf[in] == '_') || in binascii_b2a_qp_impl()
1437 ((databuf[in] == '.') && (linelen == 0) && in binascii_b2a_qp_impl()
1438 (in + 1 == datalen || databuf[in+1] == '\n' || in binascii_b2a_qp_impl()
1439 databuf[in+1] == '\r' || databuf[in+1] == 0)) || in binascii_b2a_qp_impl()
[all …]
/third_party/curl/tests/libtest/
Dlib552.c129 static char databuf[70000]; /* MUST be more than 64k OR variable
135 size_t available = sizeof(databuf) - current_offset; /* What we have to in read_callback()
139 memcpy(ptr, databuf + current_offset, given); in read_callback()
189 for(i = 0; i < sizeof(databuf); ++i) in test()
190 databuf[i] = fill[i % sizeof(fill)]; in test()
196 test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long) sizeof(databuf)); in test()
/third_party/gstreamer/gstplugins_good/gst/multipart/
Dmultipartmux.c438 GstBuffer *databuf = NULL; in gst_multipart_mux_collected() local
544 databuf = gst_buffer_make_writable (best->buffer); in gst_multipart_mux_collected()
548 GST_BUFFER_PTS (databuf) = best->pts_timestamp; in gst_multipart_mux_collected()
549 GST_BUFFER_DTS (databuf) = best->dts_timestamp; in gst_multipart_mux_collected()
550 GST_BUFFER_OFFSET (databuf) = mux->offset; in gst_multipart_mux_collected()
551 mux->offset += gst_buffer_get_size (databuf); in gst_multipart_mux_collected()
552 GST_BUFFER_OFFSET_END (databuf) = mux->offset; in gst_multipart_mux_collected()
553 GST_BUFFER_FLAG_SET (databuf, GST_BUFFER_FLAG_DELTA_UNIT); in gst_multipart_mux_collected()
556 gst_buffer_get_size (databuf)); in gst_multipart_mux_collected()
557 ret = gst_pad_push (mux->srcpad, databuf); in gst_multipart_mux_collected()
/third_party/musl/porting/uniproton/kernel/include/
Dstropts.h97 struct strbuf databuf; member
103 struct strbuf databuf; member
/third_party/musl/include/
Dstropts.h97 struct strbuf databuf; member
103 struct strbuf databuf; member
/third_party/musl/ndk_musl_include/
Dstropts.h97 struct strbuf databuf; member
103 struct strbuf databuf; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dstropts.h97 struct strbuf databuf; member
103 struct strbuf databuf; member
/third_party/musl/porting/liteos_m/kernel/include/
Dstropts.h97 struct strbuf databuf; member
103 struct strbuf databuf; member
/third_party/ffmpeg/libavcodec/
Datrac3.c643 static int decode_frame(AVCodecContext *avctx, const uint8_t *databuf, in decode_frame() argument
662 js_databuf = databuf + js_pair * js_block_align; /* align to current pair */ in decode_frame()
732 databuf + i * avctx->block_align / avctx->channels, in decode_frame()
756 static int al_decode_frame(AVCodecContext *avctx, const uint8_t *databuf, in al_decode_frame() argument
763 init_get_bits(&q->gb, databuf, size * 8); in al_decode_frame()
798 const uint8_t *databuf; in atrac3_decode_frame() local
814 databuf = q->decoded_bytes_buffer; in atrac3_decode_frame()
816 databuf = buf; in atrac3_decode_frame()
819 ret = decode_frame(avctx, databuf, (float **)frame->extended_data); in atrac3_decode_frame()
Dflashsv2enc.c141 uint8_t * encbuf, uint8_t * databuf) in init_blocks() argument
160 b->data = databuf; in init_blocks()
162 databuf = databuf ? databuf + b->width * b->height * 6 : NULL; in init_blocks()
/third_party/libcoap/examples/
Dcoap-client.c388 const uint8_t *databuf; in message_handler() local
429 if (coap_get_data_large(received, &len, &databuf, &offset, &total)) { in message_handler()
430 append_to_output(databuf, len); in message_handler()
459 if (coap_get_data_large(received, &len, &databuf, &offset, &total)) { in message_handler()
462 fprintf(stderr, "%c", isprint(*databuf) ? *databuf : '.'); in message_handler()
463 databuf++; in message_handler()
/third_party/NuttX/drivers/usbdev/gadget/
Df_mass_storage.c1088 struct fmass_data_buf_t *db = &fmass->databuf[i]; in fmass_dev_open()
1103 fmass->databuf[i - 1].next = &fmass->databuf[0]; in fmass_dev_open()
1131 free(fmass->databuf[i].buf); in fmass_dev_close()
1132 fmass->databuf[i].buf = NULL; in fmass_dev_close()
1242 fmass->databuf_fill = &fmass->databuf[0]; in fmass_set_config()
1243 fmass->bulkreq.buf = (uint8_t *)fmass->databuf[0].buf; in fmass_set_config()
Df_mass_storage.h235 struct fmass_data_buf_t databuf[MAX_DATA_BUFFER_NUM]; member
/third_party/nghttp2/tests/
Dnghttp2_session_test.c2987 nghttp2_buf databuf; in test_nghttp2_session_continue() local
2998 nghttp2_buf_wrap_init(&databuf, buffer, sizeof(buffer)); in test_nghttp2_session_continue()
3029 databuf.last = nghttp2_cpymem(databuf.last, buf->pos, nghttp2_buf_len(buf)); in test_nghttp2_session_continue()
3046 databuf.last = nghttp2_cpymem(databuf.last, buf->pos, nghttp2_buf_len(buf)); in test_nghttp2_session_continue()
3052 nghttp2_session_mem_recv(session, databuf.pos, nghttp2_buf_len(&databuf)); in test_nghttp2_session_continue()
3055 databuf.pos += rv; in test_nghttp2_session_continue()
3070 nghttp2_session_mem_recv(session, databuf.pos, nghttp2_buf_len(&databuf)); in test_nghttp2_session_continue()
3073 databuf.pos += rv; in test_nghttp2_session_continue()
3084 nghttp2_session_mem_recv(session, databuf.pos, nghttp2_buf_len(&databuf)); in test_nghttp2_session_continue()
3087 databuf.pos += rv; in test_nghttp2_session_continue()
[all …]