Searched refs:last_buf (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/core/fpdfapi/parser/ |
D | fpdf_parser_decode.cpp | 361 uint8_t* last_buf = const_cast<uint8_t*>(src_buf); in PDF_DataDecode() local 376 *dest_buf = last_buf; in PDF_DataDecode() 381 offset = FPDFAPI_FlateOrLZWDecode(false, last_buf, last_size, pParam, in PDF_DataDecode() 384 offset = FPDFAPI_FlateOrLZWDecode(true, last_buf, last_size, pParam, in PDF_DataDecode() 387 offset = A85Decode(last_buf, last_size, &new_buf, &new_size); in PDF_DataDecode() 389 offset = HexDecode(last_buf, last_size, &new_buf, &new_size); in PDF_DataDecode() 393 *dest_buf = last_buf; in PDF_DataDecode() 398 offset = RunLengthDecode(last_buf, last_size, &new_buf, &new_size); in PDF_DataDecode() 407 *dest_buf = last_buf; in PDF_DataDecode() 411 if (last_buf != src_buf) in PDF_DataDecode() [all …]
|
/external/compiler-rt/test/dfsan/ |
D | custom.cc | 345 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/libaom/libaom/av1/encoder/ |
D | encode_strategy.c | 245 const RefCntBuffer *last_buf = get_ref_frame_buf(cm, LAST_FRAME); in get_ref_frame_flags() local 254 const int last2_is_last = (last2_buf == last_buf); in get_ref_frame_flags() 255 const int last3_is_last = (last3_buf == last_buf); in get_ref_frame_flags() 256 const int gld_is_last = (golden_buf == last_buf); in get_ref_frame_flags() 257 const int bwd_is_last = (bwd_buf == last_buf); in get_ref_frame_flags() 258 const int alt2_is_last = (alt2_buf == last_buf); in get_ref_frame_flags() 259 const int alt_is_last = (alt_buf == last_buf); in get_ref_frame_flags()
|
/external/toybox/toys/pending/ |
D | syslogd.c | 411 …char *temp, *buffer = (toybuf +2048), *last_buf = (toybuf + 3072); //these two buffs are of 1K each in syslogd_main() local 531 if (!memcmp(last_buf, buffer, len)) break; in syslogd_main() 533 memcpy(last_buf, buffer, len); in syslogd_main()
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1315 self.last_buf = self.connection.buf 1341 request = handler.last_buf
|