Home
last modified time | relevance | path

Searched refs:ntohll (Results 1 – 25 of 53) sorted by relevance

123

/titanic_41/usr/src/common/crypto/modes/
H A Dgcm.c95 v.a = ntohll(y[0]); in gcm_mul()
96 v.b = ntohll(y[1]); in gcm_mul()
99 x = ntohll(x_in[j]); in gcm_mul()
148 uint64_t counter_mask = ntohll(0x00000000ffffffffULL); in gcm_mode_encrypt_contiguous_blocks()
184 counter = ntohll(ctx->gcm_cb[1] & counter_mask); in gcm_mode_encrypt_contiguous_blocks()
257 uint64_t counter_mask = ntohll(0x00000000ffffffffULL); in gcm_encrypt_final()
280 counter = ntohll(ctx->gcm_cb[1] & counter_mask); in gcm_encrypt_final()
336 uint64_t counter_mask = ntohll(0x00000000ffffffffULL); in gcm_decrypt_incomplete_block()
343 counter = ntohll(ctx->gcm_cb[1] & counter_mask); in gcm_decrypt_incomplete_block()
419 uint64_t counter_mask = ntohll(0x00000000ffffffffULL); in gcm_decrypt_final()
[all …]
H A Dctr.c99 lower_counter = ntohll(ctx->ctr_cb[1] & ctx->ctr_lower_mask); in ctr_mode_contiguous_blocks()
108 ntohll(ctx->ctr_cb[0] & ctx->ctr_upper_mask); in ctr_mode_contiguous_blocks()
/titanic_41/usr/src/lib/libc/amd64/gen/
H A Dbyteorder.s50 ENTRY(ntohll)
54 SET_SIZE(ntohll)
/titanic_41/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Dtst.hton.d88 /after[2] != ntohll(before[2])/
90 printf("%x rather than %x", ntohll(before[2]), after[2]);
/titanic_41/usr/src/uts/intel/asm/
H A Dbyteorder.h93 ntohll(uint64_t value) in ntohll() function
108 ntohll(uint64_t value) in ntohll() function
/titanic_41/usr/src/stand/lib/xdr/
H A Dbyteorder.c51 ntohll(uint64_t in) in ntohll() function
102 ntohll(uint64_t in) in ntohll() function
/titanic_41/usr/src/cmd/isns/isnsadm/
H A Disnsadm.h45 #define ntohll(x) (x) macro
48 #define ntohll(x) ((((unsigned long long)ntohl(x)) << 32) + ntohl(x >> 32))
/titanic_41/usr/src/lib/sun_fc/common/
H A Dsun_fc.h149 #define ntohll(x) (x) macro
152 #define ntohll(x) ((((uint64_t)ntohl(x)) << 32) + ntohl(x >> 32)) macro
162 return (ntohll(tmp)); in wwnConversion()
H A DFCHBANPIVPort.cc74 portWWN = ntohll(tmp); in FCHBANPIVPort()
76 nodeWWN = ntohll(tmp); in FCHBANPIVPort()
H A DTgtFCHBAPort.cc234 portWWN = ntohll(tmp); in TgtFCHBAPort()
236 nodeWWN = ntohll(tmp); in TgtFCHBAPort()
/titanic_41/usr/src/cmd/sasinfo/
H A Dsasinfo.h48 #define ntohll(x) (x) macro
51 #define ntohll(x) ((((unsigned long long)ntohl(x)) << 32) + ntohl(x >> 32))
/titanic_41/usr/src/cmd/fcinfo/
H A Dfcinfo.h51 #define ntohll(x) (x) macro
54 #define ntohll(x) ((((unsigned long long)ntohl(x)) << 32) + ntohl(x >> 32))
H A DprintAttrs.c39 #define ntohll(x) (x) macro
42 #define ntohll(x) ((((unsigned long long)ntohl(x)) << 32) + ntohl(x >> 32)) macro
61 return (ntohll(tmp)); in wwnConversion()
/titanic_41/usr/src/lib/libdtrace/common/
H A Dsrp.d135 ti_lun = ntohll(*(uint64_t *)((scsi_task_t *)arg2)->task_lun_no);
147 ti_lun = ntohll(*(uint64_t *)P->iu_stmf_task->task_lun_no);
/titanic_41/usr/src/lib/libc/i386/gen/
H A Dbyteorder64.c45 ntohll(uint64_t in) in ntohll() function
/titanic_41/usr/src/cmd/dtrace/test/tst/common/safety/
H A Dtst.hton.d71 trace(ntohll(0x1122334455667788));
/titanic_41/usr/src/lib/libc/sparc/gen/
H A Dbyteorder.c51 ntohll(uint64_t in) in ntohll() function
/titanic_41/usr/src/lib/libc/sparcv9/gen/
H A Dbyteorder.c51 ntohll(uint64_t in) in ntohll() function
/titanic_41/usr/src/uts/common/io/ib/clients/rdsv3/
H A Drds_recv.c205 (unsigned long long)ntohll(inc->i_hdr.h_sequence), in rdsv3_recv_incoming()
232 if (ntohll(inc->i_hdr.h_sequence) < conn->c_next_rx_seq && in rdsv3_recv_incoming()
237 conn->c_next_rx_seq = ntohll(inc->i_hdr.h_sequence) + 1; in rdsv3_recv_incoming()
660 minfo.seq = ntohll(inc->i_hdr.h_sequence); in rdsv3_inc_info_copy()
H A Dsend.c440 return (ntohll(rm->m_inc.i_hdr.h_sequence) <= ack); in rdsv3_send_is_acked()
460 if (ntohll(rm->m_inc.i_hdr.h_sequence) < seq) in rdsv3_send_acked_before()
465 if (ntohll(rm->m_inc.i_hdr.h_sequence) < seq) in rdsv3_send_acked_before()
870 (unsigned long long)ntohll( in rdsv3_send_queue_rm()
H A Dloop.c91 rdsv3_send_drop_acked(conn, ntohll(rm->m_inc.i_hdr.h_sequence), in rdsv3_loop_xmit()
/titanic_41/usr/src/uts/common/sys/
H A Dbyteorder.h66 #define ntohll(x) (x) macro
97 extern uint64_t ntohll(uint64_t);
/titanic_41/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.subr.d96 INTFUNC(ntohll(0x1234567890abcdefL))
/titanic_41/usr/src/lib/cfgadm_plugins/fp/common/
H A Dcfga_fp.h220 #define ntohll(x) (x) macro
223 #define ntohll(x) ((((unsigned long long)ntohl(x)) << 32) + ntohl(x >> 32)) macro
/titanic_41/usr/src/man/man3socket/
H A DMakefile124 ntohll.3socket \
156 ntohll.3socket := LINKSRC = byteorder.3socket

123