HomeSort by relevance Sort by last modified time
    Searched refs:endpos (Results 51 - 75 of 112) sorted by null

1 23 4 5

  /libcore/ojluni/src/main/native/
zip_util.c 269 static jboolean verifyEND(jzfile *zip, jlong endpos, char *endbuf) {
276 jlong cenpos = endpos - ENDSIZ(endbuf);
367 * The offset of zip64 end locator can be calculated from endpos as
368 * "endpos - ZIP64_LOCHDR".
372 findEND64(jzfile *zip, void *end64buf, jlong endpos)
376 if (readFullyAt(zip->zfd, loc64, ZIP64_LOCHDR, endpos - ZIP64_LOCHDR) == -1) {
549 jlong endpos, end64pos, cenpos, cenlen, cenoff; local
567 if ((endpos = findEND(zip, endbuf)) == -1)
570 if (endpos == 0) return 0; /* only END header present */
580 if ((end64pos = findEND64(zip, end64buf, endpos)) != -1)
    [all...]
  /external/python/cpython3/Modules/
_sre.c 415 state->endpos = end;
583 endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
592 Py_ssize_t pos, Py_ssize_t endpos,
603 if (!state_init(&state, (PatternObject *)self, string, pos, endpos))
628 endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
637 Py_ssize_t pos, Py_ssize_t endpos,
649 if (!state_init(&state, self, string, pos, endpos))
674 endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
685 Py_ssize_t pos, Py_ssize_t endpos,
697 if (!state_init(&state, self, string, pos, endpos))
    [all...]
  /external/icu/icu4c/source/tools/escapesrc/
escapesrc.cpp 149 bool fixu8(std::string &linestr, size_t origpos, size_t &endpos) {
153 for(;pos<endpos;pos++) {
181 linestr.replace(origpos, (endpos-origpos+1), outstr);
  /external/v4l2_codec2/vda/
v4l2_video_decode_accelerator.h 210 bool AdvanceFrameFragment(const uint8_t* data, size_t size, size_t* endpos);
215 // completion. Store the amount of input actually consumed in |endpos|.
216 bool DecodeBufferInitial(const void* data, size_t size, size_t* endpos);
v4l2_video_decode_accelerator.cc 637 size_t* endpos) {
644 *endpos = 0;
657 *endpos = size;
694 if (!decoder_partial_frame_pending_ && *endpos == 0) {
706 *endpos = (nalu.data + nalu.size) - data;
715 *endpos = size;
738 size_t* endpos) {
759 *endpos = size;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
textio.c 1691 Py_ssize_t start, endpos, chunked, offset_to_buffer; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
textio.c 1651 Py_ssize_t start, endpos, chunked, offset_to_buffer; local
    [all...]
  /external/python/cpython2/Modules/_io/
textio.c 1696 Py_ssize_t start, endpos, chunked, offset_to_buffer; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_pyio.py     [all...]
doctest.py 286 startpos, endpos = 0, len(got)
297 endpos -= len(w)
302 if startpos > endpos:
314 startpos = got.find(w, startpos, endpos)
    [all...]
  /external/python/cpython2/Lib/
_pyio.py     [all...]
doctest.py 286 startpos, endpos = 0, len(got)
297 endpos -= len(w)
302 if startpos > endpos:
314 startpos = got.find(w, startpos, endpos)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_pyio.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
_pyio.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_pyio.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_pyio.py     [all...]
  /external/pdfium/core/fxcodec/codec/
fx_codec_fax.cpp 108 void FaxFillBits(uint8_t* dest_buf, int columns, int startpos, int endpos) {
110 endpos = pdfium::clamp(endpos, 0, columns);
111 if (startpos >= endpos)
115 int last_byte = (endpos - 1) / 8;
117 for (int i = startpos % 8; i <= (endpos - 1) % 8; ++i)
124 for (int i = 0; i <= (endpos - 1) % 8; ++i)
  /external/python/cpython3/Modules/_io/
textio.c 1748 Py_ssize_t start, endpos, chunked, offset_to_buffer; local
    [all...]
  /external/google-styleguide/cpplint/
cpplint.py     [all...]
  /tools/repohooks/tools/
cpplint.py     [all...]
  /external/python/cpython3/Lib/
_pyio.py     [all...]
  /external/curl/lib/
mprintf.c 227 static int dprintf_Pass1(const char *format, va_stack_t *vto, char **endpos,
480 *endpos++ = fmt + 1; /* end of this sequence */
575 char *endpos[MAX_PARAMETERS]; local
588 if(dprintf_Pass1(format, vto, endpos, ap_save))
591 end = &endpos[0]; /* the initial end-position from the list dprintf_Pass1()
  /external/swiftshader/third_party/LLVM/lib/Archive/
ArchiveWriter.cpp 335 unsigned endpos = ARFile.tellp(); local
340 assert(endpos - startpos == symTabSize && "Invalid symTabSize computation");
  /external/libvpx/libvpx/tools/
cpplint.py     [all...]
  /external/python/cpython3/Lib/test/
test_re.py 518 re.compile(r"bc").fullmatch("abcd", pos=1, endpos=3).span(), (1, 3))
520 re.compile(r".*?$").fullmatch("abcd", pos=1, endpos=3).span(), (1, 3))
522 re.compile(r".*?").fullmatch("abcd", pos=1, endpos=3).span(), (1, 3))
642 self.assertEqual(re.match("(a)", "a").endpos, 1)
    [all...]

Completed in 876 milliseconds

1 23 4 5