Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dbinascii.c1375 const unsigned char *databuf; in binascii_b2a_qp_impl() local
1384 databuf = data->buf; in binascii_b2a_qp_impl()
1391 p = (const unsigned char *) memchr(databuf, '\n', datalen); in binascii_b2a_qp_impl()
1392 if ((p != NULL) && (p > databuf) && (*(p-1) == '\r')) in binascii_b2a_qp_impl()
1399 if ((databuf[in] > 126) || in binascii_b2a_qp_impl()
1400 (databuf[in] == '=') || in binascii_b2a_qp_impl()
1401 (header && databuf[in] == '_') || in binascii_b2a_qp_impl()
1402 ((databuf[in] == '.') && (linelen == 0) && in binascii_b2a_qp_impl()
1403 (in + 1 == datalen || databuf[in+1] == '\n' || in binascii_b2a_qp_impl()
1404 databuf[in+1] == '\r' || databuf[in+1] == 0)) || in binascii_b2a_qp_impl()
[all …]
/external/curl/tests/libtest/
Dlib552.c127 static char databuf[70000]; /* MUST be more than 64k OR variable
133 size_t available = sizeof(databuf) - current_offset; /* What we have to in read_callback()
137 memcpy(ptr, databuf + current_offset, given); in read_callback()
187 for(i = 0; i < sizeof(databuf); ++i) in test()
188 databuf[i] = fill[i % sizeof(fill)]; in test()
199 test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long) sizeof(databuf)); in test()
/external/u-boot/drivers/usb/host/
Dohci-hcd.c1253 ALLOC_ALIGN_BUFFER(__u8, databuf, 16, sizeof(u32)); in ohci_submit_rh_msg()
1284 *(u16 *)databuf = cpu_to_le16(1); in ohci_submit_rh_msg()
1287 *(u16 *)databuf = cpu_to_le16(0); in ohci_submit_rh_msg()
1290 *(u16 *)databuf = cpu_to_le16(0); in ohci_submit_rh_msg()
1293 *(u32 *)databuf = cpu_to_le32( in ohci_submit_rh_msg()
1297 *(u32 *)databuf = cpu_to_le32(RD_RH_PORTSTAT); in ohci_submit_rh_msg()
1360 databuf = root_hub_dev_des; OK(len); in ohci_submit_rh_msg()
1367 databuf = root_hub_config_des; OK(len); in ohci_submit_rh_msg()
1375 databuf = root_hub_str_index0; in ohci_submit_rh_msg()
1384 databuf = root_hub_str_index1; in ohci_submit_rh_msg()
[all …]
/external/libxml2/os400/iconv/bldcsndfa/
Dbldcsndfa.c376 byte * databuf; in loadXMLFile() local
384 databuf = malloc(sbuf.st_size + 4); in loadXMLFile()
386 if (!databuf) in loadXMLFile()
396 free((char *) databuf); in loadXMLFile()
400 i = read(fd, (char *) databuf, sbuf.st_size); in loadXMLFile()
404 free((char *) databuf); in loadXMLFile()
408 databuf[i] = databuf[i + 1] = databuf[i + 2] = databuf[i + 3] = 0; in loadXMLFile()
409 doc = xmlParseMemory((xmlChar *) databuf, i); in loadXMLFile()
410 free((char *) databuf); in loadXMLFile()
/external/libevent/include/event2/
Dhttp.h418 const char *reason, struct evbuffer *databuf);
453 struct evbuffer *databuf);
/external/u-boot/drivers/mmc/
Dfsl_esdhc.c199 uint databuf; in esdhc_pio_read_write() local
220 databuf = in_le32(&regs->datport); in esdhc_pio_read_write()
221 *((uint *)buffer) = databuf; in esdhc_pio_read_write()
242 databuf = *((uint *)buffer); in esdhc_pio_read_write()
246 out_le32(&regs->datport, databuf); in esdhc_pio_read_write()
/external/libevent/
Dhttp.c2785 evhttp_send(struct evhttp_request *req, struct evbuffer *databuf) in evhttp_send() argument
2800 if (databuf != NULL) in evhttp_send()
2801 evbuffer_add_buffer(req->output_buffer, databuf); in evhttp_send()
2811 struct evbuffer *databuf) in evhttp_send_reply() argument
2815 evhttp_send(req, databuf); in evhttp_send_reply()
2842 evhttp_send_reply_chunk_with_cb(struct evhttp_request *req, struct evbuffer *databuf, in evhttp_send_reply_chunk_with_cb() argument
2853 if (evbuffer_get_length(databuf) == 0) in evhttp_send_reply_chunk_with_cb()
2859 (unsigned)evbuffer_get_length(databuf)); in evhttp_send_reply_chunk_with_cb()
2861 evbuffer_add_buffer(output, databuf); in evhttp_send_reply_chunk_with_cb()
2869 evhttp_send_reply_chunk(struct evhttp_request *req, struct evbuffer *databuf) in evhttp_send_reply_chunk() argument
[all …]
/external/u-boot/drivers/mtd/nand/
Dtegra_nand.c387 static int check_ecc_error(struct nand_ctlr *reg, u8 *databuf, in check_ecc_error() argument
401 if ((reg_val & DEC_STATUS_A_ECC_FAIL) && databuf) { in check_ecc_error()
409 !blank_check(databuf, a_len)) in check_ecc_error()
Dmxs_nand_spl.c199 nand_chip.oob_poi = nand_chip.buffers->databuf + mtd->writesize; in mxs_nand_init()
Dnand_base.c1733 bufpoi = use_bufpoi ? chip->buffers->databuf : buf; in nand_do_read_ops()
1779 memcpy(buf, chip->buffers->databuf + col, bytes); in nand_do_read_ops()
1819 memcpy(buf, chip->buffers->databuf + col, bytes); in nand_do_read_ops()
2597 memset(chip->buffers->databuf, 0xff, mtd->writesize); in nand_do_write_ops()
2598 memcpy(&chip->buffers->databuf[column], buf, bytes); in nand_do_write_ops()
2599 wbuf = chip->buffers->databuf; in nand_do_write_ops()
4389 chip->oob_poi = chip->buffers->databuf + mtd->writesize; in nand_scan_tail()
Dnand_bbt.c822 return create_bbt(mtd, this->buffers->databuf, bd, -1); in nand_memory_bbt()
/external/u-boot/include/linux/mtd/
Dmtd.h324 int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf,
326 int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf,
Drawnand.h640 uint8_t databuf[ALIGN(NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE, member
/external/u-boot/drivers/mtd/
Dmtdcore.c1311 int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf, in mtd_ooblayout_get_databytes() argument
1314 return mtd_ooblayout_get_bytes(mtd, databuf, oobbuf, start, nbytes, in mtd_ooblayout_get_databytes()
1331 int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf, in mtd_ooblayout_set_databytes() argument
1334 return mtd_ooblayout_set_bytes(mtd, databuf, oobbuf, start, nbytes, in mtd_ooblayout_set_databytes()
/external/error_prone/javac/
Djavac-9+181-r4173-1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META- ...