n_val              98 source3/libaddns/dnsmarshall.c 	uint16 n_val = htons(val);
n_val              99 source3/libaddns/dnsmarshall.c 	dns_marshall_buffer(buf, (uint8 *)&n_val, sizeof(n_val));
n_val             104 source3/libaddns/dnsmarshall.c 	uint32 n_val = htonl(val);
n_val             105 source3/libaddns/dnsmarshall.c 	dns_marshall_buffer(buf, (uint8 *)&n_val, sizeof(n_val));
n_val             126 source3/libaddns/dnsmarshall.c 	uint16 n_val;
n_val             128 source3/libaddns/dnsmarshall.c 	dns_unmarshall_buffer(buf, (uint8 *)&n_val, sizeof(n_val));
n_val             131 source3/libaddns/dnsmarshall.c 	*val = ntohs(n_val);
n_val             136 source3/libaddns/dnsmarshall.c 	uint32 n_val;
n_val             138 source3/libaddns/dnsmarshall.c 	dns_unmarshall_buffer(buf, (uint8 *)&n_val, sizeof(n_val));
n_val             141 source3/libaddns/dnsmarshall.c 	*val = ntohl(n_val);