Searched refs:ip (Results 1 - 25 of 1212) sorted by relevance

1234567891011>>

/freebsd-current/sbin/ipf/libipf/
H A Dprintiphdr.c13 printiphdr(ip_t *ip) argument
15 PRINTF("ip(v=%d,hl=%d,len=%d,tos=%#x,off=%#x,sum=%#x,src=%#x,dst=%#x",
16 ip->ip_v, ip->ip_hl, ntohs(ip->ip_len), ip->ip_tos,
17 ntohs(ip->ip_off), ntohs(ip->ip_sum), ntohl(ip->ip_src.s_addr),
18 ntohl(ip
[all...]
H A Dcount4bits.c19 count4bits(u_int ip) argument
24 ip = ipn = ntohl(ip);
36 if (ipn == ip)
/freebsd-current/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dfile.h32 #define spl_inode_lock(ip) inode_lock(ip)
33 #define spl_inode_unlock(ip) inode_unlock(ip)
34 #define spl_inode_lock_shared(ip) inode_lock_shared(ip)
35 #define spl_inode_unlock_shared(ip) inode_unlock_shared(ip)
36 #define spl_inode_trylock(ip) inode_trylock(ip)
[all...]
/freebsd-current/stand/uboot/arch/arm/
H A Dstart.S40 mrc p15, 0, ip, c1, c0, 0
41 orr ip, ip, #(CPU_CONTROL_UNAL_ENABLE)
42 orr ip, ip, #(CPU_CONTROL_AFLT_ENABLE)
43 mcr p15, 0, ip, c1, c0, 0
56 adr ip, .here_off /* .here_off is a symbol whose value */
57 ldr r0, [ip] /* is its own offset in the text seg. */
58 sub r0, ip, r0 /* Get its pc-relative address and */
68 ldr ip,
[all...]
/freebsd-current/contrib/unbound/contrib/
H A Dbuild-unbound-localzone-from-hosts.pl26 my $ip;
31 $ip = $entry;
37 if ( ($ip ne '127.0.0.1' and $ip ne '::1') or $entry =~ 'localhost' ) {
38 if ( ! defined $ptrhash{$ip} ) {
39 $ptrhash{$ip} = $entry;
40 print ZONE "local-data-ptr: \"$ip $entry\"\n";
48 if ( $ip =~ ':' ) {
52 print ZONE "local-data: \"$entry ${a} $ip\"\n";
/freebsd-current/contrib/libxo/tests/core/
H A Dtest_01.c44 struct item *ip; local
128 for (ip = list; ip->i_title; ip++) {
135 ip->i_sku_base, ip->i_sku_num,
136 ip->i_title, ip->i_sold, ip->i_instock, ip
[all...]
H A Dtest_10.c46 struct item *ip; local
122 for (ip = list; ip->i_title; ip++) {
131 ip->i_sku_base, ip->i_sku_num,
132 ip->i_title, ip->i_sold,
133 (ip->i_instock < 5) ? "inverse" : "normal", ip
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dswitch16.S33 ldrh ip, [lr, #-1] // get first 16-bit word in table
34 cmp r0, ip // compare with index
36 add ip, lr, ip, lsl #1 // compute address of last element in table
39 ldrshhs r0, [ip, #1] // load 16-bit element if r0 out of range
40 add ip, lr, r0, lsl #1 // compute label = lr + element*2
41 bx ip // jump to computed label
H A Dswitch32.S33 ldr ip, [lr, #-1] // get first 32-bit word in table
34 cmp r0, ip // compare with index
36 add ip, lr, ip, lsl #2 // compute address of last element in table
39 ldrhs r0, [ip, #3] // load 32-bit element if r0 out of range
40 add ip, lr, r0 // compute label = lr + element
41 bx ip // jump to computed label
H A Dswitchu8.S33 ldrb ip, [lr, #-1] // get first byte in table
34 cmp r0, ip // compare with index
37 ldrbhs r0, [lr, ip] // if out of range, use last entry in table
38 add ip, lr, r0, lsl #1 // compute label = lr + element*2
39 bx ip // jump to computed label
H A Dswitch8.S33 ldrb ip, [lr, #-1] // get first byte in table
34 cmp r0, ip // signed compare with index
37 ldrsbhs r0, [lr, ip] // if out of range, use last entry in table
38 add ip, lr, r0, lsl #1 // compute label = lr + element*2
39 bx ip // jump to computed label
/freebsd-current/bin/stty/
H A Dkey.c97 ksearch(char ***argvp, struct info *ip) argument
104 ip->off = 1;
107 ip->off = 0;
113 if (!(kp->flags & F_OFFOK) && ip->off) {
117 if (kp->flags & F_NEEDARG && !(ip->arg = *++*argvp)) {
121 kp->f(ip);
126 f_all(struct info *ip) argument
128 print(&ip->t, &ip->win, ip
132 f_cbreak(struct info *ip) argument
147 f_columns(struct info *ip) argument
155 f_dec(struct info *ip) argument
168 f_ek(struct info *ip) argument
177 f_everything(struct info *ip) argument
184 f_extproc(struct info *ip) argument
197 f_ispeed(struct info *ip) argument
205 f_nl(struct info *ip) argument
219 f_ospeed(struct info *ip) argument
227 f_raw(struct info *ip) argument
241 f_rows(struct info *ip) argument
249 f_sane(struct info *ip) argument
264 f_size(struct info *ip) argument
271 f_speed(struct info *ip) argument
278 f_tty(struct info *ip) argument
[all...]
/freebsd-current/sys/ufs/ufs/
H A Dinode.h172 #define UFS_INODE_SET_MODE(ip, mode) do { \
173 struct inode *_ip = (ip); \
180 #define UFS_INODE_SET_FLAG(ip, flags) do { \
181 struct inode *_ip = (ip); \
190 #define UFS_INODE_SET_FLAG_SHARED(ip, flags) do { \
191 struct inode *_ip = (ip); \
210 #define ITOUMP(ip) ((ip)->i_ump)
211 #define ITODEV(ip) (ITOUMP(ip)
219 I_IS_UFS1(const struct inode *ip) argument
226 I_IS_UFS2(const struct inode *ip) argument
[all...]
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_inttab.c38 dt_inttab_t *ip; local
42 if ((ip = dt_zalloc(dtp, sizeof (dt_inttab_t))) == NULL ||
43 (ip->int_hash = dt_zalloc(dtp, sizeof (void *) * len)) == NULL) {
44 dt_free(dtp, ip);
48 ip->int_hdl = dtp;
49 ip->int_hashlen = len;
51 return (ip);
55 dt_inttab_destroy(dt_inttab_t *ip) argument
59 for (hp = ip->int_head; hp != NULL; hp = np) {
61 dt_free(ip
69 dt_inttab_insert(dt_inttab_t *ip, uint64_t value, uint_t flags) argument
103 dt_inttab_size(const dt_inttab_t *ip) argument
109 dt_inttab_write(const dt_inttab_t *ip, uint64_t *dst) argument
[all...]
/freebsd-current/contrib/processor-trace/libipt/src/
H A Dpt_last_ip.c39 last_ip->ip = 0ull;
44 int pt_last_ip_query(uint64_t *ip, const struct pt_last_ip *last_ip) argument
50 if (ip)
51 *ip = 0ull;
56 if (ip)
57 *ip = 0ull;
61 if (ip)
62 *ip = last_ip->ip;
93 last_ip->ip
[all...]
/freebsd-current/usr.bin/lam/
H A Dlam.c73 struct openfile *ip; local
93 for (ip = input; ip->fp != NULL; ip++)
94 linep = gatherline(ip);
98 fputs(ip->sepstring, stdout);
107 struct openfile *ip = input; local
121 ip->fp = stdin;
122 else if ((ip->fp = fopen(p, "r")) == NULL) {
125 if (caph_rights_limit(fileno(ip
185 pad(struct openfile *ip) argument
199 gatherline(struct openfile *ip) argument
[all...]
/freebsd-current/sbin/natd/
H A Dicmp.c29 #include <netinet/ip.h>
36 int SendNeedFragIcmp (int sock, struct ip* failedDgram, int mtu)
39 struct ip* ip; local
61 ip = (struct ip*) icmpBuf;
62 icmp = (struct icmp*) (icmpBuf + sizeof (struct ip));
91 memcpy (ip, failedDgram, sizeof (struct ip));
93 ip
[all...]
/freebsd-current/usr.bin/kdump/
H A Dlinux.c69 register_t *ip, *first; local
73 ip = first = &ktr->ktr_args[0];
99 print_integer_arg_valid(sysdecode_atfd, *ip);
101 ip++;
110 print_number(ip, narg, c);
112 print_mask_arg(sysdecode_access_mode, *ip);
113 ip++;
120 print_number(ip, narg, c);
122 decode_filemode(*ip);
123 ip
292 register_t *ip, *first; local
[all...]
/freebsd-current/sys/dev/iscsi/
H A Dicl_wrappers.h53 icl_pdu_data_segment_length(const struct icl_pdu *ip) argument
56 return (ICL_CONN_PDU_DATA_SEGMENT_LENGTH(ip->ip_conn, ip));
60 icl_pdu_append_bio(struct icl_pdu *ip, struct bio *bp, size_t offset, argument
64 return (ICL_CONN_PDU_APPEND_BIO(ip->ip_conn, ip, bp, offset, len,
69 icl_pdu_append_data(struct icl_pdu *ip, const void *addr, size_t len, int flags) argument
72 return (ICL_CONN_PDU_APPEND_DATA(ip->ip_conn, ip, addr, len, flags));
76 icl_pdu_get_bio(struct icl_pdu *ip, size_ argument
84 icl_pdu_get_data(struct icl_pdu *ip, size_t off, void *addr, size_t len) argument
91 icl_pdu_queue(struct icl_pdu *ip) argument
98 icl_pdu_queue_cb(struct icl_pdu *ip, icl_pdu_cb cb) argument
105 icl_pdu_free(struct icl_pdu *ip) argument
133 icl_conn_task_setup(struct icl_conn *ic, struct icl_pdu *ip, struct ccb_scsiio *csio, uint32_t *task_tagp, void **prvp) argument
148 icl_conn_transfer_setup(struct icl_conn *ic, struct icl_pdu *ip, union ctl_io *io, uint32_t *transfer_tagp, void **prvp) argument
[all...]
/freebsd-current/sbin/hastd/
H A Dlzf.c112 const u8 *ip = (const u8 *)in_data; local
114 const u8 *in_end = ip + in_len;
140 *hslot++ = ip;
146 hval = FRST (ip);
147 while (ip < in_end - 2)
149 hval = NEXT (hval, ip);
151 ref = *hslot; *hslot = ip;
155 && ref < ip /* the next test will actually take care of this, but this is faster */
157 && (off = ip - ref - 1) < MAX_OFF
158 && ip
317 u8 const *ip = (const u8 *)in_data; local
[all...]
/freebsd-current/sys/fs/ext2fs/
H A Dext2_inode_cnv.c145 ext2_ei2i(struct ext2fs_dinode *ei, struct inode *ip) argument
147 struct m_ext2fs *fs = ip->i_e2fs;
152 if ((ip->i_number < EXT2_FIRST_INO(fs) && ip->i_number != EXT2_ROOTINO) ||
153 (ip->i_number < EXT2_ROOTINO) ||
154 (ip->i_number > le32toh(fs->e2fs->e2fs_icount))) {
165 ip->i_nlink = le16toh(ei->e2di_nlink);
166 ip->i_mode = ip->i_nlink ? le16toh(ei->e2di_mode) : 0;
167 if (ip
254 ext2_i2ei(struct inode *ip, struct ext2fs_dinode *ei) argument
[all...]
/freebsd-current/sbin/ipf/ipsend/
H A Diptests.c64 #include <netinet/ip.h>
94 ip_test1(char *dev, int mtu, ip_t *ip, struct in_addr gwip, int ptest) argument
104 IP_HL_A(ip, sizeof(*ip) >> 2);
105 IP_V_A(ip, IPVERSION);
106 ip->ip_tos = 0;
107 ip->ip_off = 0;
108 ip->ip_ttl = 60;
109 ip->ip_p = IPPROTO_UDP;
110 ip
537 ip_test3(char *dev, int mtu, ip_t *ip, struct in_addr gwip, int ptest) argument
734 ip_test4(char *dev, int mtu, ip_t *ip, struct in_addr gwip, int ptest) argument
895 ip_test5(char *dev, int mtu, ip_t *ip, struct in_addr gwip, int ptest) argument
1239 ip_test6(char *dev, int mtu, ip_t *ip, struct in_addr gwip, int ptest) argument
1317 ip_test7(char *dev, int mtu, ip_t *ip, struct in_addr gwip, int ptest) argument
[all...]
/freebsd-current/lib/libc/arm/string/
H A Dmemset.S94 mov ip, r0
98 ands r2, ip, #0x03 /* Get the bottom two bits */
106 tst ip, #0x04 /* Quad-align for armv5e */
112 strne r3, [ip], #0x04
123 strdge r2, [ip], #0x08
124 strdge r2, [ip], #0x08
125 strdge r2, [ip], #0x08
126 strdge r2, [ip], #0x08
128 strdge r2, [ip], #0x08
129 strdge r2, [ip], #
[all...]
/freebsd-current/lib/csu/arm/
H A Dcrti.S7 mov ip, sp
8 stmdb sp!, {fp, ip, lr, pc}
9 sub fp, ip, #4
16 mov ip, sp
17 stmdb sp!, {fp, ip, lr, pc}
18 sub fp, ip, #4
/freebsd-current/sys/cddl/boot/zfs/
H A Dfletcher.c30 const uint64_t *ip = buf; local
31 const uint64_t *ipend = ip + (size / sizeof (uint64_t));
34 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) {
35 a0 += ip[0];
36 a1 += ip[1];
48 const uint64_t *ip = buf; local
49 const uint64_t *ipend = ip + (size / sizeof (uint64_t));
52 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip
66 const uint32_t *ip = buf; local
84 const uint32_t *ip = buf; local
[all...]

Completed in 219 milliseconds

1234567891011>>