Searched refs:bytes_per_line (Results 1 - 25 of 39) sorted by relevance

12

/openbsd-current/lib/libcrypto/bio/
H A Db_dump.c83 int bytes_per_line, dumped, printed, trailing, written; local
102 bytes_per_line = MAX_BYTES_PER_LINE;
104 bytes_per_line -= (indent - 3) / 4;
105 if (bytes_per_line <= 0)
129 if ((row_bytes = CBS_len(&cbs)) > bytes_per_line)
130 row_bytes = bytes_per_line;
174 if ((missing = bytes_per_line - row_bytes) < 0)
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DDumpDataExtractor.h99 uint32_t bytes_per_line, lldb::addr_t base_addr);
/openbsd-current/sys/dev/pci/drm/amd/display/modules/hdcp/
H A Dhdcp_log.c32 const uint8_t bytes_per_line = 16, local
36 uint32_t line_count = msg_size / bytes_per_line,
37 trailing_bytes = msg_size % bytes_per_line;
38 uint32_t target_size = (byte_size * bytes_per_line + newline_size) * line_count +
45 if (i % bytes_per_line == 0)
/openbsd-current/gnu/usr.bin/binutils/opcodes/
H A Dia64-dis.c81 if (info->bytes_per_line == 0)
82 info->bytes_per_line = 6;
85 slot_multiplier = info->bytes_per_line;
H A Dxtensa-dis.c447 /* Set bytes_per_line to control the amount of whitespace between the hex
451 bytes_per_line but that makes it hard to fit 64-bit instructions on
452 an 80-column screen.) The value of bytes_per_line here is not exactly
457 info->bytes_per_line = MAX (maxsize, 4);
H A Dd30v-dis.c44 info->bytes_per_line = 8;
59 info->bytes_per_line = 8;
H A Ds390-dis.c129 info->bytes_per_line = 6;
H A Dtic80-dis.c389 info->bytes_per_line = 8;
H A Dpdp11-dis.c221 info->bytes_per_line = 6;
H A Dsh64-dis.c549 info->bytes_per_line = 4;
H A Dz8k-dis.c158 info->bytes_per_line = 6;
/openbsd-current/gnu/usr.bin/binutils-2.17/opcodes/
H A Dia64-dis.c81 if (info->bytes_per_line == 0)
82 info->bytes_per_line = 6;
85 slot_multiplier = info->bytes_per_line;
H A Dd30v-dis.c330 info->bytes_per_line = 8;
345 info->bytes_per_line = 8;
H A Ds390-dis.c120 info->bytes_per_line = 6;
H A Dtic80-dis.c314 info->bytes_per_line = 8;
H A Dxtensa-dis.c155 /* Set bytes_per_line to control the amount of whitespace between the hex
159 bytes_per_line but that makes it hard to fit 64-bit instructions on
160 an 80-column screen.) The value of bytes_per_line here is not exactly
165 info->bytes_per_line = MAX (maxsize, 4);
H A Dpdp11-dis.c197 info->bytes_per_line = 6;
H A Dsh64-dis.c531 info->bytes_per_line = 4;
H A Dtic4x-dis.c764 info->bytes_per_line = 4;
H A Dz8k-dis.c158 info->bytes_per_line = 6;
/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dbsd.py16 def memdump(src, bytes_per_line=16, address=0):
19 for i in range(0, len(src), bytes_per_line):
20 s = src[i:i+bytes_per_line]
23 print("%#08.8x: %-*s %s" % (address+i, bytes_per_line*3, hex_bytes,
/openbsd-current/sys/arch/amd64/amd64/
H A Defifb.c54 uint32_t bytes_per_line; member in struct:cb_framebuffer
242 ri->ri_stride = efifb_console.cb_table_fb.bytes_per_line;
513 efifb_console.psize = cb_fb->y_resolution * cb_fb->bytes_per_line;
/openbsd-current/gnu/usr.bin/binutils/include/
H A Ddis-asm.h148 int bytes_per_line; member in struct:disassemble_info
151 /* For example, if bytes_per_line is 8 and bytes_per_chunk is 4, the */
/openbsd-current/gnu/usr.bin/binutils-2.17/include/
H A Ddis-asm.h149 int bytes_per_line; member in struct:disassemble_info
152 /* For example, if bytes_per_line is 8 and bytes_per_chunk is 4, the */
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DDumpDataExtractor.cpp895 uint32_t bytes_per_line,
903 bytes_per_line, // Num bytes per line
894 DumpHexBytes(Stream *s, const void *src, size_t src_len, uint32_t bytes_per_line, lldb::addr_t base_addr) argument

Completed in 363 milliseconds

12