Home
last modified time | relevance | path

Searched refs:ibuf (Results 1 – 12 of 12) sorted by relevance

/f-stack/dpdk/app/test/
H A Dtest_ipsec.c471 if (ut_params->ibuf[i]) { in ut_teardown()
473 ut_params->ibuf[i] = NULL; in ut_teardown()
857 ut_params->ibuf[i], in lksd_proto_ipsec()
1118 memcpy(ut_params->ibuf, ibuf_tmp, sizeof(ut_params->ibuf)); in test_ipsec_reorder_inb_pkt_burst()
1154 if (ut_params->ibuf[j]) { in test_ipsec_dump_buffers()
1939 if (ut_params->ibuf[0]) { in test_ipsec_replay_inb_inside_null_null()
1941 ut_params->ibuf[0] = 0; in test_ipsec_replay_inb_inside_null_null()
2033 if (ut_params->ibuf[0]) { in test_ipsec_replay_inb_outside_null_null()
2035 ut_params->ibuf[0] = 0; in test_ipsec_replay_inb_outside_null_null()
2137 ut_params->ibuf[0] = 0; in test_ipsec_replay_inb_repeat_null_null()
[all …]
H A Dtest_cryptodev.c965 ut_params->ibuf = 0; in ut_teardown()
968 if (ut_params->ibuf) { in ut_teardown()
970 ut_params->ibuf = 0; in ut_teardown()
7566 ut_params->ibuf, in create_aead_operation()
7573 ut_params->ibuf, in create_aead_operation()
7582 ut_params->ibuf, in create_aead_operation()
8002 buf = ut_params->ibuf; in test_pdcp_proto_SGL()
10433 ut_params->ibuf = 0; in test_multi_session()
11180 buf = ut_params->ibuf; in test_AES_GMAC_authentication_SGL()
12300 ut_params->ibuf); in create_aead_operation_SGL()
[all …]
H A Dtest_cryptodev_blockcipher.c75 struct rte_mbuf *ibuf = NULL; in test_blockcipher_one_case() local
189 ibuf = create_segmented_mbuf(mbuf_pool, in test_blockcipher_one_case()
191 if (ibuf == NULL) { in test_blockcipher_one_case()
204 pktmbuf_write(ibuf, 0, tdata->plaintext.len, in test_blockcipher_one_case()
253 struct rte_mbuf *tmp_buf = ibuf; in test_blockcipher_one_case()
255 ibuf = obuf; in test_blockcipher_one_case()
258 rte_pktmbuf_reset(ibuf); in test_blockcipher_one_case()
293 sym_op->m_src = ibuf; in test_blockcipher_one_case()
300 iobuf = ibuf; in test_blockcipher_one_case()
735 if (ibuf) in test_blockcipher_one_case()
[all …]
/f-stack/freebsd/amd64/amd64/
H A Dbpf_jit_machdep.c82 stream->ibuf[stream->cur_ip] = (u_char)value; in emit_code()
87 *((u_short *)(void *)(stream->ibuf + stream->cur_ip)) = in emit_code()
605 stream.ibuf = malloc_exec(*size, M_BPFJIT, M_NOWAIT); in bpf_jit_compile()
606 if (stream.ibuf == NULL) in bpf_jit_compile()
609 stream.ibuf = mmap(NULL, *size, PROT_READ | PROT_WRITE, in bpf_jit_compile()
611 if (stream.ibuf == MAP_FAILED) { in bpf_jit_compile()
612 stream.ibuf = NULL; in bpf_jit_compile()
645 if (stream.ibuf != NULL && in bpf_jit_compile()
647 munmap(stream.ibuf, *size); in bpf_jit_compile()
648 stream.ibuf = NULL; in bpf_jit_compile()
[all …]
H A Dbpf_jit_machdep.h112 char *ibuf; member
/f-stack/freebsd/netgraph/bluetooth/drivers/h4/
H A Dng_h4.c381 if (sc->got >= sizeof(sc->ibuf)) { in ng_h4_input()
412 NG_NODE_NAME(sc->node), sc->ibuf[0]); in ng_h4_input()
421 switch (sc->ibuf[0]) { in ng_h4_input()
437 sc->ibuf[0]); in ng_h4_input()
452 switch (sc->ibuf[0]) { in ng_h4_input()
455 (sc->ibuf))->length); in ng_h4_input()
468 sc->ibuf[0])); in ng_h4_input()
493 if (sc->want >= sizeof(sc->ibuf)) { in ng_h4_input()
499 NG_NODE_NAME(sc->node), sc->ibuf[0], in ng_h4_input()
504 NG_H4_ALERT("%#x ", sc->ibuf[b]); in ng_h4_input()
[all …]
H A Dng_h4_var.h93 u_int8_t ibuf[NG_H4_IBUF_SIZE]; /* Incoming data */ member
/f-stack/freebsd/i386/i386/
H A Dbpf_jit_machdep.c82 stream->ibuf[stream->cur_ip] = (u_char)value; in emit_code()
87 *((u_short *)(void *)(stream->ibuf + stream->cur_ip)) = in emit_code()
635 stream.ibuf = malloc_exec(*size, M_BPFJIT, M_NOWAIT); in bpf_jit_compile()
636 if (stream.ibuf == NULL) in bpf_jit_compile()
639 stream.ibuf = mmap(NULL, *size, PROT_READ | PROT_WRITE, in bpf_jit_compile()
641 if (stream.ibuf == MAP_FAILED) { in bpf_jit_compile()
642 stream.ibuf = NULL; in bpf_jit_compile()
675 if (stream.ibuf != NULL && in bpf_jit_compile()
677 munmap(stream.ibuf, *size); in bpf_jit_compile()
678 stream.ibuf = NULL; in bpf_jit_compile()
[all …]
H A Dbpf_jit_machdep.h87 char *ibuf; member
/f-stack/freebsd/kern/
H A Dsubr_scanf.c96 sscanf(const char *ibuf, const char *fmt, ...) in sscanf() argument
102 ret = vsscanf(ibuf, fmt, ap); in sscanf()
/f-stack/app/redis-5.0.5/src/
H A Dredis-cli.c6047 char ibuf[1024*16], obuf[1024*16]; /* Input and output buffers */ in pipeMode() local
6079 nread = read(fd,ibuf,sizeof(ibuf)); in pipeMode()
6086 redisReaderFeed(reader,ibuf,nread); in pipeMode()
/f-stack/tools/libxo/libxo/
H A Dlibxo.c1176 const char *ibuf, ssize_t ilen) in xo_buf_append_locale_from_utf8() argument
1186 wc = xo_utf8_char(ibuf, ilen); in xo_buf_append_locale_from_utf8()
1196 memcpy(xbp->xb_curp, ibuf, ilen); in xo_buf_append_locale_from_utf8()