Lines Matching refs:conv_rec
547 } conv_rec; in ntohd() local
559 conv_rec.whole_thing = net_double; in ntohd()
564 conv_rec.words[0] = htonl(conv_rec.words[0]); in ntohd()
565 conv_rec.words[1] = htonl(conv_rec.words[1]); in ntohd()
569 scratch = conv_rec.bytes[i]; in ntohd()
570 conv_rec.bytes[i] = conv_rec.bytes[7-i]; in ntohd()
571 conv_rec.bytes[7-i] = scratch; in ntohd()
577 unsigned int scratch = conv_rec.words[0]; in ntohd()
578 conv_rec.words[0] = conv_rec.words[1]; in ntohd()
579 conv_rec.words[1] = scratch; in ntohd()
583 return(conv_rec.whole_thing); in ntohd()
596 } conv_rec; in htond() local
608 conv_rec.whole_thing = host_double; in htond()
612 scratch = conv_rec.bytes[i]; in htond()
613 conv_rec.bytes[i] = conv_rec.bytes[7-i]; in htond()
614 conv_rec.bytes[7-i] = scratch; in htond()
620 unsigned int scratch = conv_rec.words[0]; in htond()
621 conv_rec.words[0] = conv_rec.words[1]; in htond()
622 conv_rec.words[1] = scratch; in htond()
630 conv_rec.words[0] = htonl(conv_rec.words[0]); in htond()
631 conv_rec.words[1] = htonl(conv_rec.words[1]); in htond()
633 return(conv_rec.whole_thing); in htond()