Home
last modified time | relevance | path

Searched refs:pos_end (Results 1 – 8 of 8) sorted by relevance

/third_party/node/deps/brotli/c/enc/
Dbackward_references_inc.h23 const size_t pos_end = position + num_bytes; in EXPORT_FN() local
40 while (position + FN(HashTypeLength)() < pos_end) { in EXPORT_FN()
41 size_t max_length = pos_end - position; in EXPORT_FN()
80 position + FN(HashTypeLength)() < pos_end) { in EXPORT_FN()
142 BROTLI_MIN(size_t, position + 16, pos_end - kMargin); in EXPORT_FN()
151 BROTLI_MIN(size_t, position + 8, pos_end - kMargin); in EXPORT_FN()
160 insert_length += pos_end - position; in EXPORT_FN()
/third_party/skia/third_party/externals/brotli/c/enc/
Dbackward_references_inc.h23 const size_t pos_end = position + num_bytes; in EXPORT_FN() local
40 while (position + FN(HashTypeLength)() < pos_end) { in EXPORT_FN()
41 size_t max_length = pos_end - position; in EXPORT_FN()
80 position + FN(HashTypeLength)() < pos_end) { in EXPORT_FN()
142 BROTLI_MIN(size_t, position + 16, pos_end - kMargin); in EXPORT_FN()
151 BROTLI_MIN(size_t, position + 8, pos_end - kMargin); in EXPORT_FN()
160 insert_length += pos_end - position; in EXPORT_FN()
/third_party/ffmpeg/libavformat/
Dsegafilmenc.c174 int64_t pos, pos_end; in write_header() local
200 pos_end = avio_tell(format_context->pb) + header_size; in write_header()
217 } while (pos < pos_end); in write_header()
Dflvenc.c583 int64_t pos, pos_end = avio_tell(s->pb); /* Save the pre-shift size. */ in shift_data() local
644 } while (pos <= pos_end); in shift_data()
Dmovenc.c7058 int64_t pos, pos_end; in shift_data() local
7090 pos_end = avio_tell(s->pb); in shift_data()
7112 } while (pos < pos_end); in shift_data()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_code.h269 int pos_end; member
Dr3xx_vertprog.c377 compiler->code->pos_end = 0; /* Not supported yet */ in translate_vertex_program()
/third_party/libfuse/example/
Dpassthrough_hp.cc1174 size_t pos_start = 0, pos_end, delim_len = delimiter.length(); in string_split() local
1177 while ((pos_end = s.find(delimiter, pos_start)) != std::string::npos) { in string_split()
1178 token = s.substr(pos_start, pos_end - pos_start); in string_split()
1179 pos_start = pos_end + delim_len; in string_split()