Home
last modified time | relevance | path

Searched refs:last_buf (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_decode.cpp350 uint8_t* last_buf = (uint8_t*)src_buf; in PDF_DataDecode() local
364 dest_buf = (uint8_t*)last_buf; in PDF_DataDecode()
369 offset = FPDFAPI_FlateOrLZWDecode(FALSE, last_buf, last_size, pParam, in PDF_DataDecode()
372 offset = FPDFAPI_FlateOrLZWDecode(TRUE, last_buf, last_size, pParam, in PDF_DataDecode()
375 offset = A85Decode(last_buf, last_size, new_buf, new_size); in PDF_DataDecode()
377 offset = HexDecode(last_buf, last_size, new_buf, new_size); in PDF_DataDecode()
381 dest_buf = (uint8_t*)last_buf; in PDF_DataDecode()
386 offset = RunLengthDecode(last_buf, last_size, new_buf, new_size); in PDF_DataDecode()
398 dest_buf = (uint8_t*)last_buf; in PDF_DataDecode()
404 if (last_buf != src_buf) { in PDF_DataDecode()
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_curbe.c279 brw->curbe.last_buf, buf, in brw_upload_constant_buffer()
281 brw->curbe.last_buf ? memcmp(buf, brw->curbe.last_buf, bufsz) : -1); in brw_upload_constant_buffer()
286 memcmp(buf, brw->curbe.last_buf, bufsz) == 0) { in brw_upload_constant_buffer()
293 memcpy(brw->curbe.last_buf, buf, bufsz); in brw_upload_constant_buffer()
Dbrw_vtbl.c81 free(brw->curbe.last_buf); in brw_destroy_context()
Dbrw_context.c372 brw->curbe.last_buf = calloc(1, 4096); in brwCreateContext()
Dbrw_context.h878 GLfloat *last_buf; member
/external/compiler-rt/test/dfsan/
Dcustom.cc345 static const unsigned char *last_buf; variable
352 last_buf = (const unsigned char*) buf; in write_callback()
371 ASSERT_READ_ZERO_LABEL(last_buf, sizeof(last_buf)); in test_dfsan_set_write_callback()
384 ASSERT_READ_LABEL(&last_buf[3], sizeof(last_buf[3]), j_label); in test_dfsan_set_write_callback()
385 ASSERT_READ_LABEL(last_buf, sizeof(last_buf), j_label); in test_dfsan_set_write_callback()
/external/toybox/toys/pending/
Dsyslogd.c412 …char *temp, *buffer = (toybuf +2048), *last_buf = (toybuf + 3072); //these two buffs are of 1K each in syslogd_main() local
532 if (!memcmp(last_buf, buffer, len)) break; in syslogd_main()
534 memcpy(last_buf, buffer, len); in syslogd_main()