/u-boot/lib/lzo/ |
A D | lzo1x_decompress.c | 20 #define HAVE_IP(x, ip_end, ip) ((size_t)(ip_end - ip) < (x)) argument 167 t = *ip++; in lzo1x_decompress_safe() 175 ip++; in lzo1x_decompress_safe() 188 ip += 4; in lzo1x_decompress_safe() 194 ip += 4; in lzo1x_decompress_safe() 210 t = *ip++; in lzo1x_decompress_safe() 247 ip++; in lzo1x_decompress_safe() 255 ip += 2; in lzo1x_decompress_safe() 266 ip++; in lzo1x_decompress_safe() 273 ip += 2; in lzo1x_decompress_safe() [all …]
|
/u-boot/fs/jffs2/ |
A D | compr_lzo.c | 165 ip = in; in lzo1x_decompress() 182 t = *ip++; in lzo1x_decompress() 191 ip++; in lzo1x_decompress() 203 ip += 4; in lzo1x_decompress() 238 t = *ip++; in lzo1x_decompress() 276 ip++; in lzo1x_decompress() 283 m_pos -= (ip[0] >> 2) + (ip[1] << 6); in lzo1x_decompress() 285 ip += 2; in lzo1x_decompress() 299 ip++; in lzo1x_decompress() 305 m_pos -= (ip[0] >> 2) + (ip[1] << 6); in lzo1x_decompress() [all …]
|
/u-boot/arch/arm/lib/ |
A D | div64.S | 72 mov ip, ip, lsl yl 82 movcc ip, ip, lsl #1 113 movs ip, ip, lsr #1 131 mov ip, ip, lsr xh 136 mov ip, ip, lsr #1 145 movs ip, ip, lsr #1 156 rsb ip, ip, #31 168 addhs ip, ip, #8 172 addhs ip, ip, #4 175 addhi ip, ip, #3 [all …]
|
A D | memset.S | 75 tstgt ip, #31 78 and r8, ip, #31 83 stmiami ip!, {r4, r5} 86 strne r1, [ip], #4 97 stmiane ip!, {r4-r7} 103 stmiane ip!, {r1, r3} 105 strne r1, [ip], #4 111 strbne r1, [ip], #1 112 strbne r1, [ip], #1 114 strbne r1, [ip], #1 [all …]
|
A D | memcpy.S | 102 rsb ip, ip, #32 104 lsl ip, ip, #LDR1W_SHIFT 121 lsl ip, ip, #STR1W_SHIFT - LDR1W_SHIFT 123 lsr ip, ip, #LDR1W_SHIFT - STR1W_SHIFT 153 9: rsb ip, ip, #4 154 cmp ip, #2 167 cmp ip, #2 179 CALGN( rsb ip, ip, #32 ) 211 mov ip, ip, lspull #\pull 212 orr ip, ip, lr, lspush #\push [all …]
|
A D | muldi3.S | 31 mov ip, xl, lsr #16 33 bic xl, xl, ip, lsl #16 35 mla xh, yh, ip, xh 38 mul ip, yl, ip 41 adds xl, xl, ip, lsl #16 42 adc xh, xh, ip, lsr #16
|
A D | setjmp.S | 17 mov ip, sp 18 stm a1, {v1-v8, ip, lr} 26 ldm a1, {v1-v8, ip, lr} 27 mov sp, ip
|
A D | ashldi3.S | 22 rsb ip, r2, #32 25 ARM( orrmi ah, ah, al, lsr ip ) 26 THUMB( lsrmi r3, al, ip )
|
A D | ashrdi3.S | 22 rsb ip, r2, #32 25 ARM( orrmi al, al, ah, lsl ip ) 26 THUMB( lslmi r3, ah, ip )
|
A D | lshrdi3.S | 22 rsb ip, r2, #32 25 ARM( orrmi al, al, ah, lsl ip ) 26 THUMB( lslmi r3, ah, ip )
|
A D | uldivmod.S | 49 orrs ip, A_1, B_1 60 clzeq ip, A_0 61 addeq D_0, D_0, ip 65 clzeq ip, B_0 66 addeq D_1, D_1, ip 72 rsb ip, D_0, #32 74 ARM( orrmi B_1, B_1, B_0, lsr ip ) 75 THUMB( lsrmi TMP, B_0, ip ) 82 THUMB( lsrmi TMP, C_0, ip ) 138 orrs ip, A_1, A_0 [all …]
|
/u-boot/net/ |
A D | link_local.c | 73 struct in_addr ip; in pick() local 79 return ip; in pick() 121 ip = pick(); in link_local_start() 154 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 166 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 177 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 204 ip = pick(); in link_local_timeout() 308 ip = pick(); in link_local_receive_arp() 320 arp_raw_request(ip, net_ethaddr, ip); in link_local_receive_arp() 332 ip = pick(); in link_local_receive_arp() [all …]
|
A D | net.c | 1355 ip = net_defragment(ip, &len); in net_process_received_packet() 1356 if (!ip) in net_process_received_packet() 1407 xsum = ip->ip_p; in net_process_received_packet() 1649 ip->ip_tos = 0; in net_set_ip_header() 1655 ip->ip_sum = 0; in net_set_ip_header() 1661 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE); in net_set_ip_header() 1683 ip->udp_xsum = 0; in net_set_udp_header() 1706 struct in_addr ip; in net_parse_bootfile() local 1707 ip.s_addr = 0; in net_parse_bootfile() 1716 *ipaddr = ip; in net_parse_bootfile() [all …]
|
A D | ping.c | 79 void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len) in ping_receive() argument 81 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src; in ping_receive() 88 src_ip = net_read_ip((void *)&ip->ip_src); in ping_receive() 102 ip->ip_sum = 0; in ping_receive() 103 ip->ip_off = 0; in ping_receive() 104 net_copy_ip((void *)&ip->ip_dst, &ip->ip_src); in ping_receive() 105 net_copy_ip((void *)&ip->ip_src, &net_ip); in ping_receive() 106 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE); in ping_receive()
|
A D | tcp.c | 216 b->ip.hdr.tcp_hlen = 0xa0; in net_set_syn_options() 218 b->ip.mss.kind = TCP_O_MSS; in net_set_syn_options() 235 b->ip.t_opt.t_snd = 0; in net_set_syn_options() 236 b->ip.t_opt.t_rcv = 0; in net_set_syn_options() 237 b->ip.end = TCP_O_END; in net_set_syn_options() 345 b->ip.hdr.tcp_xsum = 0; in tcp_set_tcp_header() 346 b->ip.hdr.tcp_ugr = 0; in tcp_set_tcp_header() 649 &b->ip.hdr.ip_src, &b->ip.hdr.ip_dst, pkt_len); in rxhand_tcp_f() 653 b->ip.hdr.ip_sum = 0; in rxhand_tcp_f() 663 b->ip.hdr.tcp_xsum = 0; in rxhand_tcp_f() [all …]
|
A D | wol.c | 41 void wol_receive(struct ip_udp_hdr *ip, unsigned int len) in wol_receive() argument 45 wol = (struct wol_hdr *)ip; in wol_receive() 56 struct in_addr *ip = (struct in_addr *)(wol->wol_passwd); in wol_receive() local 58 ip_to_string(*ip, buffer); in wol_receive()
|
/u-boot/fs/zfs/ |
A D | zfs_fletcher.c | 38 const uint64_t *ip = buf; in fletcher_2_endian() local 39 const uint64_t *ipend = ip + (size / sizeof(uint64_t)); in fletcher_2_endian() 42 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_endian() 43 a0 += zfs_to_cpu64(ip[0], endian); in fletcher_2_endian() 44 a1 += zfs_to_cpu64(ip[1], endian); in fletcher_2_endian() 59 const uint32_t *ip = buf; in fletcher_4_endian() local 60 const uint32_t *ipend = ip + (size / sizeof(uint32_t)); in fletcher_4_endian() 63 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_endian() 64 a += zfs_to_cpu32(ip[0], endian); in fletcher_4_endian()
|
/u-boot/lib/zstd/common/ |
A D | entropy_common.c | 64 const BYTE* ip = istart; in FSE_readNCount_body() local 88 bitStream = MEM_readLE32(ip); in FSE_readNCount_body() 109 ip += 3; in FSE_readNCount_body() 137 if (LIKELY(ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSE_readNCount_body() 144 ip = iend - 4; in FSE_readNCount_body() 186 if (LIKELY(ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSE_readNCount_body() 192 ip = iend - 4; in FSE_readNCount_body() 202 ip += (bitCount+7)>>3; in FSE_readNCount_body() 203 return ip-istart; in FSE_readNCount_body() 272 iSize = ip[0]; in HUF_readStats_body() [all …]
|
/u-boot/lib/ |
A D | lz4.c | 178 return (*ip == 0 ? 1 : -1); in LZ4_decompress_generic() 228 offset = LZ4_readLE16(ip); in LZ4_decompress_generic() 229 ip += 2; in LZ4_decompress_generic() 263 s = *ip++; in LZ4_decompress_generic() 266 ? ip < iend - RUN_MASK in LZ4_decompress_generic() 333 memmove(op, ip, length); in LZ4_decompress_generic() 334 ip += length; in LZ4_decompress_generic() 343 ip += length; in LZ4_decompress_generic() 348 offset = LZ4_readLE16(ip); in LZ4_decompress_generic() 349 ip += 2; in LZ4_decompress_generic() [all …]
|
/u-boot/tools/ |
A D | netconsole | 26 ip=$1 33 if [ -z "${ip}" ] || [ -n "$4" ] ; then 67 ${nc} - "UDP4:${ip}:${board_in_port}" 69 ${nc} -u ${ip} ${board_in_port}
|
A D | jtagconsole | 27 ip=${1:-localhost} 30 if [ -z "${ip}" ] || [ -n "$3" ] ; then 38 nc ${ip} ${port}
|
/u-boot/examples/api/ |
A D | crt0.S | 32 ldr ip, =search_hint 33 str sp, [ip] 39 ldr ip, =syscall_ptr 40 ldr pc, [ip]
|
/u-boot/lib/zstd/decompress/ |
A D | zstd_decompress_block.c | 666 nbSeq = *ip++; in ZSTD_decodeSeqHeaders() 676 ip+=2; in ZSTD_decodeSeqHeaders() 689 ip++; in ZSTD_decodeSeqHeaders() 694 ip, iend-ip, in ZSTD_decodeSeqHeaders() 706 ip, iend-ip, in ZSTD_decodeSeqHeaders() 718 ip, iend-ip, in ZSTD_decodeSeqHeaders() 729 return ip-istart; in ZSTD_decodeSeqHeaders() 772 *ip -= sub2; in ZSTD_overlapCopy8() 776 *ip += 8; in ZSTD_overlapCopy8() 1347 ERR_isError(BIT_initDStream(&seqState.DStream, ip, iend-ip)), [all …]
|
/u-boot/arch/arm/cpu/armv7/ |
A D | nonsec_virt.S | 55 push {r0, r1, r2, ip} 57 pop {r0, r1, r2, ip} 98 mov lr, ip 99 mov ip, #(F_BIT | I_BIT | A_BIT) @ Set A, I and F 101 orrne ip, ip, #T_BIT @ Set T if Thumb 102 orr ip, ip, r6 @ Slot target mode in 103 msr spsr_cxfs, ip @ Set full SPSR 107 mov ip, r0
|
/u-boot/board/cssi/mcr3000/ |
A D | mcr3000.env | 7 dhcp_ip=ip=:::::eth0:dhcp 11 flashboot=setenv bootargs ${console_args} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:mcr3k:et… 12 tftpboot=setenv bootargs ${console_args} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:mcr3k:eth…
|