OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxchars
(Results
1 - 3
of
3
) sorted by null
/external/expat/tests/
chardata.c
40
int
maxchars
= sizeof(storage->data) / sizeof(storage->data[0]);
local
47
if ((len + storage->count) >
maxchars
) {
48
len = (
maxchars
- storage->count);
59
int
maxchars
;
local
63
maxchars
= sizeof(storage->data) / sizeof(storage->data[0]);
68
if ((len + storage->count) >
maxchars
) {
69
len = (
maxchars
- storage->count);
/external/toybox/toys/posix/
uniq.c
13
usage: uniq [-cduiz] [-w
maxchars
] [-f fields] [-s char] [input_file [output_file]]
31
long
maxchars
;
89
if (TT.
maxchars
== 0) {
92
diff = !(toys.optflags & FLAG_i) ? strncmp(t1, t2, TT.
maxchars
)
93
: strncasecmp(t1, t2, TT.
maxchars
);
/external/toybox/generated/
globals.h
1270
long
maxchars
;
member in struct:uniq_data
Completed in 3900 milliseconds