crypto/openssl/ssl/quic/quic_record_rx.c
1020
const unsigned char *sop = PACKET_data(pkt);
crypto/openssl/ssl/quic/quic_record_rx.c
1195
qrx->msg_callback(0, OSSL_QUIC1_VERSION, SSL3_RT_QUIC_PACKET, sop,
crypto/openssl/ssl/quic/quic_record_rx.c
1196
eop - sop - rxe->hdr.len, qrx->msg_callback_ssl,
crypto/openssl/ssl/quic/quic_record_rx.c
1204
aad_len = rxe->hdr.data - sop;
crypto/openssl/ssl/quic/quic_record_rx.c
1232
&dec_len, sop, aad_len, rxe->pn, enc_level,
crypto/openssl/ssl/quic/quic_record_rx.c
312
const unsigned char *sop;
crypto/openssl/ssl/quic/quic_record_rx.c
323
sop = PACKET_data(&pkt);
crypto/openssl/ssl/quic/quic_record_rx.c
397
aad_len = rxe->hdr.data - sop;
crypto/openssl/ssl/quic/quic_record_rx.c
418
&dec_len, sop, aad_len, rxe->pn, QUIC_ENC_LEVEL_INITIAL,
lib/libc/db/hash/hash_page.c
396
u_int16_t *bp, *sop;
lib/libc/db/hash/hash_page.c
436
sop = (u_int16_t *)bufp->page;
lib/libc/db/hash/hash_page.c
438
if (PAIRFITS(sop, key, val))
lib/libc/db/hash/hash_page.c
439
putpair((char *)sop, key, val);
lib/libc/regex/engine.c
1002
sop s;
lib/libc/regex/engine.c
1091
assert(OP(g->strip[pc+OPND(s)]) == (sop)OOR2);
lib/libc/regex/engine.c
1097
OP(s = g->strip[pc+look]) != (sop)O_CH;
lib/libc/regex/engine.c
1099
assert(OP(s) == (sop)OOR2);
lib/libc/regex/engine.c
1105
if (OP(g->strip[pc+OPND(s)]) != (sop)O_CH) {
lib/libc/regex/engine.c
1106
assert(OP(g->strip[pc+OPND(s)]) == (sop)OOR2);
lib/libc/regex/engine.c
442
while (OP(m->g->strip[es]) != (sop)O_CH)
lib/libc/regex/engine.c
560
if (OP(m->g->strip[esub]) == (sop)OOR2)
lib/libc/regex/engine.c
630
sop s;
lib/libc/regex/engine.c
727
} while (OP(s = m->g->strip[ss]) != (sop)O_CH);
lib/libc/regex/engine.c
760
while (m->g->strip[ss] != (sop)SOP(O_BACK, i))
lib/libc/regex/engine.c
792
if (OP(m->g->strip[esub]) == (sop)O_CH)
lib/libc/regex/engine.c
795
assert(OP(m->g->strip[esub]) == (sop)OOR2);
lib/libc/regex/engine.c
798
if (OP(m->g->strip[esub]) == (sop)OOR2)
lib/libc/regex/grot/debug.c
60
sop *s;
lib/libc/regex/grot/debug.c
64
sop opnd;
lib/libc/regex/regcomp.c
147
static void doemit(struct parse *p, sop op, size_t opnd);
lib/libc/regex/regcomp.c
148
static void doinsert(struct parse *p, sop op, size_t opnd, sopno pos);
lib/libc/regex/regcomp.c
149
static void dofwd(struct parse *p, sopno pos, sop value);
lib/libc/regex/regcomp.c
153
static int altoffset(sop *scan, int offset);
lib/libc/regex/regcomp.c
1729
(char *)(p->strip + start), (size_t)len*sizeof(sop));
lib/libc/regex/regcomp.c
1743
doemit(struct parse *p, sop op, size_t opnd)
lib/libc/regex/regcomp.c
1766
doinsert(struct parse *p, sop op, size_t opnd, sopno pos)
lib/libc/regex/regcomp.c
1769
sop s;
lib/libc/regex/regcomp.c
1793
(HERE()-pos-1)*sizeof(sop));
lib/libc/regex/regcomp.c
1802
dofwd(struct parse *p, sopno pos, sop value)
lib/libc/regex/regcomp.c
1819
sop *sp;
lib/libc/regex/regcomp.c
1824
sp = reallocarray(p->strip, size, sizeof(sop));
lib/libc/regex/regcomp.c
1842
g->strip = reallocarray((char *)p->strip, p->slen, sizeof(sop));
lib/libc/regex/regcomp.c
1862
sop *scan;
lib/libc/regex/regcomp.c
1863
sop *start = NULL;
lib/libc/regex/regcomp.c
1864
sop *newstart = NULL;
lib/libc/regex/regcomp.c
1866
sop s;
lib/libc/regex/regcomp.c
190
#define EMIT(op, sopnd) doemit(p, (sop)(op), (size_t)(sopnd))
lib/libc/regex/regcomp.c
191
#define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
lib/libc/regex/regcomp.c
1916
if (OP(s) != (sop)O_QUEST &&
lib/libc/regex/regcomp.c
1917
OP(s) != (sop)O_CH && OP(s) != (sop)OOR2) {
lib/libc/regex/regcomp.c
1921
} while (OP(s) != (sop)O_QUEST && OP(s) != (sop)O_CH);
lib/libc/regex/regcomp.c
193
#define ASTERN(sop, pos) EMIT(sop, HERE()-pos)
lib/libc/regex/regcomp.c
2038
altoffset(sop *scan, int offset)
lib/libc/regex/regcomp.c
2042
sop s;
lib/libc/regex/regcomp.c
2051
while (OP(s) != (sop)O_QUEST && OP(s) != (sop)O_CH) {
lib/libc/regex/regcomp.c
2067
if (OP(s) != (sop)O_QUEST &&
lib/libc/regex/regcomp.c
2068
OP(s) != (sop)O_CH && OP(s) != (sop)OOR2)
lib/libc/regex/regcomp.c
2070
} while (OP(s) != (sop)O_QUEST && OP(s) != (sop)O_CH);
lib/libc/regex/regcomp.c
2237
sop *scan;
lib/libc/regex/regcomp.c
2238
sop s;
lib/libc/regex/regcomp.c
243
maxlen = ((size_t)-1 >> 1) / sizeof(sop) * 2 / 3;
lib/libc/regex/regcomp.c
251
p->strip = (sop *)malloc(p->ssize * sizeof(sop));
lib/libc/regex/regcomp.c
88
sop *strip; /* malloced strip */
lib/libc/regex/regex2.h
175
sop *strip; /* malloced area for strip */
sys/cam/scsi/scsi_all.c
5991
struct scsi_transportid_sop *sop;
sys/cam/scsi/scsi_all.c
5994
sop = (struct scsi_transportid_sop *)hdr;
sys/cam/scsi/scsi_all.c
5995
rid = (struct scsi_sop_routing_id_norm *)sop->routing_id;
sys/cam/scsi/scsi_all.c
6560
struct scsi_transportid_sop *sop;
sys/cam/scsi/scsi_all.c
6672
sop = malloc(sizeof(*sop), type, flags);
sys/cam/scsi/scsi_all.c
6674
sop = malloc(sizeof(*sop));
sys/cam/scsi/scsi_all.c
6676
if (sop == NULL) {
sys/cam/scsi/scsi_all.c
6679
"allocate %zu bytes", __func__, sizeof(*sop));
sys/cam/scsi/scsi_all.c
6684
*alloc_len = sizeof(*sop);
sys/cam/scsi/scsi_all.c
6685
bzero(sop, sizeof(*sop));
sys/cam/scsi/scsi_all.c
6686
sop->format_protocol = SCSI_PROTO_SOP | SCSI_TRN_SOP_FORMAT_DEFAULT;
sys/cam/scsi/scsi_all.c
6692
bcopy(&rid, sop->routing_id, MIN(sizeof(rid),
sys/cam/scsi/scsi_all.c
6693
sizeof(sop->routing_id)));
sys/cam/scsi/scsi_all.c
6699
bcopy(&rid, sop->routing_id, MIN(sizeof(rid),
sys/cam/scsi/scsi_all.c
6700
sizeof(sop->routing_id)));
sys/cam/scsi/scsi_all.c
6703
*hdr = (struct scsi_transportid_header *)sop;
sys/dev/cxgbe/cudbg/cudbg_entity.h
417
u32 sop;
sys/dev/cxgbe/cudbg/cudbg_entity.h
422
u32 sop[2];
sys/dev/cxgbe/cudbg/cudbg_entity.h
427
u32 sop[4];
sys/dev/cxgbe/cudbg/cudbg_entity.h
432
u32 sop[4];
sys/dev/cxgbe/cudbg/cudbg_entity.h
546
u32 sop[8]; /* => undef,*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1000
wtp->pcie_dma1_stat2_core.sop[i] = value & 0x0F;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1007
wtp->pcie_t5_dma_stat3.sop[i] = value & 0xFF;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1014
wtp->ulp_se_cnt_chx.sop[i] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1023
wtp->utx_tpcside.sop[i] = ((value >> 28) & 0xF);/*bits 28:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1025
wtp->tpcside_rxarb.sop[i] = ((value >> 12) & 0xF);/*bits 12:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1034
wtp->tpeside_mps.sop[i] = ((value >> 28) & 0xF); /*bits 28:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1040
wtp->tp_mps.sop[(i*2)] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1042
wtp->tp_mps.sop[(i*2) + 1] = ((value >> 24) & 0xFF);/*bit 24:31
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1050
wtp->mps_xgm.sop[(i*2)] = ((value >> 8) & 0xFF);/*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1052
wtp->mps_xgm.sop[(i*2) + 1] = ((value >> 24) & 0xFF);/*bit 24:31
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1061
wtp->mac_portx_pkt_count.sop[i] = ((value >> 24) & 0xFF);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1063
wtp->mac_porrx_pkt_count.sop[i] = ((value >> 8) & 0xFF);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1069
wtp->mac_portx_aframestra_ok.sop[i] = value & 0xff;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1077
wtp->mac_portx_etherstatspkts.sop[i] = value & 0xff;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1084
wtp->sge_debug_data_high_indx7.sop[0] = ((value >> 4) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1086
wtp->sge_debug_data_high_indx7.sop[1] = ((value >> 12) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1091
wtp->sge_debug_data_high_indx1.sop[0] = ((value >> 20) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1093
wtp->sge_debug_data_high_indx1.sop[1] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1097
wtp->sge_debug_data_high_indx9.sop[0] = ((value >> 20) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1098
wtp->sge_debug_data_high_indx9.sop[1] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1107
wtp->utx_tpcside_tx.sop[i] = ((value >> 28) & 0xF);/*bits 28:31
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1116
wtp->pmrx_ulprx.sop[i] = ((value >> 4) & 0xF); /*bits 4:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1118
wtp->ulprx_tpcside.sop[i] = ((value >> 28) & 0xF);/*bits 28:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1124
wtp->le_db_rsp_cnt.sop = value & 0xF;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1132
wtp->tp_dbg_eside_pktx.sop[i] = ((value >> 12) & 0xF);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1139
wtp->mps_tp.sop[0] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1141
wtp->mps_tp.sop[1] = ((value >> 24) & 0xFF); /*bit 24:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1160
wtp->xgm_mps.sop[i] = ((value >> 8) & 0xFF); /*bits 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1171
wtp->mac_porrx_aframestra_ok.sop[i] = value & 0xff;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1178
wtp->mac_porrx_etherstatspkts.sop[i] = value & 0xff;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1182
wtp->sge_pcie_ints.sop[0] = sge_dbg_reg->debug_PD_Req_Int0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1183
wtp->sge_pcie_ints.sop[1] = sge_dbg_reg->debug_PD_Req_Int1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1184
wtp->sge_pcie_ints.sop[2] = sge_dbg_reg->debug_PD_Req_Int2_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
1185
wtp->sge_pcie_ints.sop[3] = sge_dbg_reg->debug_PD_Req_Int3_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
325
wtp->sge_pcie_cmd_req.sop[0] = sge_dbg_reg->debug_PC_Req_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
326
wtp->sge_pcie_cmd_req.sop[1] = sge_dbg_reg->debug_PC_Req_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
334
wtp->pcie_core_cmd_req.sop[0] = ((value >> 0) & 0xFF); /*bit 0:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
335
wtp->pcie_core_cmd_req.sop[1] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
343
wtp->pcie_t5_dma_stat3.sop[i] = value & 0xFF;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
349
wtp->sge_debug_data_high_index_6.sop[0] = ((value >> 4) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
351
wtp->sge_debug_data_high_index_6.sop[1] = ((value >> 12) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
353
wtp->sge_debug_data_high_index_6.sop[2] = ((value >> 20) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
355
wtp->sge_debug_data_high_index_6.sop[3] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
360
wtp->sge_debug_data_high_index_3.sop[0] = ((value >> 4) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
362
wtp->sge_debug_data_high_index_3.sop[1] = ((value >> 12) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
364
wtp->sge_debug_data_high_index_3.sop[2] = ((value >> 20) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
366
wtp->sge_debug_data_high_index_3.sop[3] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
372
wtp->ulp_se_cnt_chx.sop[i] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
379
wtp->mac_portx_pkt_count.sop[i] = ((value >> 24) & 0xFF);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
381
wtp->mac_porrx_pkt_count.sop[i] = ((value >> 8) & 0xFF);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
388
wtp->mac_portx_aframestra_ok.sop[i] = (value & 0xFF);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
395
wtp->core_pcie_cmd_rsp.sop[0] = ((value >> 0) & 0xFF); /*bit 0:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
396
wtp->core_pcie_cmd_rsp.sop[1] = ((value >> 16) & 0xFF); /*bit 16:23*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
402
wtp->pcie_sge_cmd_rsp.sop[0] = sge_dbg_reg->debug_PC_Rsp_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
403
wtp->pcie_sge_cmd_rsp.sop[1] = sge_dbg_reg->debug_PC_Rsp_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
409
wtp->sge_cim.sop[0] = sge_dbg_reg->debug_CIM_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
410
wtp->sge_cim.sop[1] = sge_dbg_reg->debug_CIM_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
416
wtp->utx_sge_dma_req.sop[0] = sge_dbg_reg->debug_UD_Rx_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
417
wtp->utx_sge_dma_req.sop[1] = sge_dbg_reg->debug_UD_Rx_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
418
wtp->utx_sge_dma_req.sop[2] = sge_dbg_reg->debug_UD_Rx_SOP2_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
419
wtp->utx_sge_dma_req.sop[3] = sge_dbg_reg->debug_UD_Rx_SOP3_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
427
wtp->sge_pcie_dma_req.sop[0] = sge_dbg_reg->debug_PD_Req_Rd0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
428
wtp->sge_pcie_dma_req.sop[1] = sge_dbg_reg->debug_PD_Req_Rd1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
429
wtp->sge_pcie_dma_req.sop[2] = sge_dbg_reg->debug_PD_Req_Rd2_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
430
wtp->sge_pcie_dma_req.sop[3] = sge_dbg_reg->debug_PD_Req_Rd3_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
440
wtp->pcie_core_dma_req.sop[0] = ((value >> 0) & 0xFF); /*bit 0:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
441
wtp->pcie_core_dma_req.sop[1] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
442
wtp->pcie_core_dma_req.sop[2] = ((value >> 16) & 0xFF); /*bit 16:23*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
443
wtp->pcie_core_dma_req.sop[3] = ((value >> 24) & 0xFF); /*bit 24:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
453
wtp->core_pcie_dma_rsp.sop[0] = ((value >> 0) & 0xFF); /*bit 0:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
454
wtp->core_pcie_dma_rsp.sop[1] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
455
wtp->core_pcie_dma_rsp.sop[2] = ((value >> 16) & 0xFF); /*bit 16:23*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
456
wtp->core_pcie_dma_rsp.sop[3] = ((value >> 24) & 0xFF); /*bit 24:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
466
wtp->pcie_sge_dma_rsp.sop[0] = sge_dbg_reg->debug_PD_Rsp_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
467
wtp->pcie_sge_dma_rsp.sop[1] = sge_dbg_reg->debug_PD_Rsp_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
468
wtp->pcie_sge_dma_rsp.sop[2] = sge_dbg_reg->debug_PD_Rsp_SOP2_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
469
wtp->pcie_sge_dma_rsp.sop[3] = sge_dbg_reg->debug_PD_Rsp_SOP3_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
477
wtp->sge_utx.sop[0] = sge_dbg_reg->debug_U_Tx_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
478
wtp->sge_utx.sop[1] = sge_dbg_reg->debug_U_Tx_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
479
wtp->sge_utx.sop[2] = sge_dbg_reg->debug_U_Tx_SOP2_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
480
wtp->sge_utx.sop[3] = sge_dbg_reg->debug_U_Tx_SOP3_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
491
wtp->utx_tp.sop[i] = ((value >> 28) & 0xF); /*bits 28:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
500
wtp->utx_tpcside.sop[i] = ((value >> 28) & 0xF);/*bits 28:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
502
wtp->tpcside_rxpld.sop[i] = ((value >> 20) & 0xF);/*bits 20:23*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
504
wtp->tpcside_rxarb.sop[i] = ((value >> 12) & 0xF);/*bits 12:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
506
wtp->tpcside_rxcpl.sop[i] = ((value >> 4) & 0xF); /*bits 4:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
515
wtp->tpeside_mps.sop[i] = ((value >> 28) & 0xF); /*bits 28:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
517
wtp->tpeside_pm.sop[i] = ((value >> 20) & 0xF); /*bits 20:23*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
519
wtp->mps_tpeside.sop[i] = ((value >> 12) & 0xF); /*bits 12:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
521
wtp->tpeside_pld.sop[i] = ((value >> 4) & 0xF); /*bits 4:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
529
wtp->pcie_cmd_stat2.sop[i] = value & 0xFF;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
536
wtp->pcie_cmd_stat3.sop[i] = value & 0xFF;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
544
wtp->pmrx_ulprx.sop[i] = ((value >> 4) & 0xF); /*bits 4:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
546
wtp->ulprx_tpcside.sop[i] = ((value >> 28) & 0xF);/*bits 28:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
554
wtp->tp_mps.sop[(i*2)] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
556
wtp->tp_mps.sop[(i*2) + 1] = ((value >> 24) & 0xFF);/*bit 24:31
sys/dev/cxgbe/cudbg/cudbg_wtp.c
575
wtp->mps_xgm.sop[(i*2)] = ((value >> 8) & 0xFF);/*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
577
wtp->mps_xgm.sop[(i*2) + 1] = ((value >> 24) & 0xFF);/*bit 24:31
sys/dev/cxgbe/cudbg/cudbg_wtp.c
600
wtp->tx_xgm_xgm.sop[i] = ((value >> 24) & 0xFF); /*bit 24:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
602
wtp->rx_xgm_xgm.sop[i] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
612
wtp->xgm_wire.sop[i] = (value);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
628
wtp->wire_xgm.sop[i] = (value);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
640
wtp->xgm_mps.sop[i] = ((value >> 8) & 0xFF); /*bits 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
748
wtp->mps_tp.sop[(i*2)] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
750
wtp->mps_tp.sop[(i*2) + 1] = ((value >> 24) & 0xFF);/*bit 24:31
sys/dev/cxgbe/cudbg/cudbg_wtp.c
780
wtp->tpcside_csw.sop[i] = ((value >> 28) & 0xF);/*bits 28:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
782
wtp->tpcside_pm.sop[i] = ((value >> 20) & 0xF);/*bits 20:23*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
784
wtp->tpcside_uturn.sop[i] = ((value >> 12) & 0xF);/*bits 12:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
786
wtp->tpcside_txcpl.sop[i] = ((value >> 4) & 0xF); /*bits 4:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
791
wtp->tp_csw.sop[0] = sge_dbg_reg->debug_CPLSW_TP_Rx_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
792
wtp->tp_csw.sop[1] = sge_dbg_reg->debug_CPLSW_TP_Rx_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
798
wtp->csw_sge.sop[0] = sge_dbg_reg->debug_T_Rx_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
799
wtp->csw_sge.sop[1] = sge_dbg_reg->debug_T_Rx_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
804
wtp->sge_pcie.sop[0] = sge_dbg_reg->debug_PD_Req_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
805
wtp->sge_pcie.sop[1] = sge_dbg_reg->debug_PD_Req_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
806
wtp->sge_pcie.sop[2] = sge_dbg_reg->debug_PD_Req_SOP2_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
807
wtp->sge_pcie.sop[3] = sge_dbg_reg->debug_PD_Req_SOP3_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
814
wtp->sge_pcie_ints.sop[0] = sge_dbg_reg->debug_PD_Req_Int0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
815
wtp->sge_pcie_ints.sop[1] = sge_dbg_reg->debug_PD_Req_Int1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
816
wtp->sge_pcie_ints.sop[2] = sge_dbg_reg->debug_PD_Req_Int2_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
817
wtp->sge_pcie_ints.sop[3] = sge_dbg_reg->debug_PD_Req_Int3_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
827
wtp->pcie_dma1_stat2.sop[i] = ((value >> 8) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
829
wtp->pcie_dma1_stat2_core.sop[i] += value & 0x0F;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
836
wtp->mac_porrx_aframestra_ok.sop[i] = (value & 0xFF);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
842
wtp->sge_debug_data_high_indx7.sop[0] = ((value >> 4) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
844
wtp->sge_debug_data_high_indx7.sop[1] = ((value >> 12) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
846
wtp->sge_debug_data_high_indx7.sop[2] = ((value >> 20) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
848
wtp->sge_debug_data_high_indx7.sop[3] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
853
wtp->sge_debug_data_high_indx1.sop[0] = ((value >> 20) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
855
wtp->sge_debug_data_high_indx1.sop[1] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
863
wtp->utx_tpcside_tx.sop[i] = ((value >> 28) & 0xF);/*bits 28:31
sys/dev/cxgbe/cudbg/cudbg_wtp.c
870
wtp->sge_debug_data_high_indx9.sop[0] = ((value >> 20) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
871
wtp->sge_debug_data_high_indx9.sop[1] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
874
wtp->sge_work_req_pkt.sop[0] = ((value >> 4) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
875
wtp->sge_work_req_pkt.sop[1] = ((value >> 12) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
879
wtp->le_db_rsp_cnt.sop = value & 0xF;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
887
wtp->tp_dbg_eside_pktx.sop[i] = ((value >> 12) & 0xF);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
894
wtp->pcie_core_dmaw.sop[0] = ((value >> 0) & 0xFF); /*bit 0:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
895
wtp->pcie_core_dmaw.sop[1] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
896
wtp->pcie_core_dmaw.sop[2] = ((value >> 16) & 0xFF); /*bit 16:23*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
897
wtp->pcie_core_dmaw.sop[3] = ((value >> 24) & 0xFF); /*bit 24:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
908
wtp->pcie_core_dmai.sop[0] = ((value >> 0) & 0xFF); /*bit 0:7*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
909
wtp->pcie_core_dmai.sop[1] = ((value >> 8) & 0xFF); /*bit 8:15*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
910
wtp->pcie_core_dmai.sop[2] = ((value >> 16) & 0xFF); /*bit 16:23*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
911
wtp->pcie_core_dmai.sop[3] = ((value >> 24) & 0xFF); /*bit 24:31*/
sys/dev/cxgbe/cudbg/cudbg_wtp.c
965
wtp->pcie_cmd_stat2.sop[0] = value & 0xFF;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
969
wtp->sge_pcie_cmd_req.sop[0] = ((value >> 20) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
971
wtp->sge_pcie_cmd_req.sop[1] = ((value >> 28) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
975
wtp->pcie_cmd_stat3.sop[0] = value & 0xFF;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
979
wtp->pcie_sge_cmd_rsp.sop[0] = sge_dbg_reg->debug_PC_Rsp_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
981
wtp->pcie_sge_cmd_rsp.sop[1] = sge_dbg_reg->debug_PC_Rsp_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
985
wtp->sge_cim.sop[0] = sge_dbg_reg->debug_CIM_SOP0_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
986
wtp->sge_cim.sop[1] = sge_dbg_reg->debug_CIM_SOP1_cnt;
sys/dev/cxgbe/cudbg/cudbg_wtp.c
993
wtp->sge_work_req_pkt.sop[0] = ((value >> 4) & 0x0F);
sys/dev/cxgbe/cudbg/cudbg_wtp.c
998
wtp->pcie_dma1_stat2.sop[i] = ((value >> 8) & 0x0F);
sys/dev/enic/cq_enet_desc.h
112
u8 ingress_port, u8 fcoe, u8 eop, u8 sop, u8 rss_type, u8 csum_not_calc,
sys/dev/enic/cq_enet_desc.h
125
(sop ? CQ_ENET_RQ_DESC_FLAGS_SOP : 0));
sys/dev/enic/cq_enet_desc.h
165
u8 *ingress_port, u8 *fcoe, u8 *eop, u8 *sop, u8 *rss_type,
sys/dev/enic/cq_enet_desc.h
190
*sop = (completed_index_flags & CQ_ENET_RQ_DESC_FLAGS_SOP) ?
sys/dev/enic/enic_txrx.c
393
u8 type, color, eop, sop, ingress_port, vlan_stripped;
sys/dev/enic/enic_txrx.c
407
&ingress_port, &fcoe, &eop, &sop, &rss_type,
sys/dev/qat/qat_api/common/compression/dc_datapath.c
1035
rpCmdFlags = ICP_QAT_FW_COMP_REQ_PARAM_FLAGS_BUILD(sop,
sys/dev/qat/qat_api/common/compression/dc_datapath.c
792
Cpa8U sop = ICP_QAT_FW_COMP_SOP;
sys/dev/qat/qat_api/common/compression/dc_datapath.c
976
sop = ICP_QAT_FW_COMP_NOT_SOP;
sys/dev/qat/qat_api/common/compression/dc_datapath.c
986
sop = ICP_QAT_FW_COMP_NOT_SOP;
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_comp.h
398
sop, eop, bfinal, cnv, cnvnr, cnvdfx, crc) \
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_comp.h
399
(((sop & ICP_QAT_FW_COMP_SOP_MASK) << ICP_QAT_FW_COMP_SOP_BITPOS) | \
sys/dev/sfxge/common/efx_ev.c
741
boolean_t sop;
sys/dev/sfxge/common/efx_ev.c
759
sop = (EFX_QWORD_FIELD(*eqp, FSF_AZ_RX_EV_SOP) != 0);
sys/dev/sfxge/common/efx_ev.c
817
if (sop)
sys/dev/vmware/vmxnet3/if_vmx.c
1286
struct vmxnet3_txdesc *txd, *sop;
sys/dev/vmware/vmxnet3/if_vmx.c
1304
sop = &txr->vxtxr_txd[pidx];
sys/dev/vmware/vmxnet3/if_vmx.c
1336
sop->vtag_mode = 1;
sys/dev/vmware/vmxnet3/if_vmx.c
1337
sop->vtag = pi->ipi_vtag;
sys/dev/vmware/vmxnet3/if_vmx.c
1345
sop->offload_mode = VMXNET3_OM_TSO;
sys/dev/vmware/vmxnet3/if_vmx.c
1346
sop->hlen = hdrlen + pi->ipi_tcp_hlen;
sys/dev/vmware/vmxnet3/if_vmx.c
1347
sop->offload_pos = pi->ipi_tso_segsz;
sys/dev/vmware/vmxnet3/if_vmx.c
1350
sop->offload_mode = VMXNET3_OM_CSUM;
sys/dev/vmware/vmxnet3/if_vmx.c
1351
sop->hlen = hdrlen;
sys/dev/vmware/vmxnet3/if_vmx.c
1352
sop->offload_pos = hdrlen +
sys/dev/vmware/vmxnet3/if_vmx.c
1360
sop->gen ^= 1;
sys/dev/vmware/vmxnet3/if_vmx.c
1462
KASSERT(rxcd->sop, ("%s: expected sop", __func__));
sys/dev/vmware/vmxnet3/if_vmx.c
1464
KASSERT(!rxcd->sop, ("%s: unexpected sop", __func__));
sys/dev/vmware/vmxnet3/if_vmx.c
1513
KASSERT(rxcd->sop && rxcd->eop,
sys/dev/vmware/vmxnet3/if_vmx.c
1523
KASSERT(rxcd->sop, ("%s: expected sop", __func__));
sys/dev/vmware/vmxnet3/if_vmxreg.h
145
uint32_t sop:1; /* Start of packet */
sys/opencrypto/cryptodev.c
1123
struct session2_op *sop;
sys/opencrypto/cryptodev.c
1196
sop = &thunk.sopc;
sys/opencrypto/cryptodev.c
1198
sop = (struct session2_op *)data;
sys/opencrypto/cryptodev.c
1200
error = cse_create(fcr, sop);
sys/opencrypto/cryptodev.c
1202
session2_op_to_op(sop, (void *)data);
sys/opencrypto/cryptodev.c
332
cse_create(struct fcrypt *fcr, struct session2_op *sop)
sys/opencrypto/cryptodev.c
343
mac = sop->mac;
sys/opencrypto/cryptodev.c
345
switch (sop->mac) {
sys/opencrypto/cryptodev.c
350
if (sop->cipher != CRYPTO_AES_NIST_GCM_16) {
sys/opencrypto/cryptodev.c
355
if (sop->keylen != sop->mackeylen) {
sys/opencrypto/cryptodev.c
363
if (sop->cipher != CRYPTO_AES_CCM_16) {
sys/opencrypto/cryptodev.c
368
if (sop->keylen != sop->mackeylen) {
sys/opencrypto/cryptodev.c
382
csp.csp_auth_klen = sop->mackeylen;
sys/opencrypto/cryptodev.c
384
if (sop->cipher != 0) {
sys/opencrypto/cryptodev.c
385
csp.csp_cipher_alg = sop->cipher;
sys/opencrypto/cryptodev.c
386
csp.csp_cipher_klen = sop->keylen;
sys/opencrypto/cryptodev.c
417
if (sop->keylen > txform->maxkey ||
sys/opencrypto/cryptodev.c
418
sop->keylen < txform->minkey) {
sys/opencrypto/cryptodev.c
426
error = copyin(sop->key, key, csp.csp_cipher_klen);
sys/opencrypto/cryptodev.c
437
if (sop->mackeylen > thash->keysize || sop->mackeylen < 0) {
sys/opencrypto/cryptodev.c
447
error = copyin(sop->mackey, mackey, csp.csp_auth_klen);
sys/opencrypto/cryptodev.c
463
if (sop->ivlen != 0) {
sys/opencrypto/cryptodev.c
470
csp.csp_ivlen = sop->ivlen;
sys/opencrypto/cryptodev.c
472
if (sop->maclen != 0) {
sys/opencrypto/cryptodev.c
479
csp.csp_auth_mlen = sop->maclen;
sys/opencrypto/cryptodev.c
482
crid = sop->crid;
sys/opencrypto/cryptodev.c
502
if (sop->maclen != 0)
sys/opencrypto/cryptodev.c
503
cse->hashsize = sop->maclen;
sys/opencrypto/cryptodev.c
525
sop->ses = cse->ses;
sys/opencrypto/cryptodev.c
528
sop->crid = crypto_ses2hid(cse->cses);
sys/rpc/svc_vc.c
158
static int svc_vc_accept(struct socket *head, struct socket **sop);
sys/rpc/svc_vc.c
368
svc_vc_accept(struct socket *head, struct socket **sop)
sys/rpc/svc_vc.c
401
*sop = so;
tests/sys/audit/inter-process.c
803
struct sembuf sop[1] = {{0, 1, 0}};
tests/sys/audit/inter-process.c
809
ATF_REQUIRE_EQ(0, semop(semid, sop, sizeof(sop)/sizeof(struct sembuf)));
tests/sys/opencrypto/blake2_test.c
101
memset(&sop, 0, sizeof(sop));
tests/sys/opencrypto/blake2_test.c
103
sop.mac = alg;
tests/sys/opencrypto/blake2_test.c
104
sop.mackey = key;
tests/sys/opencrypto/blake2_test.c
105
sop.mackeylen = klen;
tests/sys/opencrypto/blake2_test.c
106
sop.crid = crid;
tests/sys/opencrypto/blake2_test.c
108
ATF_REQUIRE_MSG(ioctl(fd, CIOCGSESSION2, &sop) >= 0,
tests/sys/opencrypto/blake2_test.c
111
return (sop.ses);
tests/sys/opencrypto/blake2_test.c
99
struct session2_op sop;
tests/sys/opencrypto/poly1305_test.c
313
struct session2_op sop;
tests/sys/opencrypto/poly1305_test.c
315
memset(&sop, 0, sizeof(sop));
tests/sys/opencrypto/poly1305_test.c
317
sop.mac = alg;
tests/sys/opencrypto/poly1305_test.c
318
sop.mackey = key;
tests/sys/opencrypto/poly1305_test.c
319
sop.mackeylen = klen;
tests/sys/opencrypto/poly1305_test.c
320
sop.crid = crid;
tests/sys/opencrypto/poly1305_test.c
322
ATF_REQUIRE_MSG(ioctl(fd, CIOCGSESSION2, &sop) >= 0,
tests/sys/opencrypto/poly1305_test.c
325
return (sop.ses);
tools/test/stress2/testcases/shm/shm.c
109
sop[0].sem_num = i;
tools/test/stress2/testcases/shm/shm.c
110
sop[0].sem_op = -1;
tools/test/stress2/testcases/shm/shm.c
111
if (semop(semid, sop, 1) == -1) {
tools/test/stress2/testcases/shm/shm.c
120
sop[0].sem_num = i;
tools/test/stress2/testcases/shm/shm.c
121
sop[0].sem_op = 1;
tools/test/stress2/testcases/shm/shm.c
122
if (semop(semid, sop, 1) == -1) {
tools/test/stress2/testcases/shm/shm.c
50
static struct sembuf sop[2];
tools/test/stress2/testcases/shm/shm.c
85
sop[0].sem_num = 0;
tools/test/stress2/testcases/shm/shm.c
86
sop[0].sem_op = 0; /* This is the number of runs without queuing. */
tools/test/stress2/testcases/shm/shm.c
87
sop[0].sem_flg = 0;
tools/test/stress2/testcases/shm/shm.c
88
sop[1].sem_num = 1;
tools/test/stress2/testcases/shm/shm.c
89
sop[1].sem_op = 0; /* This is the number of runs without queuing. */
tools/test/stress2/testcases/shm/shm.c
90
sop[1].sem_flg = 0;
tools/test/stress2/testcases/shm/shm.c
91
if (semop(semid, sop, 2) == -1)
tools/tools/crypto/cryptocheck.c
1157
struct session2_op sop;
tools/tools/crypto/cryptocheck.c
1160
ocf_init_sop(&sop);
tools/tools/crypto/cryptocheck.c
1161
sop.mackeylen = key_len;
tools/tools/crypto/cryptocheck.c
1162
sop.mackey = key;
tools/tools/crypto/cryptocheck.c
1163
sop.mac = alg->mac;
tools/tools/crypto/cryptocheck.c
1164
if (!ocf_init_session(&sop, "MAC", alg->name, &ses))
tools/tools/crypto/cryptocheck.c
1537
struct session2_op sop;
tools/tools/crypto/cryptocheck.c
1539
ocf_init_sop(&sop);
tools/tools/crypto/cryptocheck.c
1540
sop.keylen = key_len;
tools/tools/crypto/cryptocheck.c
1541
sop.key = key;
tools/tools/crypto/cryptocheck.c
1542
sop.cipher = alg->cipher;
tools/tools/crypto/cryptocheck.c
1543
sop.ivlen = iv_len;
tools/tools/crypto/cryptocheck.c
1544
return (ocf_init_session(&sop, "AEAD", alg->name, ses));
tools/tools/crypto/cryptocheck.c
465
ocf_init_sop(struct session2_op *sop)
tools/tools/crypto/cryptocheck.c
467
memset(sop, 0, sizeof(*sop));
tools/tools/crypto/cryptocheck.c
468
sop->crid = requested_crid;
tools/tools/crypto/cryptocheck.c
472
ocf_init_session(struct session2_op *sop, const char *type, const char *name,
tools/tools/crypto/cryptocheck.c
478
if (ioctl(fd, CIOCGSESSION2, sop) < 0) {
tools/tools/crypto/cryptocheck.c
480
type, name, crfind(sop->crid));
tools/tools/crypto/cryptocheck.c
485
ses->ses = sop->ses;
tools/tools/crypto/cryptocheck.c
486
ses->crid = sop->crid;
tools/tools/crypto/cryptocheck.c
519
struct session2_op sop;
tools/tools/crypto/cryptocheck.c
522
ocf_init_sop(&sop);
tools/tools/crypto/cryptocheck.c
523
sop.mac = alg->mac;
tools/tools/crypto/cryptocheck.c
524
if (!ocf_init_session(&sop, "HASH", alg->name, &ses))
tools/tools/crypto/cryptocheck.c
631
struct session2_op sop;
tools/tools/crypto/cryptocheck.c
634
ocf_init_sop(&sop);
tools/tools/crypto/cryptocheck.c
635
sop.mackeylen = key_len;
tools/tools/crypto/cryptocheck.c
636
sop.mackey = key;
tools/tools/crypto/cryptocheck.c
637
sop.mac = alg->mac;
tools/tools/crypto/cryptocheck.c
638
if (!ocf_init_session(&sop, "HMAC", alg->name, &ses))
tools/tools/crypto/cryptocheck.c
762
struct session2_op sop;
tools/tools/crypto/cryptocheck.c
764
ocf_init_sop(&sop);
tools/tools/crypto/cryptocheck.c
765
sop.keylen = key_len;
tools/tools/crypto/cryptocheck.c
766
sop.key = key;
tools/tools/crypto/cryptocheck.c
767
sop.cipher = alg->cipher;
tools/tools/crypto/cryptocheck.c
768
return (ocf_init_session(&sop, "cipher", alg->name, ses));
tools/tools/crypto/cryptocheck.c
900
struct session2_op sop;
tools/tools/crypto/cryptocheck.c
902
ocf_init_sop(&sop);
tools/tools/crypto/cryptocheck.c
903
sop.keylen = cipher_key_len;
tools/tools/crypto/cryptocheck.c
904
sop.key = cipher_key;
tools/tools/crypto/cryptocheck.c
905
sop.cipher = alg->cipher;
tools/tools/crypto/cryptocheck.c
906
sop.mackeylen = auth_key_len;
tools/tools/crypto/cryptocheck.c
907
sop.mackey = auth_key;
tools/tools/crypto/cryptocheck.c
908
sop.mac = alg->mac;
tools/tools/crypto/cryptocheck.c
909
return (ocf_init_session(&sop, "ETA", alg->name, ses));