Lines Matching refs:NetToHost32
19 using base::NetToHost32;
612 out[0] = NetToHost32(in[6]) & kBottom28Bits;
613 out[1] = ((NetToHost32(in[5]) << 4) |
614 (NetToHost32(in[6]) >> 28)) & kBottom28Bits;
615 out[2] = ((NetToHost32(in[4]) << 8) |
616 (NetToHost32(in[5]) >> 24)) & kBottom28Bits;
617 out[3] = ((NetToHost32(in[3]) << 12) |
618 (NetToHost32(in[4]) >> 20)) & kBottom28Bits;
619 out[4] = ((NetToHost32(in[2]) << 16) |
620 (NetToHost32(in[3]) >> 16)) & kBottom28Bits;
621 out[5] = ((NetToHost32(in[1]) << 20) |
622 (NetToHost32(in[2]) >> 12)) & kBottom28Bits;
623 out[6] = ((NetToHost32(in[0]) << 24) |
624 (NetToHost32(in[1]) >> 8)) & kBottom28Bits;
625 out[7] = (NetToHost32(in[0]) >> 4) & kBottom28Bits;