in 186 compat/common/compat_util.c emul_flags_translate(tab, in, leftover)
in 188 compat/common/compat_util.c unsigned long in;
in 194 compat/common/compat_util.c if ((in & tab->omask) == tab->oval) {
in 195 compat/common/compat_util.c in &= ~tab->omask;
in 200 compat/common/compat_util.c *leftover = in;
in 55 compat/common/compat_util.h unsigned long in, unsigned long *leftover);
in 1153 compat/linux/linux_misc.c SCARG(&bsa, in) = readfds;
in 139 compat/osf1/osf1_generic.c SCARG(&a, in) = SCARG(uap, in);
in 170 compat/osf1/osf1_syscallargs.h syscallarg(fd_set *) in;
in 105 compat/ultrix/ultrix_syscallargs.h syscallarg(fd_set *) in;
in 498 crypto/cryptodev.c int in, out, size, i;
in 504 crypto/cryptodev.c in = kop->crk_iparams;
in 508 crypto/cryptodev.c if (in == 3 && out == 1)
in 512 crypto/cryptodev.c if (in == 6 && out == 1)
in 516 crypto/cryptodev.c if (in == 5 && out == 2)
in 520 crypto/cryptodev.c if (in == 7 && out == 0)
in 524 crypto/cryptodev.c if (in == 3 && out == 1)
in 137 crypto/des.h void des_cfb_encrypt(unsigned char *in,unsigned char *out,int numbits,
in 146 crypto/des.h void des_ede3_cfb64_encrypt(unsigned char *in, unsigned char *out,
in 149 crypto/des.h void des_ede3_ofb64_encrypt(unsigned char *in, unsigned char *out,
in 168 crypto/des.h void des_ofb_encrypt(unsigned char *in,unsigned char *out,
in 186 crypto/des.h void des_cfb64_encrypt(unsigned char *in, unsigned char *out, long length,
in 188 crypto/des.h void des_ofb64_encrypt(unsigned char *in, unsigned char *out, long length,
in 61 crypto/ecb3_enc.c register unsigned char *in,*out;
in 64 crypto/ecb3_enc.c in=(unsigned char *)input;
in 66 crypto/ecb3_enc.c c2l(in,l0);
in 67 crypto/ecb3_enc.c c2l(in,l1);
in 62 crypto/ecb_enc.c register unsigned char *in,*out;
in 65 crypto/ecb_enc.c in=(unsigned char *)input;
in 67 crypto/ecb_enc.c c2l(in,l0); ll[0]=l0;
in 68 crypto/ecb_enc.c c2l(in,l1); ll[1]=l1;
in 148 crypto/md5.c u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
in 151 crypto/md5.c bcopy(block, in, sizeof(in));
in 154 crypto/md5.c in[a] = (u_int32_t)(
in 167 crypto/md5.c MD5STEP(F1, a, b, c, d, in[ 0] + 0xd76aa478, 7);
in 168 crypto/md5.c MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12);
in 169 crypto/md5.c MD5STEP(F1, c, d, a, b, in[ 2] + 0x242070db, 17);
in 170 crypto/md5.c MD5STEP(F1, b, c, d, a, in[ 3] + 0xc1bdceee, 22);
in 171 crypto/md5.c MD5STEP(F1, a, b, c, d, in[ 4] + 0xf57c0faf, 7);
in 172 crypto/md5.c MD5STEP(F1, d, a, b, c, in[ 5] + 0x4787c62a, 12);
in 173 crypto/md5.c MD5STEP(F1, c, d, a, b, in[ 6] + 0xa8304613, 17);
in 174 crypto/md5.c MD5STEP(F1, b, c, d, a, in[ 7] + 0xfd469501, 22);
in 175 crypto/md5.c MD5STEP(F1, a, b, c, d, in[ 8] + 0x698098d8, 7);
in 176 crypto/md5.c MD5STEP(F1, d, a, b, c, in[ 9] + 0x8b44f7af, 12);
in 177 crypto/md5.c MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
in 178 crypto/md5.c MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
in 179 crypto/md5.c MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
in 180 crypto/md5.c MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
in 181 crypto/md5.c MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
in 182 crypto/md5.c MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
in 184 crypto/md5.c MD5STEP(F2, a, b, c, d, in[ 1] + 0xf61e2562, 5);
in 185 crypto/md5.c MD5STEP(F2, d, a, b, c, in[ 6] + 0xc040b340, 9);
in 186 crypto/md5.c MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
in 187 crypto/md5.c MD5STEP(F2, b, c, d, a, in[ 0] + 0xe9b6c7aa, 20);
in 188 crypto/md5.c MD5STEP(F2, a, b, c, d, in[ 5] + 0xd62f105d, 5);
in 189 crypto/md5.c MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
in 190 crypto/md5.c MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
in 191 crypto/md5.c MD5STEP(F2, b, c, d, a, in[ 4] + 0xe7d3fbc8, 20);
in 192 crypto/md5.c MD5STEP(F2, a, b, c, d, in[ 9] + 0x21e1cde6, 5);
in 193 crypto/md5.c MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
in 194 crypto/md5.c MD5STEP(F2, c, d, a, b, in[ 3] + 0xf4d50d87, 14);
in 195 crypto/md5.c MD5STEP(F2, b, c, d, a, in[ 8] + 0x455a14ed, 20);
in 196 crypto/md5.c MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
in 197 crypto/md5.c MD5STEP(F2, d, a, b, c, in[ 2] + 0xfcefa3f8, 9);
in 198 crypto/md5.c MD5STEP(F2, c, d, a, b, in[ 7] + 0x676f02d9, 14);
in 199 crypto/md5.c MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
in 201 crypto/md5.c MD5STEP(F3, a, b, c, d, in[ 5] + 0xfffa3942, 4);
in 202 crypto/md5.c MD5STEP(F3, d, a, b, c, in[ 8] + 0x8771f681, 11);
in 203 crypto/md5.c MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
in 204 crypto/md5.c MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
in 205 crypto/md5.c MD5STEP(F3, a, b, c, d, in[ 1] + 0xa4beea44, 4);
in 206 crypto/md5.c MD5STEP(F3, d, a, b, c, in[ 4] + 0x4bdecfa9, 11);
in 207 crypto/md5.c MD5STEP(F3, c, d, a, b, in[ 7] + 0xf6bb4b60, 16);
in 208 crypto/md5.c MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
in 209 crypto/md5.c MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
in 210 crypto/md5.c MD5STEP(F3, d, a, b, c, in[ 0] + 0xeaa127fa, 11);
in 211 crypto/md5.c MD5STEP(F3, c, d, a, b, in[ 3] + 0xd4ef3085, 16);
in 212 crypto/md5.c MD5STEP(F3, b, c, d, a, in[ 6] + 0x04881d05, 23);
in 213 crypto/md5.c MD5STEP(F3, a, b, c, d, in[ 9] + 0xd9d4d039, 4);
in 214 crypto/md5.c MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
in 215 crypto/md5.c MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
in 216 crypto/md5.c MD5STEP(F3, b, c, d, a, in[2 ] + 0xc4ac5665, 23);
in 218 crypto/md5.c MD5STEP(F4, a, b, c, d, in[ 0] + 0xf4292244, 6);
in 219 crypto/md5.c MD5STEP(F4, d, a, b, c, in[7 ] + 0x432aff97, 10);
in 220 crypto/md5.c MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
in 221 crypto/md5.c MD5STEP(F4, b, c, d, a, in[5 ] + 0xfc93a039, 21);
in 222 crypto/md5.c MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
in 223 crypto/md5.c MD5STEP(F4, d, a, b, c, in[3 ] + 0x8f0ccc92, 10);
in 224 crypto/md5.c MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
in 225 crypto/md5.c MD5STEP(F4, b, c, d, a, in[1 ] + 0x85845dd1, 21);
in 226 crypto/md5.c MD5STEP(F4, a, b, c, d, in[8 ] + 0x6fa87e4f, 6);
in 227 crypto/md5.c MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
in 228 crypto/md5.c MD5STEP(F4, c, d, a, b, in[6 ] + 0xa3014314, 15);
in 229 crypto/md5.c MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
in 230 crypto/md5.c MD5STEP(F4, a, b, c, d, in[4 ] + 0xf7537e82, 6);
in 231 crypto/md5.c MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
in 232 crypto/md5.c MD5STEP(F4, c, d, a, b, in[2 ] + 0x2ad7d2bb, 15);
in 233 crypto/md5.c MD5STEP(F4, b, c, d, a, in[9 ] + 0xeb86d391, 21);
in 156 crypto/set_key.c register unsigned char *in;
in 170 crypto/set_key.c in=(unsigned char *)key;
in 172 crypto/set_key.c c2l(in,c);
in 173 crypto/set_key.c c2l(in,d);
in 180 dev/i2c/pca9554.c u_int8_t cmd, in, out, bit;
in 187 dev/i2c/pca9554.c sc->sc_addr, &cmd, sizeof cmd, &in, sizeof in, 0))
in 198 dev/i2c/pca9554.c sc->sc_sensor[i].value = (in & bit) ? 1 : 0;
in 212 dev/i2c/pca9554.c u_int8_t cmd, in;
in 216 dev/i2c/pca9554.c sc->sc_addr, &cmd, sizeof cmd, &in, sizeof in, 0))
in 218 dev/i2c/pca9554.c return ((in ^ sc->sc_polarity) & (1 << pin)) ? 1 : 0;
in 1514 dev/ic/aic6360.c int in = 0;
in 1544 dev/ic/aic6360.c in += DINAMOUNT;
in 1562 dev/ic/aic6360.c in += xfer;
in 1601 dev/ic/aic6360.c if (in == 0) {
in 1621 dev/ic/aic6360.c return in;
in 163 dev/ic/ispvar.h #define ISP_QFREE(in, out, qlen) \
in 164 dev/ic/ispvar.h ((in == out)? (qlen - 1) : ((in > out)? \
in 165 dev/ic/ispvar.h ((qlen - 1) - (in - out)) : (out - in - 1)))
in 566 dev/ic/sti.c struct sti_unpmvin in;
in 627 dev/ic/sti.c a.in.fg_colour = STI_COLOUR_WHITE;
in 628 dev/ic/sti.c a.in.bg_colour = STI_COLOUR_BLACK;
in 629 dev/ic/sti.c a.in.font_addr = scr->scr_romfont;
in 634 dev/ic/sti.c a.in.x = ((uc - fp->first) / scr->scr_fontmaxcol) *
in 636 dev/ic/sti.c a.in.y = ((uc - fp->first) % scr->scr_fontmaxcol) *
in 638 dev/ic/sti.c a.in.index = uc;
in 640 dev/ic/sti.c (*scr->unpmv)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
in 665 dev/ic/sti.c struct sti_initin in;
in 675 dev/ic/sti.c a.in.text_planes = 1;
in 676 dev/ic/sti.c a.in.ext_in = &a.ein;
in 679 dev/ic/sti.c scr->init, a.flags.flags, &a.in, &a.out, &scr->scr_cfg);
in 681 dev/ic/sti.c (*scr->init)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
in 682 dev/ic/sti.c if (a.out.text_planes != a.in.text_planes)
in 692 dev/ic/sti.c struct sti_inqconfin in;
in 698 dev/ic/sti.c (*scr->inqconf)(&a.flags, &a.in, out, &scr->scr_cfg);
in 711 dev/ic/sti.c struct sti_blkmvin in;
in 721 dev/ic/sti.c a.in.bg_colour = STI_COLOUR_BLACK;
in 725 dev/ic/sti.c a.in.fg_colour = STI_COLOUR_WHITE;
in 726 dev/ic/sti.c a.in.bg_colour = STI_COLOUR_BLACK;
in 730 dev/ic/sti.c a.in.fg_colour = STI_COLOUR_BLACK;
in 731 dev/ic/sti.c a.in.bg_colour = STI_COLOUR_WHITE;
in 734 dev/ic/sti.c a.in.srcx = x1;
in 735 dev/ic/sti.c a.in.srcy = y1;
in 736 dev/ic/sti.c a.in.dstx = x2;
in 737 dev/ic/sti.c a.in.dsty = y2;
in 738 dev/ic/sti.c a.in.height = h;
in 739 dev/ic/sti.c a.in.width = w;
in 741 dev/ic/sti.c (*scr->blkmv)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
in 753 dev/ic/sti.c struct sti_scmentin in;
in 760 dev/ic/sti.c a.in.entry = i;
in 761 dev/ic/sti.c a.in.value = (r << 16) | (g << 8) | b;
in 763 dev/ic/sti.c (*scr->scment)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
in 1030 dev/ic/sti.c struct sti_unpmvin in;
in 1038 dev/ic/sti.c a.in.fg_colour = STI_COLOUR_WHITE;
in 1039 dev/ic/sti.c a.in.bg_colour = STI_COLOUR_BLACK;
in 1040 dev/ic/sti.c a.in.x = col * fp->width;
in 1041 dev/ic/sti.c a.in.y = row * fp->height;
in 1042 dev/ic/sti.c a.in.font_addr = scr->scr_romfont;
in 1043 dev/ic/sti.c a.in.index = uc;
in 1045 dev/ic/sti.c (*scr->unpmv)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
in 1052 dev/ic/sti.c struct sti_blkmvin in;
in 1060 dev/ic/sti.c a.in.fg_colour = STI_COLOUR_WHITE;
in 1061 dev/ic/sti.c a.in.bg_colour = STI_COLOUR_BLACK;
in 1063 dev/ic/sti.c a.in.srcx = ((uc - fp->first) / scr->scr_fontmaxcol) *
in 1065 dev/ic/sti.c a.in.srcy = ((uc - fp->first) % scr->scr_fontmaxcol) *
in 1067 dev/ic/sti.c a.in.dstx = col * fp->width;
in 1068 dev/ic/sti.c a.in.dsty = row * fp->height;
in 1069 dev/ic/sti.c a.in.height = fp->height;
in 1070 dev/ic/sti.c a.in.width = fp->width;
in 1072 dev/ic/sti.c (*scr->blkmv)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
in 522 dev/sbus/isp_sbus.c int in = (xs->flags & SCSI_DATA_IN) != 0;
in 543 dev/sbus/isp_sbus.c in? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
in 545 dev/sbus/isp_sbus.c if (in) {
in 53 dev/sequencervar.h u_int in; /* input index in buf */
in 57 dev/sequencervar.h #define SEQ_QINIT(q) ((q)->in = (q)->out = (q)->count = 0)
in 60 dev/sequencervar.h #define SEQ_QPUT(q, e) ((q)->buf[(q)->in++] = (e), (q)->in %= SEQ_MAXQ, (q)->count++)
in 781 dev/usb/umidi.c jack->u.in.intr = NULL;
in 880 dev/usb/umidi.c struct umidi_jack *out, *in;
in 890 dev/usb/umidi.c in = (i<sc->sc_in_num_jacks) ? &sc->sc_in_jacks[i]:NULL;
in 891 dev/usb/umidi.c err = bind_jacks_to_mididev(sc, out, in, &sc->sc_mididevs[i]);
in 923 dev/usb/umidi.c jack->u.in.intr = intr;
in 1281 dev/usb/umidi.c jack->binded && jack->opened && jack->u.in.intr) {
in 1284 dev/usb/umidi.c (*jack->u.in.intr)(jack->arg, buf[i+1]);
in 87 dev/usb/umidivar.h } in;
in 232 dev/wscons/wsemul_dumb.c wsemul_dumb_translate(cookie, in, out)
in 234 dev/wscons/wsemul_dumb.c keysym_t in;
in 772 dev/wscons/wsemul_sun.c wsemul_sun_translate(cookie, in, out)
in 774 dev/wscons/wsemul_sun.c keysym_t in;
in 779 dev/wscons/wsemul_sun.c if (KS_GROUP(in) == KS_GROUP_Keypad && (in & 0x80) == 0) {
in 780 dev/wscons/wsemul_sun.c c = in & 0xff; /* turn into ASCII */
in 785 dev/wscons/wsemul_sun.c if (in >= KS_f1 && in <= KS_f12) {
in 786 dev/wscons/wsemul_sun.c *out = sun_fkeys[in - KS_f1];
in 789 dev/wscons/wsemul_sun.c if (in >= KS_F1 && in <= KS_F12) {
in 790 dev/wscons/wsemul_sun.c *out = sun_fkeys[in - KS_F1];
in 793 dev/wscons/wsemul_sun.c if (in >= KS_KP_F1 && in <= KS_KP_F4) {
in 794 dev/wscons/wsemul_sun.c *out = sun_fkeys[in - KS_KP_F1];
in 797 dev/wscons/wsemul_sun.c if (in >= KS_Help && in <= KS_Cut && sun_lkeys[in - KS_Help] != NULL) {
in 798 dev/wscons/wsemul_sun.c *out = sun_lkeys[in - KS_Help];
in 802 dev/wscons/wsemul_sun.c switch (in) {
in 82 dev/wscons/wsemul_vt100_keys.c wsemul_vt100_translate(cookie, in, out)
in 84 dev/wscons/wsemul_vt100_keys.c keysym_t in;
in 90 dev/wscons/wsemul_vt100_keys.c if (in >= KS_f1 && in <= KS_f20) {
in 91 dev/wscons/wsemul_vt100_keys.c *out = vt100_fkeys[in - KS_f1];
in 94 dev/wscons/wsemul_vt100_keys.c if (in >= KS_F1 && in <= KS_F20) {
in 95 dev/wscons/wsemul_vt100_keys.c *out = vt100_fkeys[in - KS_F1];
in 98 dev/wscons/wsemul_vt100_keys.c if (in >= KS_KP_F1 && in <= KS_KP_F4) {
in 99 dev/wscons/wsemul_vt100_keys.c *out = vt100_pfkeys[in - KS_KP_F1];
in 103 dev/wscons/wsemul_vt100_keys.c if (in >= KS_KP_0 && in <= KS_KP_9) {
in 104 dev/wscons/wsemul_vt100_keys.c *out = vt100_numpad[in - KS_KP_0];
in 107 dev/wscons/wsemul_vt100_keys.c switch (in) {
in 134 dev/wscons/wsemul_vt100_keys.c if (!(in & 0x80)) {
in 135 dev/wscons/wsemul_vt100_keys.c c = in & 0xff; /* turn into ASCII */
in 140 dev/wscons/wsemul_vt100_keys.c switch (in) {
in 664 kern/sys_generic.c getbits(in, 0);
in 724 kern/sys_generic.c putbits(in, 0);
in 182 kern/sys_pipe.c cpipe->pipe_buffer.in = 0;
in 305 kern/sys_pipe.c rpipe->pipe_buffer.in = 0;
in 482 kern/sys_pipe.c wpipe->pipe_buffer.in;
in 488 kern/sys_pipe.c error = uiomove(&wpipe->pipe_buffer.buffer[wpipe->pipe_buffer.in],
in 498 kern/sys_pipe.c if (wpipe->pipe_buffer.in + segsize !=
in 507 kern/sys_pipe.c wpipe->pipe_buffer.in += size;
in 508 kern/sys_pipe.c if (wpipe->pipe_buffer.in >=
in 511 kern/sys_pipe.c if (wpipe->pipe_buffer.in != size - segsize + wpipe->pipe_buffer.size)
in 514 kern/sys_pipe.c wpipe->pipe_buffer.in = size - segsize;
in 152 lib/libz/infback.c have = in(in_desc, &next); \
in 241 lib/libz/infback.c int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc)
in 243 lib/libz/infback.c in_func in;
in 73 lib/libz/inffast.c unsigned char FAR *in; /* local strm->next_in */
in 100 lib/libz/inffast.c in = strm->next_in - OFF;
in 101 lib/libz/inffast.c last = in + (strm->avail_in - 5);
in 123 lib/libz/inffast.c hold += (unsigned long)(PUP(in)) << bits;
in 125 lib/libz/inffast.c hold += (unsigned long)(PUP(in)) << bits;
in 145 lib/libz/inffast.c hold += (unsigned long)(PUP(in)) << bits;
in 154 lib/libz/inffast.c hold += (unsigned long)(PUP(in)) << bits;
in 156 lib/libz/inffast.c hold += (unsigned long)(PUP(in)) << bits;
in 169 lib/libz/inffast.c hold += (unsigned long)(PUP(in)) << bits;
in 172 lib/libz/inffast.c hold += (unsigned long)(PUP(in)) << bits;
in 298 lib/libz/inffast.c } while (in < last && out < end);
in 302 lib/libz/inffast.c in -= len;
in 307 lib/libz/inffast.c strm->next_in = in + OFF;
in 309 lib/libz/inffast.c strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
in 565 lib/libz/inflate.c unsigned in, out; /* save starting available input and output */
in 588 lib/libz/inflate.c in = have;
in 1222 lib/libz/inflate.c in -= strm->avail_in;
in 1224 lib/libz/inflate.c strm->total_in += in;
in 1232 lib/libz/inflate.c if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
in 1348 lib/libz/inflate.c unsigned long in, out; /* temporary to save total_in and total_out */
in 1380 lib/libz/inflate.c in = strm->total_in; out = strm->total_out;
in 1382 lib/libz/inflate.c strm->total_in = in; strm->total_out = out;
in 882 lib/libz/zlib.h in_func in, void FAR *in_desc,
in 488 net/rtsock.c rt_setmetrics(u_long which, struct rt_metrics *in, struct rt_kmetrics *out)
in 491 net/rtsock.c out->rmx_mtu = in->rmx_mtu;
in 493 net/rtsock.c out->rmx_expire = in->rmx_expire;
in 497 net/rtsock.c rt_getmetrics(struct rt_kmetrics *in, struct rt_metrics *out)
in 500 net/rtsock.c out->rmx_locks = in->rmx_locks;
in 501 net/rtsock.c out->rmx_mtu = in->rmx_mtu;
in 502 net/rtsock.c out->rmx_expire = in->rmx_expire;
in 503 net/rtsock.c out->rmx_pksent = in->rmx_pksent;
in 987 netinet/if_ether.c revarpwhoami(in, ifp)
in 988 netinet/if_ether.c struct in_addr *in;
in 992 netinet/if_ether.c return (revarpwhoarewe(ifp, &server, in));
in 116 netinet/in.c in_localaddr(in)
in 117 netinet/in.c struct in_addr in;
in 123 netinet/in.c if ((in.s_addr & ia->ia_netmask) == ia->ia_net)
in 127 netinet/in.c if ((in.s_addr & ia->ia_subnetmask) == ia->ia_subnet)
in 139 netinet/in.c in_canforward(in)
in 140 netinet/in.c struct in_addr in;
in 144 netinet/in.c if (IN_EXPERIMENTAL(in.s_addr) || IN_MULTICAST(in.s_addr))
in 146 netinet/in.c if (IN_CLASSA(in.s_addr)) {
in 147 netinet/in.c net = in.s_addr & IN_CLASSA_NET;
in 893 netinet/in.c in_broadcast(in, ifp)
in 894 netinet/in.c struct in_addr in;
in 900 netinet/in.c if (in.s_addr == INADDR_BROADCAST ||
in 901 netinet/in.c in.s_addr == INADDR_ANY)
in 923 netinet/in.c in.s_addr != ia->ia_addr.sin_addr.s_addr &&
in 924 netinet/in.c (in.s_addr == ia->ia_broadaddr.sin_addr.s_addr ||
in 925 netinet/in.c in.s_addr == ia->ia_netbroadcast.s_addr ||
in 930 netinet/in.c (in.s_addr == ia->ia_subnet ||
in 931 netinet/in.c in.s_addr == ia->ia_net))))
in 245 netinet/ip_carp.c struct in_addr last, cur, in;
in 283 netinet/ip_carp.c in.s_addr = ifatoia(ifa)->ia_addr.sin_addr.s_addr;
in 285 netinet/ip_carp.c ntohl(in.s_addr) > ntohl(last.s_addr) &&
in 286 netinet/ip_carp.c ntohl(in.s_addr) < ntohl(cur.s_addr)) {
in 287 netinet/ip_carp.c cur.s_addr = in.s_addr;
in 1206 netinet/ip_carp.c in_addr_t in;
in 1218 netinet/ip_carp.c in = ifatoia(ifa)->ia_addr.sin_addr.s_addr;
in 1219 netinet/ip_carp.c arprequest(sc->sc_carpdev, &in, &in, sc->sc_ac.ac_enaddr);
in 52 sys/pipe.h u_int in; /* in pointer */
in 406 sys/syscallargs.h syscallarg(fd_set *) in;
in 191 xfs/xfs_pioctl.h caddr_t in, out;
in 480 xfs/xfs_syscalls-common.c (struct xfs_fhandle_t *)vice_ioctl->in,
in 536 xfs/xfs_syscalls-common.c error = copyin(vice_ioctl->in, msg->msg, vice_ioctl->in_size);
in 596 xfs/xfs_syscalls-common.c error = copyin (vice_ioctl->in,