Searched refs:linelength (Results 1 - 7 of 7) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | cpia.c | 60 uint16_t linelength; in cpia_decode_frame() local 110 i++, src += linelength, src_size -= linelength in cpia_decode_frame() 113 linelength = AV_RL16(src); in cpia_decode_frame() 117 if (src_size < linelength) { in cpia_decode_frame() 122 if (src[linelength - 1] != EOL) { in cpia_decode_frame() 124 av_log(avctx, AV_LOG_WARNING, "Wrong line length %d or line not terminated properly (found 0x%02x)!\n", linelength, src[linelength - 1]); in cpia_decode_frame() 142 for (j = 0; j < linelength - 1; j++) { in cpia_decode_frame() 162 for (j = 0; j < linelength in cpia_decode_frame() [all...] |
/third_party/python/Lib/idlelib/idle_test/ |
H A D | mock_tk.py | 157 linelength = len(self.data[line]) -1 # position before/at \n 159 return line, linelength 162 return line, linelength - int(m.group(1)) 168 elif char > linelength: 169 char = linelength
|
H A D | test_format.py | 65 linelength = int(text.index("%d.end" % line).split('.')[1]) 66 for col in (0, linelength//2, linelength):
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2grep.c | 2650 PCRE2_SIZE length, linelength; in pcre2grep() local 2674 linelength = t - ptr - endlinelength; in pcre2grep() 2675 length = multiline? (PCRE2_SIZE)(endptr - ptr) : linelength; in pcre2grep() 2891 while (startoffset > linelength) in pcre2grep() 2893 ptr += linelength + endlinelength; in pcre2grep() 2894 filepos += (int)(linelength + endlinelength); in pcre2grep() 2896 startoffset -= (int)(linelength + endlinelength); in pcre2grep() 2898 linelength = t - ptr - endlinelength; in pcre2grep() 3045 while (startoffset > linelength + endlinelength) in pcre2grep() 3047 ptr += linelength in pcre2grep() [all...] |
/third_party/backends/backend/ |
H A D | hp5400_internal.c | 504 p->linelength = iBytesPerLine + 3; /* NUL at end of each row */ in CircBufferInit() 511 p->goff += p->linelength * iMisAlignment; in CircBufferInit() 512 p->boff += p->linelength * iMisAlignment * 2; in CircBufferInit() 517 p->roff -= p->linelength * iMisAlignment * 2; in CircBufferInit() 518 p->goff -= p->linelength * iMisAlignment; in CircBufferInit() 531 p->linelength, p->linelength, p->pixels, p->pixels, p->roff, p->roff, in CircBufferInit() 555 if (maxoff < p->linelength) in CircBufferGetLine() 556 maxoff = p->linelength; in CircBufferGetLine() 652 p->bufstart += p->linelength; in CircBufferGetLine() [all...] |
H A D | hp5400.h | 85 int linelength, pixels; /* Bytes per line from scanner */ member
|
/third_party/curl/lib/ |
H A D | cookie.c | 516 size_t linelength = strlen(lineptr); in Curl_cookie_add() local 517 if(linelength > MAX_COOKIE_LINE) { in Curl_cookie_add()
|
Completed in 10 milliseconds