Home
last modified time | relevance | path

Searched refs:filepos (Results 1 – 6 of 6) sorted by relevance

/external/ImageMagick/coders/
Dmat.c365 MagickOffsetType filepos; in CalcMinMax() local
383filepos = TellBlob(image); /* Please note that file seeking occurs only in the case of doubles… in CalcMinMax()
421 (void) SeekBlob(image, filepos, SEEK_SET); in CalcMinMax()
893 MagickOffsetType filepos=0x80; in ReadMATImage() local
972 filepos = TellBlob(image); in ReadMATImage()
973 while(filepos < (MagickOffsetType) GetBlobSize(image) && !EOFBlob(image)) /* object parser loop */ in ReadMATImage()
976 if(filepos > (MagickOffsetType) GetBlobSize(image) || filepos < 0) in ReadMATImage()
978 if(SeekBlob(image,filepos,SEEK_SET) != filepos) break; in ReadMATImage()
985 if((MagickSizeType) (MATLAB_HDR.ObjectSize+filepos) >= GetBlobSize(image)) in ReadMATImage()
987 filepos += (MagickOffsetType) MATLAB_HDR.ObjectSize + 4 + 4; in ReadMATImage()
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DDumpArchiveInputStream.java62 private long filepos; field in DumpArchiveInputStream
255 filepos = raw.getBytesRead(); in getNextEntry()
273 filepos = raw.getBytesRead(); in getNextEntry()
316 entry.setOffset(filepos); in getNextEntry()
/external/libwebsockets/lib/roles/http/
Dprivate-lib-roles-http.h236 lws_filepos_t filepos; member
/external/libwebsockets/lib/roles/http/server/
Dserver.c2992 wsi->http.filepos = 0; in lws_serve_http_file()
3069 if (wsi->http.filepos == wsi->http.filelen) in lws_serve_http_file_fragment()
3083 (lws_fileofs_t)wsi->http.filepos) < 0) in lws_serve_http_file_fragment()
3086 wsi->http.filepos = wsi->http.range.start; in lws_serve_http_file_fragment()
3195 args.final = wsi->http.filepos + (unsigned int)n == in lws_serve_http_file_fragment()
3219 m = lws_write(wsi, p, (unsigned int)n, wsi->http.filepos + amount == in lws_serve_http_file_fragment()
3225 wsi->http.filepos += amount; in lws_serve_http_file_fragment()
3258 ) && (wsi->http.filepos >= wsi->http.filelen in lws_serve_http_file_fragment()
/external/pcre/src/
Dpcre2grep.c2582 int filepos = 0; in pcre2grep() local
2660 (void)fseek(handle, stream_start + (long int)filepos, SEEK_SET); in pcre2grep()
2829 (int)(filepos + ptr + offsets[0] - ptr), in pcre2grep()
2894 filepos += (int)(linelength + endlinelength); in pcre2grep()
3048 filepos += (int)(linelength + endlinelength); in pcre2grep()
3137 filepos += (int)(linelength + endlinelength); in pcre2grep()
/external/python/cpython3/Lib/
Dzipfile.py1099 filepos = self._orig_file_size - self._left - len(self._readbuffer) + self._offset
1100 return filepos