HomeSort by relevance Sort by last modified time
    Searched refs:next_instr (Results 1 - 5 of 5) sorted by null

  /external/mesa3d/src/mesa/state_tracker/tests/
test_glsl_to_tgsi_lifetime.cpp 1362 glsl_to_tgsi_instruction *next_instr = new(mem_ctx) glsl_to_tgsi_instruction(); local
1395 glsl_to_tgsi_instruction *next_instr = new(mem_ctx) glsl_to_tgsi_instruction(); local
    [all...]
  /external/python/cpython2/Python/
ceval.c 759 goto *opcode_targets[*next_instr++]; \
767 goto *opcode_targets[*next_instr++]; \
797 register unsigned char *next_instr; local
881 #define INSTR_OFFSET() ((int)(next_instr - first_instr))
882 #define NEXTOP() (*next_instr++)
883 #define NEXTARG() (next_instr += 2, (next_instr[-1]<<8) + next_instr[-2])
884 #define PEEKARG() ((next_instr[2]<<8) + next_instr[1]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ceval.c 695 register unsigned char *next_instr; local
779 #define INSTR_OFFSET() ((int)(next_instr - first_instr))
780 #define NEXTOP() (*next_instr++)
781 #define NEXTARG() (next_instr += 2, (next_instr[-1]<<8) + next_instr[-2])
782 #define PEEKARG() ((next_instr[2]<<8) + next_instr[1])
783 #define JUMPTO(x) (next_instr = first_instr + (x))
784 #define JUMPBY(x) (next_instr += (x))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ceval.c 693 register unsigned char *next_instr; local
777 #define INSTR_OFFSET() ((int)(next_instr - first_instr))
778 #define NEXTOP() (*next_instr++)
779 #define NEXTARG() (next_instr += 2, (next_instr[-1]<<8) + next_instr[-2])
780 #define PEEKARG() ((next_instr[2]<<8) + next_instr[1])
781 #define JUMPTO(x) (next_instr = first_instr + (x))
782 #define JUMPBY(x) (next_instr += (x))
    [all...]
  /external/python/cpython3/Python/
ceval.c 557 const _Py_CODEUNIT *next_instr; local
698 (sizeof(_Py_CODEUNIT) * (int)(next_instr - first_instr))
700 _Py_CODEUNIT word = *next_instr; \
703 next_instr++; \
705 #define JUMPTO(x) (next_instr = first_instr + (x) / sizeof(_Py_CODEUNIT))
706 #define JUMPBY(x) (next_instr += (x) / sizeof(_Py_CODEUNIT))
739 _Py_CODEUNIT word = *next_instr; \
743 next_instr++; \
889 unless it's -1 in which case next_instr should be first_instr.
903 next_instr = first_instr
    [all...]

Completed in 94 milliseconds