Home
last modified time | relevance | path

Searched refs:cache_idx (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/parser/regexp/
Dre-compiler.c165 uint8_t cache_idx = JERRY_CONTEXT (re_cache_idx); in re_compile_bytecode() local
167 if (JERRY_CONTEXT (re_cache)[cache_idx] != NULL) in re_compile_bytecode()
169 ecma_bytecode_deref ((ecma_compiled_code_t *) JERRY_CONTEXT (re_cache)[cache_idx]); in re_compile_bytecode()
172 JERRY_CONTEXT (re_cache)[cache_idx] = re_compiled_code_p; in re_compile_bytecode()
173 JERRY_CONTEXT (re_cache_idx) = (uint8_t) (cache_idx + 1) % RE_CACHE_SIZE; in re_compile_bytecode()
/third_party/ffmpeg/libavcodec/
Dh264_mvpred.h632 int cache_idx = -1 + i * 2 * 8; in fill_decode_caches() local
636 AV_COPY32(mv_cache[cache_idx], in fill_decode_caches()
638 AV_COPY32(mv_cache[cache_idx + 8], in fill_decode_caches()
640 ref_cache[cache_idx] = ref[b8_xy + (left_block[0 + i * 2] & ~1)]; in fill_decode_caches()
641 ref_cache[cache_idx + 8] = ref[b8_xy + (left_block[1 + i * 2] & ~1)]; in fill_decode_caches()
643 AV_ZERO32(mv_cache[cache_idx]); in fill_decode_caches()
644 AV_ZERO32(mv_cache[cache_idx + 8]); in fill_decode_caches()
645 ref_cache[cache_idx] = in fill_decode_caches()
646 ref_cache[cache_idx + 8] = (left_type[LEFT(i)]) ? LIST_NOT_USED in fill_decode_caches()
Dwebp.c548 uint32_t cache_idx = (0x1E35A7BD * c) >> (32 - img->color_cache_bits); in color_cache_put() local
549 img->color_cache[cache_idx] = c; in color_cache_put()
732 int cache_idx = v - (NUM_LITERAL_CODES + NUM_LENGTH_CODES); in decode_entropy_coded_image() local
738 if (cache_idx >= 1 << img->color_cache_bits) { in decode_entropy_coded_image()
743 AV_WB32(p, img->color_cache[cache_idx]); in decode_entropy_coded_image()
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h33983 u16 cache_idx; member