Home
last modified time | relevance | path

Searched refs:xlat (Results 1 – 8 of 8) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dhuffman.c116 static void get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, in get_tree_codes() argument
126 xlat[*pos] = s; in get_tree_codes()
131 get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0, pfx, pl, in get_tree_codes()
134 get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0 + 1, pfx, pl, in get_tree_codes()
144 uint8_t xlat[256]; in build_huff_tree() local
147 get_tree_codes(bits, lens, xlat, nodes, head, 0, 0, in build_huff_tree()
149 return ff_init_vlc_sparse(vlc, nb_bits, pos, lens, 2, 2, bits, 4, 4, xlat, 1, 1, 0); in build_huff_tree()
Dmvha.c57 static void get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, in get_tree_codes() argument
67 xlat[*pos] = s + (pl == 0); in get_tree_codes()
72 get_tree_codes(bits, lens, xlat, nodes, nodes[node].l, pfx, pl, in get_tree_codes()
75 get_tree_codes(bits, lens, xlat, nodes, nodes[node].r, pfx, pl, in get_tree_codes()
86 uint8_t xlat[256]; in build_vlc() local
144 get_tree_codes(bits, lens, xlat, nodes, cur_node - 1, 0, 0, &pos); in build_vlc()
146 return ff_init_vlc_sparse(vlc, 12, pos, lens, 2, 2, bits, 4, 4, xlat, 1, 1, 0); in build_vlc()
Dylc.c63 static void get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, in get_tree_codes() argument
73 xlat[*pos] = s + (pl == 0); in get_tree_codes()
78 get_tree_codes(bits, lens, xlat, nodes, nodes[node].l, pfx, pl, in get_tree_codes()
81 get_tree_codes(bits, lens, xlat, nodes, nodes[node].r, pfx, pl, in get_tree_codes()
91 uint8_t xlat[256]; in build_vlc() local
147 get_tree_codes(bits, lens, xlat, nodes, cur_node - 1, 0, 0, &pos); in build_vlc()
150 bits, 4, 4, xlat, 1, 1, 0); in build_vlc()
Datrac3plus.c50 static av_cold void build_canonical_huff(const uint8_t *cb, const uint8_t **xlat, in build_canonical_huff() argument
70 *xlat, 1, 1, 0, INIT_VLC_USE_NEW_STATIC, NULL); in build_canonical_huff()
73 *xlat += index; in build_canonical_huff()
/third_party/musl/libc-test/src/functional/
Dfnmatch.c13 struct xlat { struct
26 static char *flagstr(const struct xlat *map, int flags) in flagstr() argument
/third_party/python/Tools/scripts/
Dhighlight.py178 xlat = {'{': r'\{', '}': r'\}', '\\': r'\textbackslash{}'}
179 return re.sub(r'[\\{}]', lambda mo: xlat[mo.group()], s)
/third_party/mesa3d/src/mesa/x86/
Dassyntax.h680 #define XLAT CHOICE(xlat, xlat, xlat)
1393 #define XLAT xlat
/third_party/python/Doc/faq/
Dprogramming.rst1873 xlat = {'zero': 0, 'one': 1, 'ten': 10}
1875 value = cls.xlat.get(value, value)