Home
last modified time | relevance | path

Searched refs:dict_offset (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/lz4_flex/src/block/
Ddecompress_safe.rs249 let (dict_offset, did_overflow) = ext_dict.len().overflowing_sub(offset - output.pos()); in copy_from_dict()
254 let dict_match_length = match_length.min(ext_dict.len() - dict_offset); in copy_from_dict()
255 let ext_match = &ext_dict[dict_offset..dict_offset + dict_match_length]; in copy_from_dict()
Ddecompress.rs102 let dict_offset = ext_dict.len() + output_ptr.offset_from(output_base) as usize - offset; in copy_from_dict() localVariable
104 let dict_match_length = match_length.min(ext_dict.len() - dict_offset); in copy_from_dict()
107 ext_dict.as_ptr().add(dict_offset), in copy_from_dict()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/internal/
Dpycore_code.h68 _Py_CODEUNIT dict_offset; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/internal/
Dpycore_code.h68 _Py_CODEUNIT dict_offset; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/internal/
Dpycore_code.h68 _Py_CODEUNIT dict_offset; member
/aosp_15_r20/external/python/cpython3/Include/internal/
Dpycore_code.h68 _Py_CODEUNIT dict_offset; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/internal/
Dpycore_code.h68 _Py_CODEUNIT dict_offset; member
/aosp_15_r20/external/zstd/doc/educational_decoder/
H A Dzstd_decompress.c1352 const size_t dict_offset = in execute_match_copy() local
1355 memcpy(write_ptr, ctx->dict_content + dict_offset, dict_copy); in execute_match_copy()
/aosp_15_r20/external/python/cpython3/Python/
Dspecialize.c1011 *(int16_t *)&cache->dict_offset = (int16_t)MANAGED_DICT_OFFSET; in _Py_Specialize_LoadMethod()
1016 cache->dict_offset = (uint16_t)owner_cls->tp_dictoffset; in _Py_Specialize_LoadMethod()
Dceval.c4581 int dictoffset = *(int16_t *)&cache->dict_offset;