Home
last modified time | relevance | path

Searched refs:instruction_table (Results 1 – 2 of 2) sorted by relevance

/dpdk/lib/pipeline/
H A Drte_swx_pipeline.c6675 static instr_exec_t instruction_table[] = { variable
6869 p->instruction_table = calloc(RTE_SWX_PIPELINE_INSTRUCTION_TABLE_SIZE_MAX, in instruction_table_build()
6871 if (!p->instruction_table) in instruction_table_build()
6874 memcpy(p->instruction_table, instruction_table, sizeof(instruction_table)); in instruction_table_build()
6882 if (!p->instruction_table) in instruction_table_build_free()
6885 free(p->instruction_table); in instruction_table_build_free()
6886 p->instruction_table = NULL; in instruction_table_build_free()
6900 instr_exec_t instr = p->instruction_table[ip->type]; in instr_exec()
12602 p->instruction_table[INSTR_CUSTOM_0 + i] = g->func; in pipeline_adjust()
H A Drte_swx_pipeline_internal.h1412 instr_exec_t *instruction_table; member