Home
last modified time | relevance | path

Searched refs:bc (Results 1 – 25 of 703) sorted by relevance

12345678910>>...29

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dbytecode.c42 yasm_bc_set_multiple(yasm_bytecode *bc, yasm_expr *e) in yasm_bc_set_multiple() argument
44 if (bc->multiple) in yasm_bc_set_multiple()
45 bc->multiple = yasm_expr_create_tree(bc->multiple, YASM_EXPR_MUL, e, in yasm_bc_set_multiple()
48 bc->multiple = e; in yasm_bc_set_multiple()
52 yasm_bc_finalize_common(yasm_bytecode *bc, yasm_bytecode *prev_bc) in yasm_bc_finalize_common() argument
57 yasm_bc_calc_len_common(yasm_bytecode *bc, yasm_bc_add_span_func add_span, in yasm_bc_calc_len_common() argument
66 yasm_bc_expand_common(yasm_bytecode *bc, int span, long old_val, long new_val, in yasm_bc_expand_common() argument
75 yasm_bc_tobytes_common(yasm_bytecode *bc, unsigned char **buf, in yasm_bc_tobytes_common() argument
86 yasm_bc_transform(yasm_bytecode *bc, const yasm_bytecode_callback *callback, in yasm_bc_transform() argument
89 if (bc->callback) in yasm_bc_transform()
[all …]
Dbc-reserve.c47 static void bc_reserve_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc);
48 static int bc_reserve_elem_size(yasm_bytecode *bc);
49 static int bc_reserve_calc_len(yasm_bytecode *bc,
52 static int bc_reserve_tobytes(yasm_bytecode *bc, unsigned char **bufp,
88 bc_reserve_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc) in bc_reserve_finalize() argument
90 bytecode_reserve *reserve = (bytecode_reserve *)bc->contents; in bc_reserve_finalize()
92 if (!bc->multiple) in bc_reserve_finalize()
93 bc->multiple = reserve->numitems; in bc_reserve_finalize()
95 bc->multiple = yasm_expr_create_tree(bc->multiple, YASM_EXPR_MUL, in bc_reserve_finalize()
96 reserve->numitems, bc->line); in bc_reserve_finalize()
[all …]
Dbytecode.h56 (void *add_span_data, yasm_bytecode *bc, int id, const yasm_value *value,
83 void (*finalize) (yasm_bytecode *bc, yasm_bytecode *prev_bc);
91 int (*elem_size) (yasm_bytecode *bc);
108 int (*calc_len) (yasm_bytecode *bc, yasm_bc_add_span_func add_span,
132 int (*expand) (yasm_bytecode *bc, int span, long old_val, long new_val,
159 int (*tobytes) (yasm_bytecode *bc, unsigned char **bufp,
248 void yasm_bc_transform(yasm_bytecode *bc,
256 void yasm_bc_finalize_common(yasm_bytecode *bc, yasm_bytecode *prev_bc);
262 int yasm_bc_calc_len_common(yasm_bytecode *bc, yasm_bc_add_span_func add_span,
271 (yasm_bytecode *bc, int span, long old_val, long new_val,
[all …]
Dbc-org.c48 static void bc_org_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc);
49 static int bc_org_calc_len(yasm_bytecode *bc, yasm_bc_add_span_func add_span,
51 static int bc_org_expand(yasm_bytecode *bc, int span, long old_val,
54 static int bc_org_tobytes(yasm_bytecode *bc, unsigned char **bufp,
86 bc_org_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc) in bc_org_finalize() argument
91 bc_org_calc_len(yasm_bytecode *bc, yasm_bc_add_span_func add_span, in bc_org_calc_len() argument
94 bytecode_org *org = (bytecode_org *)bc->contents; in bc_org_calc_len()
98 if (bc_org_expand(bc, 0, 0, (long)bc->offset, &neg_thres, &pos_thres) < 0) in bc_org_calc_len()
105 bc_org_expand(yasm_bytecode *bc, int span, long old_val, long new_val, in bc_org_expand() argument
108 bytecode_org *org = (bytecode_org *)bc->contents; in bc_org_expand()
[all …]
Dsection.c308 yasm_bytecode *bc; in yasm_object_get_general() local
335 bc = yasm_bc_create_common(NULL, NULL, 0); in yasm_object_get_general()
336 bc->section = s; in yasm_object_get_general()
337 bc->offset = 0; in yasm_object_get_general()
338 STAILQ_INSERT_TAIL(&s->bcs, bc, link); in yasm_object_get_general()
607 yasm_section_bcs_append(yasm_section *sect, yasm_bytecode *bc) in yasm_section_bcs_append() argument
609 if (bc) { in yasm_section_bcs_append()
610 if (bc->callback) { in yasm_section_bcs_append()
611 bc->section = sect; /* record parent section */ in yasm_section_bcs_append()
612 STAILQ_INSERT_TAIL(&sect->bcs, bc, link); in yasm_section_bcs_append()
[all …]
Dbc-align.c54 static void bc_align_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc);
55 static int bc_align_calc_len(yasm_bytecode *bc, yasm_bc_add_span_func add_span,
57 static int bc_align_expand(yasm_bytecode *bc, int span, long old_val,
60 static int bc_align_tobytes(yasm_bytecode *bc, unsigned char **bufp,
105 bc_align_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc) in bc_align_finalize() argument
107 bytecode_align *align = (bytecode_align *)bc->contents; in bc_align_finalize()
120 bc_align_calc_len(yasm_bytecode *bc, yasm_bc_add_span_func add_span, in bc_align_calc_len() argument
126 if (bc_align_expand(bc, 0, 0, (long)bc->offset, &neg_thres, in bc_align_calc_len()
134 bc_align_expand(yasm_bytecode *bc, int span, long old_val, long new_val, in bc_align_expand() argument
137 bytecode_align *align = (bytecode_align *)bc->contents; in bc_align_expand()
[all …]
/external/mesa3d/src/gallium/drivers/r600/
Dr600_asm.c36 static inline unsigned int r600_bytecode_get_num_operands(struct r600_bytecode *bc, struct r600_byt… in r600_bytecode_get_num_operands() argument
41 switch (bc->chip_class) { in r600_bytecode_get_num_operands()
212 int r700_bytecode_alu_build(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, unsigned id);
257 void r600_bytecode_init(struct r600_bytecode *bc, enum chip_class chip_class, enum radeon_family fa… in r600_bytecode_init() argument
261 bc->ar_handling = AR_HANDLE_RV6XX; in r600_bytecode_init()
262 bc->r6xx_nop_after_rel_dst = 1; in r600_bytecode_init()
264 bc->ar_handling = AR_HANDLE_NORMAL; in r600_bytecode_init()
265 bc->r6xx_nop_after_rel_dst = 0; in r600_bytecode_init()
268 LIST_INITHEAD(&bc->cf); in r600_bytecode_init()
269 bc->chip_class = chip_class; in r600_bytecode_init()
[all …]
Deg_asm.c30 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf) in eg_bytecode_cf_build() argument
41 bc->bytecode[id++] = in eg_bytecode_cf_build()
49 bc->bytecode[id++] = EG_V_SQ_CF_ALU_WORD1_SQ_CF_INST_EXTENDED | in eg_bytecode_cf_build()
56 bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1) | in eg_bytecode_cf_build()
60 bc->bytecode[id++] = cf->inst | in eg_bytecode_cf_build()
69 bc->bytecode[id++] = S_SQ_CF_WORD0_ADDR(cf->addr >> 1); in eg_bytecode_cf_build()
70 bc->bytecode[id++] = cf->inst | in eg_bytecode_cf_build()
76 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(cf->output.gpr) | in eg_bytecode_cf_build()
80 bc->bytecode[id] = S_SQ_CF_ALLOC_EXPORT_WORD1_BURST_COUNT(cf->output.burst_count - 1) | in eg_bytecode_cf_build()
87 if (bc->chip_class == EVERGREEN) /* no EOP on cayman */ in eg_bytecode_cf_build()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
Dr600_asm.c36 static inline unsigned int r600_bytecode_get_num_operands(struct r600_bytecode *bc, struct r600_byt… in r600_bytecode_get_num_operands() argument
41 switch (bc->chip_class) { in r600_bytecode_get_num_operands()
212 int r700_bytecode_alu_build(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, unsigned id);
257 void r600_bytecode_init(struct r600_bytecode *bc, enum chip_class chip_class, enum radeon_family fa… in r600_bytecode_init() argument
261 bc->ar_handling = AR_HANDLE_RV6XX; in r600_bytecode_init()
262 bc->r6xx_nop_after_rel_dst = 1; in r600_bytecode_init()
264 bc->ar_handling = AR_HANDLE_NORMAL; in r600_bytecode_init()
265 bc->r6xx_nop_after_rel_dst = 0; in r600_bytecode_init()
268 LIST_INITHEAD(&bc->cf); in r600_bytecode_init()
269 bc->chip_class = chip_class; in r600_bytecode_init()
[all …]
Deg_asm.c30 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf) in eg_bytecode_cf_build() argument
41 bc->bytecode[id++] = in eg_bytecode_cf_build()
49 bc->bytecode[id++] = EG_V_SQ_CF_ALU_WORD1_SQ_CF_INST_EXTENDED | in eg_bytecode_cf_build()
56 bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1) | in eg_bytecode_cf_build()
60 bc->bytecode[id++] = cf->inst | in eg_bytecode_cf_build()
69 bc->bytecode[id++] = S_SQ_CF_WORD0_ADDR(cf->addr >> 1); in eg_bytecode_cf_build()
70 bc->bytecode[id++] = cf->inst | in eg_bytecode_cf_build()
76 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(cf->output.gpr) | in eg_bytecode_cf_build()
80 bc->bytecode[id] = S_SQ_CF_ALLOC_EXPORT_WORD1_BURST_COUNT(cf->output.burst_count - 1) | in eg_bytecode_cf_build()
87 if (bc->chip_class == EVERGREEN) /* no EOP on cayman */ in eg_bytecode_cf_build()
[all …]
/external/llvm/test/Object/
Dextract.ll10 ; RUN: rm -f very_long_bytecode_file_name.bc
11 ; RUN: llvm-ar p %p/Inputs/GNU.a very_long_bytecode_file_name.bc | \
12 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc -
13 ; RUN: llvm-ar x %p/Inputs/GNU.a very_long_bytecode_file_name.bc
14 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc \
15 ; RUN: very_long_bytecode_file_name.bc
17 ; RUN: rm -f very_long_bytecode_file_name.bc
18 ; RUN: llvm-ar p %p/Inputs/MacOSX.a very_long_bytecode_file_name.bc | \
19 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc -
20 ; RUN: llvm-ar x %p/Inputs/MacOSX.a very_long_bytecode_file_name.bc
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
Dcv-symline.c163 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
165 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
173 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
175 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
183 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
185 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
192 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
194 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
256 yasm_bytecode *bc; in cv8_add_sym_objname() local
263 bc = yasm_bc_create_common(&cv_sym_bc_callback, cvs, 0); in cv8_add_sym_objname()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
Dlc3bbc.c39 static int lc3b_bc_insn_calc_len(yasm_bytecode *bc,
42 static int lc3b_bc_insn_expand(yasm_bytecode *bc, int span, long old_val,
45 static int lc3b_bc_insn_tobytes(yasm_bytecode *bc, unsigned char **bufp,
65 yasm_lc3b__bc_transform_insn(yasm_bytecode *bc, lc3b_insn *insn) in yasm_lc3b__bc_transform_insn() argument
67 yasm_bc_transform(bc, &lc3b_bc_callback_insn, insn); in yasm_lc3b__bc_transform_insn()
133 lc3b_bc_insn_calc_len(yasm_bytecode *bc, yasm_bc_add_span_func add_span, in lc3b_bc_insn_calc_len() argument
136 lc3b_insn *insn = (lc3b_insn *)bc->contents; in lc3b_bc_insn_calc_len()
140 bc->len += 2; in lc3b_bc_insn_calc_len()
148 || target_prevbc->section != bc->section)) { in lc3b_bc_insn_calc_len()
154 add_span(add_span_data, bc, 1, &insn->imm, -512+(long)bc->len, in lc3b_bc_insn_calc_len()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
Dwin64-except.c42 static void win64_uwinfo_bc_finalize(yasm_bytecode *bc,
45 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
46 static int win64_uwinfo_bc_expand(yasm_bytecode *bc, int span, long old_val,
50 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
57 static void win64_uwcode_bc_finalize(yasm_bytecode *bc,
60 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
61 static int win64_uwcode_bc_expand(yasm_bytecode *bc, int span, long old_val,
65 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
206 win64_uwinfo_bc_finalize(yasm_bytecode *bc, yasm_bytecode *prev_bc) in win64_uwinfo_bc_finalize() argument
208 coff_unwind_info *info = (coff_unwind_info *)bc->contents; in win64_uwinfo_bc_finalize()
[all …]
/external/qemu/slirp-android/
Dbootp.c56 BOOTPClient *bc; in get_new_addr() local
60 bc = &bootp_clients[i]; in get_new_addr()
61 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) in get_new_addr()
66 bc = &bootp_clients[i]; in get_new_addr()
67 bc->allocated = 1; in get_new_addr()
71 return bc; in get_new_addr()
79 BOOTPClient *bc; in request_addr() local
83 bc = &bootp_clients[(req_addr & 0xff) - START_ADDR]; in request_addr()
84 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) { in request_addr()
85 bc->allocated = 1; in request_addr()
[all …]
/external/qemu/slirp/
Dbootp.c55 BOOTPClient *bc; in get_new_addr() local
59 bc = &bootp_clients[i]; in get_new_addr()
60 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) in get_new_addr()
65 bc = &bootp_clients[i]; in get_new_addr()
66 bc->allocated = 1; in get_new_addr()
68 return bc; in get_new_addr()
76 BOOTPClient *bc; in request_addr() local
80 bc = &bootp_clients[(req_addr & 0xff) - START_ADDR]; in request_addr()
81 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) { in request_addr()
82 bc->allocated = 1; in request_addr()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
Dx86bc.c39 static int x86_bc_insn_calc_len(yasm_bytecode *bc,
42 static int x86_bc_insn_expand(yasm_bytecode *bc, int span, long old_val,
45 static int x86_bc_insn_tobytes(yasm_bytecode *bc, unsigned char **bufp,
52 static int x86_bc_jmp_calc_len(yasm_bytecode *bc,
55 static int x86_bc_jmp_expand(yasm_bytecode *bc, int span, long old_val,
58 static int x86_bc_jmp_tobytes(yasm_bytecode *bc, unsigned char **bufp,
66 static int x86_bc_jmpfar_calc_len(yasm_bytecode *bc,
70 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
142 yasm_x86__bc_transform_insn(yasm_bytecode *bc, x86_insn *insn) in yasm_x86__bc_transform_insn() argument
144 yasm_bc_transform(bc, &x86_bc_callback_insn, insn); in yasm_x86__bc_transform_insn()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
Dbytecode.pxi27 cdef yasm_bytecode *bc
31 def __cinit__(self, bc): argument
32 self.bc = NULL
33 if PyCObject_Check(bc):
34 self.bc = <yasm_bytecode *>__get_voidp(bc, Bytecode)
41 if self.bc.section == NULL:
42 yasm_bc_destroy(self.bc)
45 def __get__(self): return self.bc.len
46 def __set__(self, value): self.bc.len = value
48 def __get__(self): return self.bc.mult_int
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/
Dstabs-dbgfmt.c119 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
121 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
129 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
131 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
182 yasm_bytecode *bc; in stabs_dbgfmt_append_bcstr() local
184 bc = yasm_bc_create_common(&stabs_bc_str_callback, yasm__xstrdup(str), 0); in stabs_dbgfmt_append_bcstr()
185 bc->len = (unsigned long)(strlen(str)+1); in stabs_dbgfmt_append_bcstr()
186 bc->offset = yasm_bc_next_offset(yasm_section_bcs_last(sect)); in stabs_dbgfmt_append_bcstr()
188 yasm_section_bcs_append(sect, bc); in stabs_dbgfmt_append_bcstr()
190 return bc; in stabs_dbgfmt_append_bcstr()
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
Ddecodemv.c21 static B_PREDICTION_MODE read_bmode(vp8_reader *bc, const vp8_prob *p) in read_bmode() argument
23 const int i = vp8_treed_read(bc, vp8_bmode_tree, p); in read_bmode()
28 static MB_PREDICTION_MODE read_ymode(vp8_reader *bc, const vp8_prob *p) in read_ymode() argument
30 const int i = vp8_treed_read(bc, vp8_ymode_tree, p); in read_ymode()
35 static MB_PREDICTION_MODE read_kf_ymode(vp8_reader *bc, const vp8_prob *p) in read_kf_ymode() argument
37 const int i = vp8_treed_read(bc, vp8_kf_ymode_tree, p); in read_kf_ymode()
42 static MB_PREDICTION_MODE read_uv_mode(vp8_reader *bc, const vp8_prob *p) in read_uv_mode() argument
44 const int i = vp8_treed_read(bc, vp8_uv_mode_tree, p); in read_uv_mode()
51 vp8_reader *const bc = & pbi->mbc[8]; in read_kf_modes() local
55 mi->mbmi.mode = read_kf_ymode(bc, vp8_kf_ymode_prob); in read_kf_modes()
[all …]
/external/libvpx/libvpx/vp8/decoder/
Ddecodemv.c21 static B_PREDICTION_MODE read_bmode(vp8_reader *bc, const vp8_prob *p) in read_bmode() argument
23 const int i = vp8_treed_read(bc, vp8_bmode_tree, p); in read_bmode()
28 static MB_PREDICTION_MODE read_ymode(vp8_reader *bc, const vp8_prob *p) in read_ymode() argument
30 const int i = vp8_treed_read(bc, vp8_ymode_tree, p); in read_ymode()
35 static MB_PREDICTION_MODE read_kf_ymode(vp8_reader *bc, const vp8_prob *p) in read_kf_ymode() argument
37 const int i = vp8_treed_read(bc, vp8_kf_ymode_tree, p); in read_kf_ymode()
42 static MB_PREDICTION_MODE read_uv_mode(vp8_reader *bc, const vp8_prob *p) in read_uv_mode() argument
44 const int i = vp8_treed_read(bc, vp8_uv_mode_tree, p); in read_uv_mode()
51 vp8_reader *const bc = & pbi->mbc[8]; in read_kf_modes() local
55 mi->mbmi.mode = read_kf_ymode(bc, vp8_kf_ymode_prob); in read_kf_modes()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
Ddwarf2-dbgfmt.c46 (yasm_bytecode *bc, yasm_bc_add_span_func add_span, void *add_span_data);
48 (yasm_bytecode *bc, unsigned char **bufp, unsigned char *bufstart, void *d,
140 yasm_dwarf2__append_bc(yasm_section *sect, yasm_bytecode *bc) in yasm_dwarf2__append_bc() argument
143 bc->offset = yasm_bc_next_offset(precbc); in yasm_dwarf2__append_bc()
144 yasm_section_bcs_append(sect, bc); in yasm_dwarf2__append_bc()
178 yasm_dwarf2__bc_sym(yasm_symtab *symtab, yasm_bytecode *bc) in yasm_dwarf2__bc_sym() argument
181 if (bc->symrecs && bc->symrecs[0]) in yasm_dwarf2__bc_sym()
182 sym = bc->symrecs[0]; in yasm_dwarf2__bc_sym()
184 sym = yasm_symtab_define_label(symtab, ".bcsym", bc, 0, 0); in yasm_dwarf2__bc_sym()
194 yasm_bytecode *bc; in yasm_dwarf2__add_head() local
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
Dbytecode.py48 bc = ByteCode()
49 bc.op = self[self.offset]
50 bc.offset = self.offset
53 if bc.op >= opcode.HAVE_ARGUMENT:
54 bc.arg = self[self.offset+1] + 256*self[self.offset+2]
58 if bc.op in opcode.hasjrel:
59 label = next_offset + bc.arg
60 elif bc.op in opcode.hasjabs:
61 label = bc.arg
62 bc.jump_to = label
[all …]
/external/libvpx/libvpx/vp8/encoder/
Dbitstream.c113 vp8_writer *const w = cpi->bc; in update_mbintra_mode_probs()
135 static void write_ymode(vp8_writer *bc, int m, const vp8_prob *p) in write_ymode() argument
137 vp8_write_token(bc, vp8_ymode_tree, p, vp8_ymode_encodings + m); in write_ymode()
140 static void kfwrite_ymode(vp8_writer *bc, int m, const vp8_prob *p) in kfwrite_ymode() argument
142 vp8_write_token(bc, vp8_kf_ymode_tree, p, vp8_kf_ymode_encodings + m); in kfwrite_ymode()
145 static void write_uv_mode(vp8_writer *bc, int m, const vp8_prob *p) in write_uv_mode() argument
147 vp8_write_token(bc, vp8_uv_mode_tree, p, vp8_uv_mode_encodings + m); in write_uv_mode()
151 static void write_bmode(vp8_writer *bc, int m, const vp8_prob *p) in write_bmode() argument
153 vp8_write_token(bc, vp8_bmode_tree, p, vp8_bmode_encodings + m); in write_bmode()
156 static void write_split(vp8_writer *bc, int x) in write_split() argument
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
Dbitstream.c112 vp8_writer *const w = cpi->bc; in update_mbintra_mode_probs()
134 static void write_ymode(vp8_writer *bc, int m, const vp8_prob *p) in write_ymode() argument
136 vp8_write_token(bc, vp8_ymode_tree, p, vp8_ymode_encodings + m); in write_ymode()
139 static void kfwrite_ymode(vp8_writer *bc, int m, const vp8_prob *p) in kfwrite_ymode() argument
141 vp8_write_token(bc, vp8_kf_ymode_tree, p, vp8_kf_ymode_encodings + m); in kfwrite_ymode()
144 static void write_uv_mode(vp8_writer *bc, int m, const vp8_prob *p) in write_uv_mode() argument
146 vp8_write_token(bc, vp8_uv_mode_tree, p, vp8_uv_mode_encodings + m); in write_uv_mode()
150 static void write_bmode(vp8_writer *bc, int m, const vp8_prob *p) in write_bmode() argument
152 vp8_write_token(bc, vp8_bmode_tree, p, vp8_bmode_encodings + m); in write_bmode()
155 static void write_split(vp8_writer *bc, int x) in write_split() argument
[all …]

12345678910>>...29