Searched refs:new_ref (Results 1 – 2 of 2) sorted by relevance
| /f-stack/dpdk/drivers/common/dpaax/caamflib/ |
| H A D | rta.h | 838 #define PATCH_JUMP(program, line, new_ref) rta_patch_jmp(program, line, new_ref) argument 853 #define PATCH_MOVE(program, line, new_ref) \ argument 854 rta_patch_move(program, line, new_ref) 869 #define PATCH_LOAD(program, line, new_ref) \ argument 870 rta_patch_load(program, line, new_ref) 885 #define PATCH_STORE(program, line, new_ref) \ argument 886 rta_patch_store(program, line, new_ref) 901 #define PATCH_HDR(program, line, new_ref) \ argument 902 rta_patch_header(program, line, new_ref)
|
| /f-stack/dpdk/drivers/common/dpaax/caamflib/rta/ |
| H A D | sec_run_time_asm.h | 664 rta_patch_move(struct program *program, int line, unsigned int new_ref) in rta_patch_move() argument 675 opcode |= (new_ref << (MOVE_OFFSET_SHIFT + 2)) & MOVE_OFFSET_MASK; in rta_patch_move() 682 rta_patch_jmp(struct program *program, int line, unsigned int new_ref) in rta_patch_jmp() argument 693 opcode |= (new_ref - (line + program->start_pc)) & JUMP_OFFSET_MASK; in rta_patch_jmp() 711 opcode |= (new_ref << HDR_START_IDX_SHIFT) & in rta_patch_header() 715 opcode |= (new_ref << HDR_START_IDX_SHIFT) & HDR_START_IDX_MASK; in rta_patch_header() 724 rta_patch_load(struct program *program, int line, unsigned int new_ref) in rta_patch_load() argument 736 opcode |= (new_ref << LDST_OFFSET_SHIFT) & LDST_OFFSET_MASK; in rta_patch_load() 738 opcode |= (new_ref << (LDST_OFFSET_SHIFT + 2)) & in rta_patch_load() 765 opcode |= ((new_ref) << LDST_OFFSET_SHIFT) & LDST_OFFSET_MASK; in rta_patch_store() [all …]
|