Home
last modified time | relevance | path

Searched refs:orig_source (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/python/asn1crypto/dev/
Dversion.py56 orig_source = ''
58 orig_source = f.read()
62 for line in orig_source.splitlines(True):
81 if new_source != orig_source:
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
H A Danf_test.py441 orig_source = parser.unparse(node, indentation=' ')
442 orig_str = textwrap.dedent(orig_source).strip()
/aosp_15_r20/external/libaom/av1/encoder/
H A Dencoder_alloc.h326 aom_free_frame_buffer(&cpi->orig_source); in dealloc_compressor_data()
H A Dencode_strategy.c1696 assert(cpi->orig_source.buffer_alloc_sz > 0);
1697 cpi->source = &cpi->orig_source;
H A Dencoder.c2697 if (cpi->orig_source.buffer_alloc_sz == 0 || in encode_without_recode()
2702 &cpi->orig_source, cpi->oxcf.frm_dim_cfg.width, in encode_without_recode()
2711 aom_yv12_copy_y(cpi->source, &cpi->orig_source, 1); in encode_without_recode()
2712 aom_yv12_copy_u(cpi->source, &cpi->orig_source, 1); in encode_without_recode()
2713 aom_yv12_copy_v(cpi->source, &cpi->orig_source, 1); in encode_without_recode()
H A Dencoder.h2973 YV12_BUFFER_CONFIG orig_source; member