OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LINESIZE
(Results
1 - 8
of
8
) sorted by relevancy
/src/games/cribbage/
io.c
54
#define
LINESIZE
128
67
static char linebuf[
LINESIZE
];
550
if (pos >=
LINESIZE
- 1 || !(isprint(c) || c == ' '))
/src/usr.bin/fsplit/
fsplit.c
335
#define
LINESIZE
80
337
char line[
LINESIZE
], *iptr = line;
/src/usr.bin/last/
last.c
133
" [-H hostsize] [-h host] [-L
linesize
]\n"
151
int
linesize
= UT_LINESIZE;
local
192
linesize
= atoi(optarg);
193
if (
linesize
< 1)
253
wtmpx(file, namesize,
linesize
, hostsize, numeric);
255
wtmp(file, namesize,
linesize
, hostsize, numeric);
257
wtmpx(file, namesize,
linesize
, hostsize, numeric);
259
wtmp(file, namesize,
linesize
, hostsize, numeric);
378
#define
LINESIZE
UT_LINESIZE
385
#undef
LINESIZE
[
all
...]
/src/crypto/external/apache2/openssl/dist/crypto/pem/
pem_lib.c
759
/* The caller allocated
LINESIZE
+1, so this is safe. */
765
#define
LINESIZE
255
784
linebuf = PEM_MALLOC(
LINESIZE
+ 1, flags);
789
len = BIO_gets(bp, linebuf,
LINESIZE
);
813
PEM_FREE(linebuf, flags,
LINESIZE
+ 1);
848
linebuf = PEM_MALLOC(
LINESIZE
+ 1, flags);
854
len = BIO_gets(bp, linebuf,
LINESIZE
);
866
partial_line_read = len ==
LINESIZE
- 1 && linebuf[
LINESIZE
- 2] != '\n';
932
PEM_FREE(linebuf, flags,
LINESIZE
+ 1)
[
all
...]
/src/crypto/external/bsd/openssl/dist/crypto/pem/
pem_lib.c
728
/* The caller allocated
LINESIZE
+1, so this is safe. */
734
#define
LINESIZE
255
753
linebuf = pem_malloc(
LINESIZE
+ 1, flags);
760
len = BIO_gets(bp, linebuf,
LINESIZE
);
786
pem_free(linebuf, flags,
LINESIZE
+ 1);
821
linebuf = pem_malloc(
LINESIZE
+ 1, flags);
829
len = BIO_gets(bp, linebuf,
LINESIZE
);
841
partial_line_read = len ==
LINESIZE
-1 && linebuf[
LINESIZE
-2] != '\n';
908
pem_free(linebuf, flags,
LINESIZE
+ 1)
[
all
...]
/src/crypto/external/bsd/openssl.old/dist/crypto/pem/
pem_lib.c
711
/* The caller allocated
LINESIZE
+1, so this is safe. */
717
#define
LINESIZE
255
735
linebuf = pem_malloc(
LINESIZE
+ 1, flags);
742
len = BIO_gets(bp, linebuf,
LINESIZE
);
767
pem_free(linebuf, flags,
LINESIZE
+ 1);
802
linebuf = pem_malloc(
LINESIZE
+ 1, flags);
810
len = BIO_gets(bp, linebuf,
LINESIZE
);
822
partial_line_read = len ==
LINESIZE
-1 && linebuf[
LINESIZE
-2] != '\n';
889
pem_free(linebuf, flags,
LINESIZE
+ 1)
[
all
...]
/src/usr.bin/mail/
def.h
76
#define
LINESIZE
BUFSIZ /* max readable line width */
/src/external/bsd/byacc/dist/
reader.c
12
/* Note that if a line exceeds
LINESIZE
characters, the line buffer */
15
#define
LINESIZE
100
71
static size_t
linesize
; /* length of current input-line */
variable
322
linesize
= save_area.line_size;
341
save_area.line_data = TMALLOC(char,
linesize
);
343
save_area.line_size =
linesize
;
345
memcpy(save_area.line_data, line,
linesize
);
368
if (line == NULL ||
linesize
!= (
LINESIZE
+ 1))
372
linesize
= LINESIZE + 1
[
all
...]
Completed in 35 milliseconds
Indexes created Tue Mar 03 05:31:39 UTC 2026