Lines Matching defs:in
8 * Redistribution and use in source and binary forms, with or without
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
215 # if O_LARGEFILE == 0 /* biarch platforms in 64-bit mode */
394 * In kernel, off_t is always the same as (kernel's) long
445 * hi,lo are "unsigned longs" and combined exactly this way in kernel:
879 * <linux/include/asm-x86_64/ia32.h> is not in the public includes set.
1050 newbuf->st_blksize = 0; /* not supported in old_stat */
1051 newbuf->st_blocks = 0; /* not supported in old_stat */
1744 * neither includes NUL in the returned count,
2032 /* Not much point in printing this out, it is always 1. */
2057 /* Beware of insanely large or negative values in tcp->u_rval */
2270 unsigned char *in = &buf[3 * size];
2273 if (in[i] >= ' ' && in[i] <= 0x7e)
2274 *out++ = in[i];
2279 *out++ = tohex(in[i] / 16);
2280 *out++ = tohex(in[i] % 16);
2284 if (i > 0 && in[i - 1] == '\0')