Home
last modified time | relevance | path

Searched refs:imm3 (Results 1 – 5 of 5) sorted by relevance

/hardware/google/apf/
Ddisassembler.c371 uint8_t imm3 = DECODE_IMM(1); in apf_disassemble() local
372 bool jmp = imm3 & 1; in apf_disassemble()
373 uint8_t len = ((imm3 >> 1) & 3) + 1; in apf_disassemble()
374 uint8_t cnt = (imm3 >> 3) + 2; in apf_disassemble()
/hardware/google/apf/v7/
Dapf_interpreter_source.c474 u8 imm3 = DECODE_U8(); // 3rd imm, at worst 9 bytes past prog_len in do_apf_run() local
475 bool jmp = imm3 & 1; // =0 jmp on match, =1 jmp on no match in do_apf_run()
476 u8 len = ((imm3 >> 1) & 3) + 1; // size [1..4] in bytes of an element in do_apf_run()
477 u8 cnt = (imm3 >> 3) + 2; // number [2..33] of elements in set in do_apf_run()
Dapf_interpreter.c1020 u8 imm3 = DECODE_U8(); /* 3rd imm, at worst 9 bytes past prog_len */ in do_apf_run() local
1021 Boolean jmp = imm3 & 1; /* =0 jmp on match, =1 jmp on no match */ in do_apf_run()
1022 u8 len = ((imm3 >> 1) & 3) + 1; /* size [1..4] in bytes of an element */ in do_apf_run()
1023 u8 cnt = (imm3 >> 3) + 2; /* number [2..33] of elements in set */ in do_apf_run()
/hardware/google/apf/v6/
Dapf_interpreter.c1010 u8 imm3 = DECODE_U8(); /* 3rd imm, at worst 9 bytes past prog_len */ in do_apf_run() local
1011 Boolean jmp = imm3 & 1; /* =0 jmp on match, =1 jmp on no match */ in do_apf_run()
1012 u8 len = ((imm3 >> 1) & 3) + 1; /* size [1..4] in bytes of an element */ in do_apf_run()
1013 u8 cnt = (imm3 >> 3) + 2; /* number [2..33] of elements in set */ in do_apf_run()
/hardware/google/apf/devtools/
Dapf_interpreter.c1020 u8 imm3 = DECODE_U8(); /* 3rd imm, at worst 9 bytes past prog_len */ in do_apf_run() local
1021 Boolean jmp = imm3 & 1; /* =0 jmp on match, =1 jmp on no match */ in do_apf_run()
1022 u8 len = ((imm3 >> 1) & 3) + 1; /* size [1..4] in bytes of an element */ in do_apf_run()
1023 u8 cnt = (imm3 >> 3) + 2; /* number [2..33] of elements in set */ in do_apf_run()