Home
last modified time | relevance | path

Searched refs:lines (Results 401 - 425 of 923) sorted by relevance

1...<<11121314151617181920>>...37

/third_party/littlefs/scripts/
H A Dcode.py398 # build up our lines
399 lines = []
424 lines.append(header)
486 lines.append(table_entry(name, r, diff_r, ratios))
500 lines.append(table_entry('TOTAL', r, diff_r, ratios))
505 ((max(it.chain([w], (len(l[i]) for l in lines)))+1+4-1)//4)*4-1
508 range(len(lines[0])-1))]
511 for line in lines:
H A Ddata.py398 # build up our lines
399 lines = []
424 lines.append(header)
486 lines.append(table_entry(name, r, diff_r, ratios))
500 lines.append(table_entry('TOTAL', r, diff_r, ratios))
505 ((max(it.chain([w], (len(l[i]) for l in lines)))+1+4-1)//4)*4-1
508 range(len(lines[0])-1))]
511 for line in lines:
H A Dsummary.py432 # build up our lines
433 lines = []
458 lines.append(header)
520 lines.append(table_entry(name, r, diff_r, ratios))
534 lines.append(table_entry('TOTAL', r, diff_r, ratios))
539 ((max(it.chain([w], (len(l[i]) for l in lines)))+1+4-1)//4)*4-1
542 range(len(lines[0])-1))]
545 for line in lines:
/third_party/ffmpeg/libavcodec/
H A Dtiff.c505 const uint8_t *src, int size, int width, int lines, in tiff_unpack_zlib()
511 outlen = width * lines; in tiff_unpack_zlib()
526 (unsigned long)width * lines, ret); in tiff_unpack_zlib()
531 for (line = 0; line < lines; line++) { in tiff_unpack_zlib()
572 const uint8_t *src, int size, int width, int lines, in tiff_unpack_lzma()
575 uint64_t outlen = width * (uint64_t)lines; in tiff_unpack_lzma()
591 (uint64_t)width * lines, ret); in tiff_unpack_lzma()
596 for (line = 0; line < lines; line++) { in tiff_unpack_lzma()
615 const uint8_t *src, int size, int width, int lines) in tiff_unpack_fax()
625 ret = ff_ccitt_unpack(s->avctx, src, size, dst, lines, strid in tiff_unpack_fax()
504 tiff_unpack_zlib(TiffContext *s, AVFrame *p, uint8_t *dst, int stride, const uint8_t *src, int size, int width, int lines, int strip_start, int is_yuv) tiff_unpack_zlib() argument
571 tiff_unpack_lzma(TiffContext *s, AVFrame *p, uint8_t *dst, int stride, const uint8_t *src, int size, int width, int lines, int strip_start, int is_yuv) tiff_unpack_lzma() argument
614 tiff_unpack_fax(TiffContext *s, uint8_t *dst, int stride, const uint8_t *src, int size, int width, int lines) tiff_unpack_fax() argument
725 tiff_unpack_strip(TiffContext *s, AVFrame *p, uint8_t *dst, int stride, const uint8_t *src, int size, int strip_start, int lines) tiff_unpack_strip() argument
[all...]
/third_party/python/Lib/
H A Dargparse.py344 # helper for wrapping lines
346 lines = []
354 lines.append(indent + ' '.join(line))
360 lines.append(indent + ' '.join(line))
362 lines[0] = lines[0][len(indent):]
363 return lines
369 lines = get_lines([prog] + opt_parts, indent, prefix)
370 lines.extend(get_lines(pos_parts, indent))
372 lines
[all...]
H A Dpydoc.py16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines
193 lines = doc.strip().split('\n')
194 if len(lines) == 1:
195 return lines[0], ''
196 elif len(lines) >= 2 and not lines[1].rstrip():
197 return lines[0], '\n'.join(lines[2:])
198 return '', '\n'.join(lines)
1174 lines
[all...]
H A Dast.py308 """Split a string into lines ignoring form feed and other chars.
313 lines = []
324 lines.append(next_line)
328 lines.append(next_line)
329 return lines
362 lines = _splitlines_no_ff(source)
364 return lines[lineno].encode()[col_offset:end_col_offset].decode()
367 padding = _pad_whitespace(lines[lineno].encode()[:col_offset].decode())
371 first = padding + lines[lineno].encode()[col_offset:].decode()
372 last = lines[end_linen
[all...]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework_sc.py942 lines = []
950 lines += ["\t%s\t= %s," % v for v in values if v[1][:2] != "VK"]
951 lines.append(lastItem)
954 lines += ["\t%s\t= %s," % v for v in values if v[1][:2] == "VK"]
956 lines.append("\t%s\t= %s," % enum.values[-1])
958 lines += ["\t%s\t= %s," % v for v in enum.values]
960 for line in indentLines(lines):
1174 lines = [line.replace(' ', '\t') for line in indentLines(makeInitFunctionPointers())]
1175 writeInlFile(filename, INL_HEADER, lines)
1835 lines
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DRegexUtilitiesTest.java182 List lines; in TestBnf()
184 lines = UnicodeRegex.appendLines(new ArrayList(), is, "UTF-8"); in TestBnf()
188 result = regex.compileBnf(lines); in TestBnf()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DRegexUtilitiesTest.java187 List lines; in TestBnf()
189 lines = UnicodeRegex.appendLines(new ArrayList(), is, "UTF-8"); in TestBnf()
193 result = regex.compileBnf(lines); in TestBnf()
/third_party/node/deps/v8/tools/
H A Dgen-postmortem-metadata.py651 # may span multiple lines and may contain nested parentheses. We also
704 lines = set() # To remove duplicates.
712 lines.add('V8_EXPORT int v8dbg_%s = %s;\n' % (name, value))
714 for line in lines:
/third_party/node/tools/gyp/pylib/gyp/
H A Dwin_tool.py302 # to filter is pairs of lines that look like this:
305 lines = out.splitlines()
307 processing = {os.path.basename(x) for x in lines if x.startswith(prefixes)}
308 for line in lines:
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dwin_tool.py301 # to filter is pairs of lines that look like this:
304 lines = out.splitlines()
306 processing = {os.path.basename(x) for x in lines if x.startswith(prefixes)}
307 for line in lines:
/third_party/rust/crates/clang-sys/src/
H A Dsupport.rs85 if let Some(line) = path.lines().next() { in find()
92 if let Some(line) = path.lines().next() { in find()
231 .lines() in parse_search_paths()
/third_party/skia/src/core/
H A DSkLineClipper.cpp175 int SkLineClipper::ClipLine(const SkPoint pts[], const SkRect& clip, SkPoint lines[], in ClipLine() argument
266 // Now copy the results into the caller's lines[] parameter in ClipLine()
270 lines[lineCount - i] = result[i]; in ClipLine()
273 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint)); in ClipLine()
/third_party/python/Lib/test/
H A Dtest_tabnanny.py174 existence of each output lines at `stdout` using `in` operator.
178 lines = [f"{tmp_dir!r}: listing directory\n",]
183 lines.append(f"{file_path!r}: Clean bill of health.\n")
189 for line in lines:
H A Dtest_readline.py302 lines = f.readlines()
303 self.assertEqual(len(lines), history_size)
304 self.assertEqual(lines[-1].strip(), b"last input")
/third_party/protobuf/
H A Dupdate_version.py81 lines = open(filename, 'r').readlines()
83 for line in lines:
85 if lines == updated_lines:
/build/templates/rust/
H A Drun_build_script.py35 for lines in io.TextIOWrapper(proc.stdout, encoding="utf-8"):
37 match = rustc_version.match(lines.rstrip())
/third_party/backends/backend/
H A Depsonds-jpeg.c197 DBG(10,"decodded lines = %d\n", sum); in eds_decode_jpeg()
213 // if not auto crop mode padding to lines in eds_decode_jpeg()
218 DBG(10,"padding data lines = %d to %d pa \n", sum, s->params.lines); in eds_decode_jpeg()
220 while(sum < s->params.lines) in eds_decode_jpeg()
H A Dmustek.h58 #define MAX_LINE_DIST 40 /* Extra lines needed for LD correction */
219 SANE_Int bpl, lines; member
224 SANE_Int lines; member
233 /* maximum size scanned in one block and corresponding lines */
275 SANE_Word total_lines; /* lines transmitted to sane_read pipe */
289 SANE_Int saved[3]; /* number of saved color lines */
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DCollationMapperTest.java82 " # As are empty lines and leading/trailing spaces", in testCommentAndWhitespaceStripping()
153 private static CldrValue collationRule(String type, String alt, String... lines) { in collationRule() argument
160 return CldrValue.parseValue(cldrPath.toString(), Joiner.on('\n').join(lines)); in collationRule()
/third_party/mesa3d/.gitlab-ci/bare-metal/
H A Dserial_buffer.py110 # file, 3) add to the queue of lines to be read by program logic
140 def lines(self, timeout=None, phase=None): member in SerialBuffer
178 for line in ser.lines():
179 # We're just using this as a logger, so eat the produced lines and drop
/third_party/node/deps/v8/third_party/inspector_protocol/
H A Droll.py184 lines = open(os.path.join(dest_dir, 'README.v8')).readlines()
186 for line in lines:
/third_party/node/tools/inspector_protocol/
H A Droll.py151 lines = open(os.path.join(dest_dir, 'README.v8')).readlines()
153 for line in lines:

Completed in 20 milliseconds

1...<<11121314151617181920>>...37