HomeSort by relevance Sort by last modified time
    Searched refs:compute_ip_checksum (Results 1 - 9 of 9) sorted by null

  /external/u-boot/net/
checksum.c 13 unsigned compute_ip_checksum(const void *vptr, unsigned nbytes) function
58 return !(compute_ip_checksum(addr, nbytes) & 0xfffe);
ping.c 32 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
39 icmp->checksum = compute_ip_checksum(icmp, ICMP_HDR_SIZE);
105 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
109 icmph->checksum = compute_ip_checksum(icmph, len - IP_HDR_SIZE);
net.c     [all...]
  /external/u-boot/arch/x86/lib/
coreboot_table.c 92 cbh->table_checksum = compute_ip_checksum(cbr, cbh->table_bytes);
93 cbh->header_checksum = compute_ip_checksum(cbh, cbh->header_bytes);
mrccache.c 68 if (cache->checksum != compute_ip_checksum(cache->data,
176 checksum = compute_ip_checksum(gd->arch.mrc_output, cache->data_size);
  /external/u-boot/arch/x86/cpu/ivybridge/
sdram.c 89 c1 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed,
91 c2 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed_s3,
155 c1 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed,
157 c2 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed_s3,
  /external/u-boot/drivers/net/
sandbox.c 139 ipr->ip_sum = compute_ip_checksum(ipr,
144 icmpr->checksum = compute_ip_checksum(icmpr,
  /external/u-boot/arch/x86/cpu/coreboot/
tables.c 135 if (compute_ip_checksum(ptr + sizeof(*header), header->table_bytes) !=
  /external/u-boot/include/
net.h 604 * compute_ip_checksum() - Compute IP checksum
610 unsigned compute_ip_checksum(const void *addr, unsigned nbytes);

Completed in 677 milliseconds