Lines Matching +full:128 +full:- +full:character
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 1995-2022 Wolfram Schneider <wosch@FreeBSD.org>
46 * offset differential count byte followed by a partially bigram-
47 * encoded ascii residue. A bigram is a two-character sequence,
48 * the first 128 most common of which are encoded in one byte.
60 * 0-28 likeliest differential counts + offset to make nonnegative
61 * 30 switch code for out-of-range count to follow in next word
63 * 128-255 bigram codes (128 most common, as determined by 'updatedb')
64 * 32-127 single character (printable) ascii residue (ie, literal)
66 * The locate database store any character except newline ('\n')
67 * and NUL ('\0'). The 8-bit character support don't wast extra
76 * 8-bit file names characters:
109 while ((ch = getopt(argc, argv, "")) != -1) in main()
114 argc -= optind; in main()
136 big[i][j] = -1; in main()
163 count = cp - path; in main()
164 diffcount = count - oldcount + OFFSET; in main()
177 if ((code = BGINDEX(cp)) != -1) { in main()
202 /* normal character */ in main()
220 /* Non-zero status if there were errors */ in main()