Searched refs:line_size (Results 1 - 12 of 12) sorted by relevance

/haiku-fatelf/src/bin/coreutils/lib/
H A Dgetusershell.c73 static size_t line_size = 0; variable
103 while (readname (&line, &line_size, shellstream))
/haiku-fatelf/src/bin/bc/bc/
H A Dmain.c213 line_size = atoi (env_value);
214 if (line_size < 2)
215 line_size = 70;
218 line_size = 70;
H A Dglobal.h135 EXTERN int line_size; variable
H A Dutil.c323 if (out_col == line_size-1)
352 if (out_col == line_size-1)
/haiku-fatelf/src/bin/gdb/readline/
H A Ddisplay.c155 static int line_size = 1024; variable
348 if (line_size < minsize)
349 line_size = minsize;
350 visible_line = (char *)xmalloc (line_size);
351 invisible_line = (char *)xmalloc (line_size);
353 else if (line_size < minsize) /* ensure it can hold MINSIZE chars */
355 line_size *= 2;
356 if (line_size < minsize)
357 line_size = minsize;
358 visible_line = (char *)xrealloc (visible_line, line_size);
[all...]
/haiku-fatelf/src/bin/bash/lib/readline/
H A Ddisplay.c185 static int line_size = 1024; variable
451 if (line_size < minsize)
452 line_size = minsize;
453 visible_line = (char *)xmalloc (line_size);
454 invisible_line = (char *)xmalloc (line_size);
456 else if (line_size < minsize) /* ensure it can hold MINSIZE chars */
458 line_size *= 2;
459 if (line_size < minsize)
460 line_size = minsize;
461 visible_line = (char *)xrealloc (visible_line, line_size);
[all...]
/haiku-fatelf/src/bin/gdb/gdb/cli/
H A Dcli-decode.c853 static int line_size;
858 line_size = 80;
859 line_buffer = (char *) xmalloc (line_size);
865 if (p - str > line_size - 1)
867 line_size = p - str + 1;
869 line_buffer = (char *) xmalloc (line_size);
850 static int line_size; local
/haiku-fatelf/src/add-ons/kernel/bus_managers/pci/arch/m68k/atari/
H A Dpci_atari.cpp136 O(PCI_line_size, line_size, 1);
/haiku-fatelf/src/add-ons/kernel/bus_managers/pci/
H A Dpci_info.cpp221 TRACE(("PCI: line_size %02x, latency %02x, header_type %02x, BIST %02x\n",
222 info->line_size, info->latency, info->header_type, info->bist));
H A Dpci.cpp1238 dev->info.line_size = ReadConfig(dev->domain, dev->bus, dev->device,
/haiku-fatelf/headers/os/drivers/
H A DPCI.h40 uchar line_size; /* cache line size in 32 bit words */ member in struct:pci_info
/haiku-fatelf/src/bin/gdb/gdb/
H A Ddwarf2read.c153 unsigned int line_size; member in struct:dwarf2_per_objfile
1119 dwarf2_per_objfile->line_size = bfd_get_section_size (sectp);
6277 if (offset + 4 >= dwarf2_per_objfile->line_size)
6294 + dwarf2_per_objfile->line_size))
6351 + dwarf2_per_objfile->line_size))

Completed in 141 milliseconds