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

1234567891011>>

/freebsd-9.3-release/sys/boot/arm/uboot/
H A Dstart.S38 ldr ip, =uboot_address
39 str sp, [ip]
42 ldr ip, =saved_regs
43 str r8, [ip, #0]
53 ldr ip, =saved_regs
54 str lr, [ip, #4]
56 ldr ip, =saved_regs
57 str r8, [ip, #8]
60 ldr ip, =saved_regs
61 ldr r8, [ip, #
[all...]
/freebsd-9.3-release/contrib/compiler-rt/lib/arm/
H A Dswitch8.S34 ldrb ip, [lr, #-1] // get first byte in table
35 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
H A Dswitchu8.S34 ldrb ip, [lr, #-1] // get first byte in table
35 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 Dswitch16.S34 ldrh ip, [lr, #-1] // get first 16-bit word in table
35 cmp r0, ip // compare with index
38 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.S34 ldr ip, [lr, #-1] // get first 32-bit word in table
35 cmp r0, ip // compare with index
38 add ip, lr, ip, lsl #2 // compute address of last element in table
39 ldrcs 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
/freebsd-9.3-release/bin/stty/
H A Dkey.c106 ksearch(char ***argvp, struct info *ip) argument
113 ip->off = 1;
116 ip->off = 0;
122 if (!(kp->flags & F_OFFOK) && ip->off) {
126 if (kp->flags & F_NEEDARG && !(ip->arg = *++*argvp)) {
130 kp->f(ip);
135 f_all(struct info *ip) argument
137 print(&ip->t, &ip->win, ip
141 f_cbreak(struct info *ip) argument
156 f_columns(struct info *ip) argument
164 f_dec(struct info *ip) argument
177 f_ek(struct info *ip) argument
186 f_everything(struct info *ip) argument
193 f_extproc(struct info *ip) argument
206 f_ispeed(struct info *ip) argument
214 f_nl(struct info *ip) argument
228 f_ospeed(struct info *ip) argument
236 f_raw(struct info *ip) argument
250 f_rows(struct info *ip) argument
258 f_sane(struct info *ip) argument
273 f_size(struct info *ip) argument
280 f_speed(struct info *ip) argument
287 f_tty(struct info *ip) argument
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_node.h14 #define XFS_CAST_IP2VP(ip) (&((struct xfs_node *)(ip))->n_vnode)
H A Dxfs_freebsd_iget.c105 xfs_inode_t *ip; local
124 for (ip = ih->ih_next; ip != NULL; ip = ip->i_next) {
125 if (ip->i_ino == ino) {
126 vp = XFS_ITOV(ip);
129 * Inode cache hit: if ip is not at the front of
134 if (ip->i_prevp != &ih->ih_next
137 if ((iq = ip
351 xfs_iput_new(xfs_inode_t *ip, uint lock_flags) argument
376 xfs_vn_allocate(xfs_mount_t *mp, xfs_inode_t *ip, struct xfs_vnode **vpp) argument
[all...]
/freebsd-9.3-release/contrib/ipfilter/lib/
H A Dprintpacket.c18 void printpacket(ip)
19 struct ip *ip;
25 if (IP_V(ip) == 6) {
27 len = ntohs(((u_short *)ip)[2]) + 40;
29 off = ntohs(ip->ip_off);
30 len = ntohs(ip->ip_len);
37 for (s = (u_char *)ip, i = 0; i < len; i++) {
50 if (IP_V(ip) == 6) {
51 printpacket6(ip);
[all...]
H A Dcount4bits.c19 int count4bits(ip)
20 u_int ip;
25 ip = ipn = ntohl(ip);
37 if (ipn == ip)
/freebsd-9.3-release/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-9.3-release/sys/cddl/boot/zfs/
H A Dfletcher.c31 const uint64_t *ip = buf; local
32 const uint64_t *ipend = ip + (size / sizeof (uint64_t));
35 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) {
36 a0 += ip[0];
37 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
65 const uint32_t *ip = buf; local
82 const uint32_t *ip = buf; local
[all...]
/freebsd-9.3-release/usr.bin/lam/
H A Dlam.c80 struct openfile *ip; local
89 for (ip = input; ip->fp != NULL; ip++)
90 linep = gatherline(ip);
94 fputs(ip->sepstring, stdout);
103 struct openfile *ip = input; local
115 ip->fp = stdin;
116 else if ((ip->fp = fopen(p, "r")) == NULL) {
119 ip
177 pad(struct openfile *ip) argument
191 gatherline(struct openfile *ip) argument
[all...]
/freebsd-9.3-release/sbin/hastd/
H A Dlzf.c110 const u8 *ip = (const u8 *)in_data; local
112 const u8 *in_end = ip + in_len;
138 *hslot++ = ip;
144 hval = FRST (ip);
145 while (ip < in_end - 2)
147 hval = NEXT (hval, ip);
149 ref = *hslot; *hslot = ip;
153 && ref < ip /* the next test will actually take care of this, but this is faster */
155 && (off = ip - ref - 1) < MAX_OFF
156 && ip
315 u8 const *ip = (const u8 *)in_data; local
[all...]
/freebsd-9.3-release/lib/libstand/
H A Dudp.c52 #include <netinet/ip.h>
60 /* Caller must leave room for ethernet, ip and udp headers in front!! */
68 struct ip *ip; local
85 ip = (struct ip *)uh - 1;
86 len += sizeof(*ip) + sizeof(*uh);
88 bzero(ip, sizeof(*ip) + sizeof(*uh));
90 ip
145 struct ip *ip; local
[all...]
/freebsd-9.3-release/sys/fs/ext2fs/
H A Dext2_inode_cnv.c83 ext2_ei2i(struct ext2fs_dinode *ei, struct inode *ip) argument
87 ip->i_nlink = ei->e2di_nlink;
93 ip->i_mode = ei->e2di_nlink ? ei->e2di_mode : 0;
94 ip->i_size = ei->e2di_size;
95 if (S_ISREG(ip->i_mode))
96 ip->i_size |= ((u_int64_t)ei->e2di_size_high) << 32;
97 ip->i_atime = ei->e2di_atime;
98 ip->i_mtime = ei->e2di_mtime;
99 ip->i_ctime = ei->e2di_ctime;
100 if (E2DI_HAS_XTIME(ip)) {
133 ext2_i2ei(struct inode *ip, struct ext2fs_dinode *ei) argument
[all...]
/freebsd-9.3-release/sys/ufs/ufs/
H A Dufs_inode.c75 struct inode *ip = VTOI(vp); local
86 if (ip->i_mode == 0)
99 if ((ip->i_effnlink == 0 && DOINGSOFTDEP(vp)) ||
100 (ip->i_nlink <= 0 && !UFS_RDONLY(ip))) {
128 isize = ip->i_size;
129 if (ip->i_ump->um_fstype == UFS2)
130 isize += ip->i_din2->di_extsize;
131 if (ip->i_effnlink <= 0 && isize && !UFS_RDONLY(ip))
185 struct inode *ip; local
218 struct inode *ip = VTOI(vp); local
[all...]
/freebsd-9.3-release/lib/libc/arm/string/
H A Dmemset.S94 mov ip, r0
98 ands r2, ip, #0x03 /* Get the bottom two bits */
107 tst ip, #0x04 /* Quad-align for armv5e */
116 strne r3, [ip], #0x04
128 strged r2, [ip], #0x08
129 strged r2, [ip], #0x08
130 strged r2, [ip], #0x08
131 strged r2, [ip], #0x08
132 strged r2, [ip], #0x08
133 strged r2, [ip], #
[all...]
/freebsd-9.3-release/contrib/ipfilter/ipsend/
H A Diptests.c89 #include <netinet/ip.h>
125 void ip_test1(dev, mtu, ip, gwip, ptest)
128 ip_t *ip;
140 IP_HL_A(ip, sizeof(*ip) >> 2);
141 IP_V_A(ip, IPVERSION);
142 ip->ip_tos = 0;
143 ip->ip_off = 0;
144 ip->ip_ttl = 60;
145 ip
[all...]
/freebsd-9.3-release/sys/amd64/include/
H A Din_cksum.h56 in_cksum_update(struct ip *ip) argument
59 __tmpsum = (int)ntohs(ip->ip_sum) + 256;
60 ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16));
65 #define in_cksum_update(ip) \
68 __tmpsum = (int)ntohs(ip->ip_sum) + 256; \
69 ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16)); \
77 u_int in_cksum_hdr(const struct ip *ip);
/freebsd-9.3-release/sys/ia64/include/
H A Din_cksum.h52 in_cksum_update(struct ip *ip) argument
55 __tmpsum = (int)ntohs(ip->ip_sum) + 256;
56 ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16));
61 #define in_cksum_update(ip) \
64 __tmpsum = (int)ntohs(ip->ip_sum) + 256; \
65 ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16)); \
73 u_int in_cksum_hdr(const struct ip *ip);
/freebsd-9.3-release/sys/mips/include/
H A Din_cksum.h53 in_cksum_update(struct ip *ip) argument
56 __tmpsum = (int)ntohs(ip->ip_sum) + 256;
57 ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16));
62 #define in_cksum_update(ip) \
65 __tmpsum = (int)ntohs(ip->ip_sum) + 256; \
66 ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16)); \
74 u_int in_cksum_hdr(const struct ip *ip);
/freebsd-9.3-release/sys/powerpc/include/
H A Din_cksum.h52 in_cksum_update(struct ip *ip) argument
55 __tmpsum = (int)ntohs(ip->ip_sum) + 256;
56 ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16));
61 #define in_cksum_update(ip) \
64 __tmpsum = (int)ntohs(ip->ip_sum) + 256; \
65 ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16)); \
73 u_int in_cksum_hdr(const struct ip *ip);
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_iocore.c56 xfs_inode_t *ip)
58 return (ip->i_d.di_size);
95 xfs_inode_t *ip)
97 xfs_iocore_t *io = &ip->i_iocore;
100 if (ip->i_d.di_flags & XFS_DIFLAG_REALTIME)
102 io->io_dmevmask = ip->i_d.di_dmevmask;
103 io->io_dmstate = ip->i_d.di_dmstate;
108 xfs_inode_t *ip)
110 xfs_iocore_t *io = &ip->i_iocore;
111 xfs_mount_t *mp = ip
55 xfs_size_fn( xfs_inode_t *ip) argument
94 xfs_iocore_inode_reinit( xfs_inode_t *ip) argument
107 xfs_iocore_inode_init( xfs_inode_t *ip) argument
[all...]
/freebsd-9.3-release/lib/csu/arm/
H A Dcrti.S9 mov ip, sp
10 stmdb sp!, {fp, ip, lr, pc}
11 sub fp, ip, #4
18 mov ip, sp
19 stmdb sp!, {fp, ip, lr, pc}
20 sub fp, ip, #4

Completed in 417 milliseconds

1234567891011>>