/third_party/node/deps/brotli/c/enc/ |
H A D | hash_rolling_inc.h | 8 /* template parameters: FN, JUMP, NUMBUCKETS, MASK, CHUNKLEN */ 10 /* JUMP = skip bytes for speedup */ 66 for (i = 0; i < CHUNKLEN; i += JUMP) { in Initialize() 84 for (i = 0; i < CHUNKLEN; i += JUMP) { in Prepare() 126 if ((position & (JUMP - 1)) != 0) { in StitchToPreviousBlock() 127 size_t diff = JUMP - (position & (JUMP - 1)); in StitchToPreviousBlock() 161 if ((cur_ix & (JUMP - 1)) != 0) return; in FindLongestMatch() 166 for (pos = self->next_ix; pos <= cur_ix; pos += JUMP) { in FindLongestMatch() 202 self->next_ix = cur_ix + JUMP; in FindLongestMatch() [all...] |
H A D | hash.h | 331 #define JUMP 4 macro 335 #undef JUMP macro 340 #define JUMP 1 macro 344 #undef JUMP macro
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | hash_rolling_inc.h | 8 /* template parameters: FN, JUMP, NUMBUCKETS, MASK, CHUNKLEN */ 10 /* JUMP = skip bytes for speedup */ 66 for (i = 0; i < CHUNKLEN; i += JUMP) { in Initialize() 84 for (i = 0; i < CHUNKLEN; i += JUMP) { in Prepare() 126 if ((position & (JUMP - 1)) != 0) { in StitchToPreviousBlock() 127 size_t diff = JUMP - (position & (JUMP - 1)); in StitchToPreviousBlock() 161 if ((cur_ix & (JUMP - 1)) != 0) return; in FindLongestMatch() 166 for (pos = self->next_ix; pos <= cur_ix; pos += JUMP) { in FindLongestMatch() 202 self->next_ix = cur_ix + JUMP; in FindLongestMatch() [all...] |
H A D | hash.h | 331 #define JUMP 4 macro 335 #undef JUMP macro 340 #define JUMP 1 macro 344 #undef JUMP macro
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_jit_compile.c | 625 #define JUMP(type) \ macro 3126 add_jump(compiler, &common->stackalloc, JUMP(SLJIT_FAST_CALL)); in flush_stubs() 3138 add_jump(compiler, &common->calllimit, JUMP(SLJIT_ZERO)); in count_match() 3647 add_jump(compiler, &common->partialmatch, JUMP(SLJIT_JUMP)); in check_partial() 3671 add_jump(compiler, end_reached, JUMP(SLJIT_JUMP)); in check_str_end() 3679 add_jump(compiler, &common->partialmatch, JUMP(SLJIT_JUMP)); in check_str_end() 3705 add_jump(compiler, backtracks, JUMP(SLJIT_JUMP)); in detect_partial_match() 3712 add_jump(compiler, &common->partialmatch, JUMP(SLJIT_JUMP)); in detect_partial_match() 3771 add_jump(compiler, common->invalid_utf ? &common->utfreadchar_invalid : &common->utfreadchar, JUMP(SLJIT_FAST_CALL)); in peek_char() 3789 add_jump(compiler, &common->utfreadchar_invalid, JUMP(SLJIT_FAST_CAL in peek_char() [all...] |
H A D | pcre2_jit_simd_inc.h | 647 jump[1] = JUMP(SLJIT_JUMP); 751 add_jump(compiler, &common->failed_match, JUMP(SLJIT_JUMP)); 1749 jump[1] = JUMP(SLJIT_JUMP);
|
/third_party/python/Python/ |
H A D | compile.c | 81 #define JUMP -5 macro 97 ((opcode) == JUMP || \ 1053 case JUMP: in stack_effect() 2934 ADDOP_JUMP_NOLINE(c, JUMP, end); in compiler_jump_if() 2966 ADDOP_JUMP_NOLINE(c, JUMP, end); in compiler_jump_if() 2970 ADDOP_JUMP_NOLINE(c, JUMP, next); in compiler_jump_if() 3004 ADDOP_JUMP_NOLINE(c, JUMP, end); in compiler_ifexp() 3091 ADDOP_JUMP_NOLINE(c, JUMP, end); in compiler_if() 3123 ADDOP_JUMP(c, JUMP, start); in compiler_for() 3170 ADDOP_JUMP(c, JUMP, star in compiler_async_for() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | R600InstrInfo.cpp | 666 return Opcode == R600::JUMP || Opcode == R600::JUMP_COND; 694 // Remove successive JUMP 695 while (I != MBB.begin() && std::prev(I)->getOpcode() == R600::JUMP) { 706 if (LastOpc == R600::JUMP) { 728 if (SecondLastOpc == R600::JUMP_COND && LastOpc == R600::JUMP) { 767 BuildMI(&MBB, DL, get(R600::JUMP)).addMBB(TBB); 793 BuildMI(&MBB, DL, get(R600::JUMP)).addMBB(FBB); 830 case R600::JUMP: 855 case R600::JUMP:
|
H A D | AMDILCFGStructurizer.cpp | 517 case R600::JUMP: return R600::IF_PREDICATE_SET; in getBranchNzeroOpcode() 528 case R600::JUMP: return R600::IF_PREDICATE_SET; in getBranchZeroOpcode() 539 case R600::JUMP: return R600::CONTINUE_LOGICALNZ_i32; in getContinueNzeroOpcode() 548 case R600::JUMP: return R600::CONTINUE_LOGICALZ_i32; in getContinueZeroOpcode() 587 case R600::JUMP: in isUncondBranch()
|
H A D | R600ISelLowering.cpp | 396 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::JUMP)) in EmitInstrWithCustomInserter()
|
/third_party/python/Lib/re/ |
H A D | _compiler.py | 175 emit(JUMP) 204 emit(JUMP) 668 elif op is JUMP:
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3.h | 2202 INSTR0(JUMP)
|