Home
last modified time | relevance | path

Searched refs:row (Results 1 – 7 of 7) sorted by relevance

/xnu-12377.1.9/osfmk/console/
H A Dvideo_console.c1020 uint32_t column, row; in gc_scroll_down() local
1025 for (row = bottom - 1; row >= top + num; row--) { in gc_scroll_down()
1026 index = row * gc_buffer_columns; in gc_scroll_down()
1039 /* yy */ row, in gc_scroll_down()
1046 /* yy */ row, in gc_scroll_down()
1067 for (row = top; row < top + num; row++) { in gc_scroll_down()
1068 index = row * gc_buffer_columns; in gc_scroll_down()
1076 /* yy */ row, in gc_scroll_down()
1083 /* yy */ row, in gc_scroll_down()
1114 uint32_t column, row; in gc_scroll_up() local
[all …]
/xnu-12377.1.9/libkern/zlib/
H A Dz_crc32.c395 unsigned long row; in z_crc32_combine() local
405 row = 1; in z_crc32_combine()
407 odd[n] = row; in z_crc32_combine()
408 row <<= 1; in z_crc32_combine()
/xnu-12377.1.9/tests/
H A Dtest_sysctl_kern_procargs_25397314.m163 for (size_t row = 0; row < size; row += ROW_LENGTH) {
166 [line appendFormat:@" %04zx ", row];
167 for (size_t col = row; col < row + ROW_LENGTH; col++) {
/xnu-12377.1.9/tools/lldbmacros/tests/integration_smoke/
H A Dtest_lldb_macros.py52 def _arbitrary_vm_line(session: AtDeskLLDBGdbSession, row: int, col: int) -> str:
53 return session.exec("showallvm").split('\n')[row].strip().split()[col]
57 return _arbitrary_vm_line(session, row=index, col=1)
181 ("showtaskvm", functools.partial(_arbitrary_vm_line, row=1, col=0)),
/xnu-12377.1.9/tools/lldbmacros/
H A Dutils.py597 for row in range(start & -16, end, 16):
603 addr = row + col
616 lend = extra(row)
619 print("{}{:#016x} {} |{}|{}".format(prefix, row, line, chars, lend))
H A Drecount.py345 for row in rows:
346 row.insert(0, name)
348 return [O.format(self._usage_fmt(), *row) for row in rows]
/xnu-12377.1.9/osfmk/console/art/
H A Dprogress.m46 void print_buffer (uint8_t * buffer, size_t width, size_t height, size_t row)
54 printf("0x%02x,", buffer[x + y*row]);