Home
last modified time | relevance | path

Searched refs:lines (Results 726 - 750 of 1328) sorted by relevance

1...<<21222324252627282930>>...54

/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_cb_copyimage.c574 unsigned lines = src_h; in fallback_copy_image() local
584 lines = DIV_ROUND_UP(lines, src_blk_h); in fallback_copy_image()
618 for (int y = 0; y < lines; y++) { in fallback_copy_image()
/third_party/ltp/testcases/kernel/power_management/lib/
H A Dpm_sched_mc.py656 lines = dmesg_info.split('\n')
657 for i in range(0, len(lines)):
658 if lines[i].endswith('CPU'):
659 groups = lines[i+1].split("groups:")
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/testing/
H A DTestNumberingScheme.java412 public TypeModifier addComment(String... lines) { in addComment() argument
416 Comment.create(Comment.anchor(region, t), Arrays.asList(lines)))); in addComment()
429 public TerritoryModifier addComment(String... lines) { in addComment() argument
430 comments.add(Comment.create(Comment.anchor(region), Arrays.asList(lines))); in addComment()
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_run.py104 return self.lines.pop()
109 def push(self, lines):
110 self.lines = list(lines)[::-1]
/third_party/python/Lib/importlib/metadata/
H A D__init__.py109 lines = filter(filter_, map(str.strip, text.splitlines()))
111 for value in lines:
658 def make_files(lines):
659 return list(starmap(make_file, csv.reader(lines)))
665 Read the lines of RECORD
/third_party/skia/src/core/
H A DSkEdgeClipper.cpp52 SkPoint lines[SkLineClipper::kMaxPoints]; in clipLine() local
54 int lineCount = SkLineClipper::ClipLine(pts, clip, lines, fCanCullToTheRight); in clipLine()
56 this->appendLine(lines[i], lines[i + 1]); in clipLine()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
H A DServer.cpp162 std::vector<int> lines; in Impl()
163 lines.reserve(breakpoints.size()); in Impl()
166 lines.push_back(bp.line); in Impl()
169 lines); in Impl()
/third_party/skia/third_party/externals/jinja2/
H A Dfilters.py622 first line and blank lines are not indented by default.
626 :param blank: Don't skip indenting empty lines.
629 Blank lines are not indented by default.
654 lines = s.splitlines()
655 rv = lines.pop(0)
657 if lines:
659 indention + line if line else line for line in lines
718 :param width: Maximum length of wrapped lines.
720 it across lines.
722 across lines
[all...]
/third_party/python/Lib/
H A Dtracemalloc.py237 lines = []
249 lines.append(' File "%s", line %s'
253 lines.append(' %s' % line)
254 return lines
H A Dshutil.py1413 # columns, lines are the working values
1420 lines = int(os.environ['LINES'])
1422 lines = 0
1425 if columns <= 0 or lines <= 0:
1434 if lines <= 0:
1435 lines = size.lines or fallback[1]
1437 return os.terminal_size((columns, lines))
/third_party/skia/third_party/externals/angle2/scripts/
H A Droll_chromium_deps.py219 lines = _RunCommand(['git', 'branch'])[0].split('\n')
222 for line in lines:
258 """Connect to a remote host and read the contents. Returns a list of lines."""
410 def GetClangRev(lines):
411 for line in lines:
/third_party/python/Lib/test/
H A Dtest_configparser.py1494 self.lines = f.readlines()
1495 self.lines.reverse()
1498 if len(self.lines):
1499 return self.lines.pop()
1527 lines = textwrap.dedent("""
1531 parser.read_file(lines)
1548 lines = textwrap.dedent("""
1553 parser.read_file(lines, source=b"badbad")
1559 lines = textwrap.dedent("""
1565 parser.read_file(lines, sourc
[all...]
H A Dtest_urllib2_localnet.py664 lines = [b"We\n", b"got\n", b"here\n", b"verylong " * 8192 + b"\n"]
665 expected_response = b"".join(lines)
669 self.assertEqual(line, lines[index],
672 (index, len(lines[index]), len(line)))
673 self.assertEqual(index + 1, len(lines))
/kernel/linux/linux-5.10/drivers/lightnvm/
H A Dpblk-init.c133 /* Free full lines directly as GC has not been started yet */ in pblk_l2p_recover()
579 line = &pblk->lines[i]; in pblk_lines_free()
588 kfree(pblk->lines); in pblk_lines_free()
1025 pblk->lines = kcalloc(l_mg->nr_lines, sizeof(struct pblk_line), in pblk_lines_init()
1027 if (!pblk->lines) { in pblk_lines_init()
1033 line = &pblk->lines[i]; in pblk_lines_init()
1060 pblk_line_meta_free(l_mg, &pblk->lines[i]); in pblk_lines_init()
1061 kfree(pblk->lines); in pblk_lines_init()
1217 pblk_err(pblk, "could not initialize lines\n"); in pblk_init()
1257 pblk_info(pblk, "luns:%u, lines in pblk_init()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/
H A Dintel_fbc.c67 int lines; in intel_fbc_calculate_cfb_size() local
69 intel_fbc_get_plane_source_size(cache, NULL, &lines); in intel_fbc_calculate_cfb_size()
71 lines = min(lines, 2048); in intel_fbc_calculate_cfb_size()
73 lines = min(lines, 2560); in intel_fbc_calculate_cfb_size()
76 return lines * cache->fb.stride; in intel_fbc_calculate_cfb_size()
/third_party/mksh/
H A Dhistrap.c293 /* Run editor on selected lines, then run resulting commands */ in c_fc()
777 int lines, fd; in hist_persist_init() local
813 lines = histload(hist_source, base + 2, (size_t)histfsize - 2); in hist_persist_init()
816 if (lines > histsize && histptr >= history) { in hist_persist_init()
915 int lno = 0, lines = 0; in histload() local
921 return (lines); in histload()
927 return (lines); in histload()
932 ++lines; in histload()
/kernel/linux/linux-5.10/drivers/media/pci/cx18/
H A Dcx18-streams.c542 int lines; in cx18_vbi_setup() local
569 lines = cx->vbi.count * 2; in cx18_vbi_setup()
573 * The EAV RP code's Field bit toggles on line 4, a few lines in cx18_vbi_setup()
575 * Tell the encoder to capture 21-4+1=18 lines per field, in cx18_vbi_setup()
576 * since we want lines 10 through 21. in cx18_vbi_setup()
579 * The EAV RP code's Field bit toggles on line 1, a few lines in cx18_vbi_setup()
583 * lines per field, since we want lines 6 through 23. in cx18_vbi_setup()
585 lines = cx->is_60hz ? (21 - 4 + 1) * 2 : (23 - 2 + 1) * 2; in cx18_vbi_setup()
590 data[1] = (lines / in cx18_vbi_setup()
[all...]
/kernel/linux/linux-6.6/drivers/media/pci/cx18/
H A Dcx18-streams.c554 int lines; in cx18_vbi_setup() local
581 lines = cx->vbi.count * 2; in cx18_vbi_setup()
585 * The EAV RP code's Field bit toggles on line 4, a few lines in cx18_vbi_setup()
587 * Tell the encoder to capture 21-4+1=18 lines per field, in cx18_vbi_setup()
588 * since we want lines 10 through 21. in cx18_vbi_setup()
591 * The EAV RP code's Field bit toggles on line 1, a few lines in cx18_vbi_setup()
595 * lines per field, since we want lines 6 through 23. in cx18_vbi_setup()
597 lines = cx->is_60hz ? (21 - 4 + 1) * 2 : (23 - 2 + 1) * 2; in cx18_vbi_setup()
602 data[1] = (lines / in cx18_vbi_setup()
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dsrcline.c459 int lines; in addr2line_configure() local
469 lines = 1; in addr2line_configure()
474 lines = 3; in addr2line_configure()
489 while (lines) { in addr2line_configure()
494 lines--; in addr2line_configure()
570 * the function and filename lines. in read_addr2line_record()
676 * out the lines "0x0...0", "??" and "??:0", for GNU binutils, or "," in addr2line()
/third_party/alsa-utils/alsamixer/
H A Dmixer_display.c346 int lines, top, left; in display_unplugged() local
349 lines = screen_lines - 6; in display_unplugged()
350 if (lines < 2) in display_unplugged()
352 top = lines / 2; in display_unplugged()
353 boojum = lines >= 10 && screen_cols >= 48; in display_unplugged()
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_gmem.c522 uint32_t size, lines; variable
528 lines = size / 1024;
533 lines = size / 1024;
538 lines =
555 A2XX_PA_SC_SCREEN_SCISSOR_BR_Y(lines);
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtsp/include/
H A Drtsp_common.h91 static void SplitParameter(std::list<std::string> &lines, std::list<std::pair<std::string, std::string>> &params);
/foundation/filemanagement/storage_service/services/storage_daemon/include/disk/
H A Ddisk_info.h71 int32_t ReadDiskLines(std::vector<std::string> lines, int32_t maxVols);
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/
H A Dgf119.c74 .lines = 32,
H A Dg94.c62 .lines = 32,

Completed in 27 milliseconds

1...<<21222324252627282930>>...54