Lines Matching refs:conv_rec
615 } conv_rec; in ntohd() local
627 conv_rec.whole_thing = net_double; in ntohd()
632 conv_rec.words[0] = htonl(conv_rec.words[0]); in ntohd()
633 conv_rec.words[1] = htonl(conv_rec.words[1]); in ntohd()
637 scratch = conv_rec.bytes[i]; in ntohd()
638 conv_rec.bytes[i] = conv_rec.bytes[7-i]; in ntohd()
639 conv_rec.bytes[7-i] = scratch; in ntohd()
645 unsigned int scratch = conv_rec.words[0]; in ntohd()
646 conv_rec.words[0] = conv_rec.words[1]; in ntohd()
647 conv_rec.words[1] = scratch; in ntohd()
651 return(conv_rec.whole_thing); in ntohd()
664 } conv_rec; in htond() local
676 conv_rec.whole_thing = host_double; in htond()
680 scratch = conv_rec.bytes[i]; in htond()
681 conv_rec.bytes[i] = conv_rec.bytes[7-i]; in htond()
682 conv_rec.bytes[7-i] = scratch; in htond()
688 unsigned int scratch = conv_rec.words[0]; in htond()
689 conv_rec.words[0] = conv_rec.words[1]; in htond()
690 conv_rec.words[1] = scratch; in htond()
697 conv_rec.words[0] = htonl(conv_rec.words[0]); in htond()
698 conv_rec.words[1] = htonl(conv_rec.words[1]); in htond()
700 return(conv_rec.whole_thing); in htond()