Searched refs:br (Results 1 - 25 of 90) sorted by relevance

1234

/xsrc/external/mit/brotli/dist/c/dec/
H A Dbit_reader.h51 BROTLI_INTERNAL void BrotliInitBitReader(BrotliBitReader* const br);
58 BROTLI_INTERNAL BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br);
64 BrotliBitReader* const br, uint32_t n_bits, uint32_t* val);
83 const BrotliBitReader* br) {
84 return (BROTLI_64_BITS ? 64 : 32) - br->bit_pos_;
88 BrotliInput, including whole bytes in br->val_. Result is capped with
90 static BROTLI_INLINE size_t BrotliGetRemainingBytes(BrotliBitReader* br) { argument
92 if (br->avail_in > kCap) return kCap;
93 return br->avail_in + (BrotliGetAvailableBits(br) >>
82 BrotliGetAvailableBits(const BrotliBitReader * br) argument
98 BrotliCheckInputAmount(BrotliBitReader * const br,size_t num) argument
107 BrotliFillBitWindow(BrotliBitReader * const br,uint32_t n_bits) argument
159 BrotliFillBitWindow16(BrotliBitReader * const br) argument
165 BrotliPullByte(BrotliBitReader * const br) argument
183 BrotliGetBitsUnmasked(BrotliBitReader * const br) argument
190 BrotliGet16BitsUnmasked(BrotliBitReader * const br) argument
198 BrotliGetBits(BrotliBitReader * const br,uint32_t n_bits) argument
206 BrotliSafeGetBits(BrotliBitReader * const br,uint32_t n_bits,uint32_t * val) argument
218 BrotliDropBits(BrotliBitReader * const br,uint32_t n_bits) argument
223 BrotliBitReaderUnload(BrotliBitReader * br) argument
238 BrotliTakeBits(BrotliBitReader * const br,uint32_t n_bits,uint32_t * val) argument
249 BrotliReadBits24(BrotliBitReader * const br,uint32_t n_bits) argument
269 BrotliReadBits32(BrotliBitReader * const br,uint32_t n_bits) argument
291 BrotliSafeReadBits(BrotliBitReader * const br,uint32_t n_bits,uint32_t * val) argument
304 BrotliSafeReadBits32(BrotliBitReader * const br,uint32_t n_bits,uint32_t * val) argument
322 BrotliJumpToByteBoundary(BrotliBitReader * br) argument
334 BrotliCopyBytes(uint8_t * dest,BrotliBitReader * br,size_t num) argument
[all...]
H A Dbit_reader.c29 void BrotliInitBitReader(BrotliBitReader* const br) { argument
30 br->val_ = 0;
31 br->bit_pos_ = sizeof(br->val_) << 3;
34 BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br) { argument
35 size_t aligned_read_mask = (sizeof(br->val_) >> 1) - 1;
42 if (BrotliGetAvailableBits(br) == 0) {
43 if (!BrotliPullByte(br)) {
48 while ((((size_t)br->next_in) & aligned_read_mask) != 0) {
49 if (!BrotliPullByte(br)) {
57 BrotliSafeReadBits32Slow(BrotliBitReader * const br,uint32_t n_bits,uint32_t * val) argument
[all...]
H A Ddecode.c135 BrotliBitReader* br) {
139 BrotliTakeBits(br, 1, &n);
144 BrotliTakeBits(br, 3, &n);
149 BrotliTakeBits(br, 3, &n);
152 BrotliTakeBits(br, 1, &n);
182 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) {
186 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, 1, &bits))) {
196 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, 3, &bits))) {
210 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, *value, &bits))) {
226 BrotliDecoderState* s, BrotliBitReader* br) {
134 DecodeWindowBits(BrotliDecoderState * s,BrotliBitReader * br) argument
181 DecodeVarLenUint8(BrotliDecoderState * s,BrotliBitReader * br,uint32_t * value) argument
225 DecodeMetaBlockLength(BrotliDecoderState * s,BrotliBitReader * br) argument
350 DecodeSymbol(uint32_t bits,const HuffmanCode * table,BrotliBitReader * br) argument
368 ReadSymbol(const HuffmanCode * table,BrotliBitReader * br) argument
375 SafeDecodeSymbol(const HuffmanCode * table,BrotliBitReader * br,uint32_t * result) argument
415 SafeReadSymbol(const HuffmanCode * table,BrotliBitReader * br,uint32_t * result) argument
426 PreloadSymbol(int safe,const HuffmanCode * table,BrotliBitReader * br,uint32_t * bits,uint32_t * value) argument
442 ReadPreloadedSymbol(const HuffmanCode * table,BrotliBitReader * br,uint32_t * bits,uint32_t * value) argument
479 BrotliBitReader* br = &s->br; local in function:ReadSimpleHuffmanSymbols
595 BrotliBitReader* br = &s->br; local in function:ReadSymbolCodeLengths
645 BrotliBitReader* br = &s->br; local in function:SafeReadSymbolCodeLengths
693 BrotliBitReader* br = &s->br; local in function:ReadCodeLengthCodeLengths
753 BrotliBitReader* br = &s->br; local in function:ReadHuffmanCode
873 ReadBlockLength(const HuffmanCode * table,BrotliBitReader * br) argument
884 SafeReadBlockLength(BrotliDecoderState * s,uint32_t * result,const HuffmanCode * table,BrotliBitReader * br) argument
995 BrotliBitReader* br = &s->br; local in function:DecodeContextMap
1127 BrotliBitReader* br = &s->br; local in function:DecodeBlockTypeAndLength
1453 BrotliBitReader* br = &s->br; local in function:ReadContextModes
1496 SafeReadBits(BrotliBitReader * const br,uint32_t n_bits,uint32_t * val) argument
1506 SafeReadBits32(BrotliBitReader * const br,uint32_t n_bits,uint32_t * val) argument
1618 ReadDistanceInternal(int safe,BrotliDecoderState * s,BrotliBitReader * br) argument
1656 ReadDistance(BrotliDecoderState * s,BrotliBitReader * br) argument
1661 SafeReadDistance(BrotliDecoderState * s,BrotliBitReader * br) argument
1666 ReadCommandInternal(int safe,BrotliDecoderState * s,BrotliBitReader * br,int * insert_length) argument
1704 ReadCommand(BrotliDecoderState * s,BrotliBitReader * br,int * insert_length) argument
1709 SafeReadCommand(BrotliDecoderState * s,BrotliBitReader * br,int * insert_length) argument
1714 CheckInputAmount(int safe,BrotliBitReader * const br,size_t num) argument
1739 BrotliBitReader* br = &s->br; local in function:ProcessCommandsInternal
2073 BrotliBitReader* br = &s->br; local in function:BrotliDecoderDecompressStream
[all...]
/xsrc/external/mit/mesa-demos/dist/src/objviewer/
H A Dskybox.c104 #define br 20.0 /* box radius */ macro
115 { br, -br, -br, 1.0, -eps1, -eps1 },
116 { br, -br, br, 1.0, -eps1, eps1 },
117 { br, br, br, 1.
[all...]
/xsrc/external/mit/mesa-demos/dist/src/demos/
H A Dcubemap.c105 #define br 20.0 /* box radius */ macro
147 br, -br, -br,
148 br, -br, br,
149 br, br, br,
[all...]
/xsrc/external/mit/brotli/dist/tests/
H A DMakefile15 rm -f testdata/*.{br,unbr,uncompressed}
16 rm -f $(BROTLI)/{enc,dec,tools}/*.{un,}br
H A Drun-roundtrip-test.cmake5 COMMAND ${BROTLI_WRAPPER} ${BROTLI_CLI} --force --quality=${QUALITY} ${INPUT} --output=${OUTPUT}.br
14 COMMAND ${BROTLI_WRAPPER} ${BROTLI_CLI} --force --decompress ${OUTPUT}.br --output=${OUTPUT}.unbr
/xsrc/external/mit/xmessage/dist/
H A Dmakeform.c55 unquote_pairs (ButtonRecord *br, int n) argument
59 for (i = 0; i < n; i++, br++) {
63 for (src = dst = br->name; *src; src++) {
90 ButtonRecord *br; local in function:parse_name_and_exit_code_list
113 br = (ButtonRecord *) malloc (sizeof(ButtonRecord) * shouldfind);
114 if (!br) return -1;
118 free (br);
167 free (br);
175 br[npairs].name = start;
176 br[npair
203 ButtonRecord *br = (ButtonRecord *) closure; local in function:handle_button
220 ButtonRecord *br; local in function:make_queryform
[all...]
/xsrc/external/mit/MesaLib/dist/src/freedreno/computerator/examples/
H A Dbranch.asm8 br !p0.x, #endif label
H A Dtest-regfile.sh32 br p0.x, #loop
/xsrc/external/mit/xkeyboard-config/dist/symbols/sun_vndr/
H A DMakefile.am4 ara be br ca ch \ data in directory:symbols
/xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/
H A Dtest_optimizer_postRA.cpp54 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp())); variable in typeref:typename:auto
55 writeout(0, Operand(br, reg_s2));
72 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp())); variable in typeref:typename:auto
73 writeout(1, Operand(br, reg_s2), Operand(ovrwr, vcc));
88 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp())); variable in typeref:typename:auto
89 writeout(2, Operand(br, reg_s2));
104 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp())); variable in typeref:typename:auto
105 writeout(2, Operand(br, reg_s2));
122 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, reg_s2), bld.scc(sand.def(1).getTemp())); variable in typeref:typename:auto
123 writeout(4, Operand(br, reg_s
161 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, vcc), bld.scc(scmp)); variable in typeref:typename:auto
175 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, vcc), bld.scc(scmp)); variable in typeref:typename:auto
189 auto br = bld.branch(aco_opcode::p_cbranch_nz, bld.def(s2, vcc), bld.scc(scmp)); variable in typeref:typename:auto
203 auto br = bld.branch(aco_opcode::p_cbranch_nz, bld.def(s2, vcc), bld.scc(scmp)); variable in typeref:typename:auto
217 auto br = bld.branch(aco_opcode::p_cbranch_nz, bld.def(s2, vcc), bld.scc(scmp)); variable in typeref:typename:auto
237 auto br = bld.branch(aco_opcode::p_cbranch_z, bld.def(s2, vcc), bld.scc(scmp)); variable in typeref:typename:auto
251 auto br = bld.sop2(aco_opcode::s_cselect_b32, bld.def(s1, reg_s4), Operand(op_in_0), Op variable in typeref:typename:auto
271 auto br = bld.sop2(aco_opcode::s_cselect_b32, bld.def(s1, reg_s4), Operand(op_in_0), Op variable in typeref:typename:auto
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/
H A Dvl_compositor_gfx.c473 struct vertex2f tl, tr, br, bl; local in function:gen_rect_verts
481 tr.x = layer->dst.br.x;
483 br = layer->dst.br;
485 bl.y = layer->dst.br.y;
488 tl.x = layer->dst.br.x;
490 tr = layer->dst.br;
491 br.x = layer->dst.tl.x;
492 br.y = layer->dst.br
557 struct vertex2f tl, br; local in function:calc_drawn_area
[all...]
H A Dvl_compositor_cs.c305 struct vertex2f tl, br; local in function:calc_drawn_area
311 br = layer->dst.br;
316 result.x1 = br.x * layer->viewport.scale[0] + layer->viewport.translate[0];
317 result.y1 = br.y * layer->viewport.scale[1] + layer->viewport.translate[1];
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/vl/
H A Dvl_compositor_gfx.c473 struct vertex2f tl, tr, br, bl; local in function:gen_rect_verts
481 tr.x = layer->dst.br.x;
483 br = layer->dst.br;
485 bl.y = layer->dst.br.y;
488 tl.x = layer->dst.br.x;
490 tr = layer->dst.br;
491 br.x = layer->dst.tl.x;
492 br.y = layer->dst.br
557 struct vertex2f tl, br; local in function:calc_drawn_area
[all...]
H A Dvl_compositor_cs.c625 struct vertex2f tl, br; local in function:calc_drawn_area
631 br = layer->dst.br;
636 result.x1 = br.x * layer->viewport.scale[0] + layer->viewport.translate[0];
637 result.y1 = br.y * layer->viewport.scale[1] + layer->viewport.translate[1];
715 (layer->src.br.x - layer->src.tl.x);
719 (layer->src.br.y - layer->src.tl.y));
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dlower_discard_flow.cpp134 ir_instruction *br = new(mem_ctx) ir_loop_jump(ir_loop_jump::jump_break); local in function:lower_discard_flow_visitor::generate_discard_break
135 if_inst->then_instructions.push_tail(br);
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dlower_discard_flow.cpp134 ir_instruction *br = new(mem_ctx) ir_loop_jump(ir_loop_jump::jump_break); local in function:lower_discard_flow_visitor::generate_discard_break
135 if_inst->then_instructions.push_tail(br);
/xsrc/external/mit/MesaLib/dist/src/freedreno/afuc/
H A Ddisasm.c601 unsigned off = pc + instr->br.ioff;
616 if (instr->br.src || (opc != OPC_BRNEB)) {
630 print_src(instr->br.src);
632 printf(", 0x%x,", instr->br.bit_or_imm);
634 printf(", b%u,", instr->br.bit_or_imm);
638 if (verbose && instr->br.bit_or_imm) {
639 printerr(" (src=%03x, bit=%03x) ", instr->br.src,
640 instr->br.bit_or_imm);
647 printf(" (#%d, %04x)", instr->br.ioff, off);
656 if (instr->br
[all...]
H A Dasm.c271 instr.br.bit_or_imm = ai->immed;
274 instr.br.bit_or_imm = ai->bit;
276 instr.br.src = ai->src1;
277 instr.br.ioff = resolve_label(ai->label) - i;
309 instr.br.bit_or_imm = 0;
310 instr.br.src = 0x00; /* $00 reads-back 0.. compare to 0 */
311 instr.br.ioff = resolve_label(ai->label) - i;
H A Demu.c249 uint32_t off = emu->gpr_regs.pc + instr->br.ioff;
250 uint32_t src = emu_get_gpr_reg(emu, instr->br.src);
253 if (src != instr->br.bit_or_imm)
256 if (src == instr->br.bit_or_imm)
259 if (!(src & (1 << instr->br.bit_or_imm)))
262 if (src & (1 << instr->br.bit_or_imm))
/xsrc/external/mit/MesaLib.old/dist/src/intel/tools/
H A Daubinator_viewer_urb.h17 const ImVec2& tl, const ImVec2& br) {
20 br.x > mouse.x && br.y > mouse.y;
16 _Hovered(const ImVec2 & mouse,bool window_hovered,const ImVec2 & tl,const ImVec2 & br) argument
/xsrc/external/mit/MesaLib/dist/src/intel/tools/
H A Daubinator_viewer_urb.h17 const ImVec2& tl, const ImVec2& br) {
20 br.x > mouse.x && br.y > mouse.y;
16 _Hovered(const ImVec2 & mouse,bool window_hovered,const ImVec2 & tl,const ImVec2 & br) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/midgard/
H A Ddisassemble.c573 printf("br.uncond ");
594 printf("br.");
615 midgard_branch_extended br; local in function:print_extended_branch_writeout_field
616 memcpy((char *) &br, (char *) words, sizeof(br));
620 print_branch_op(br.op);
624 unsigned cond = br.cond & 0x3;
627 assert(((br.cond >> i) & 0x3) == cond);
632 if (br.unknown)
633 printf(".unknown%d", br
[all...]
/xsrc/external/mit/glu/dist/src/libnurbs/internals/
H A Dcoveandtiler.cc130 TrimVertex brv, trv, *br, *tr; local in function:CoveAndTiler::coveAndTile
140 br = &brv;
149 coveUpperRightNoGrid( br );
156 br = rl;
172 output( br );
213 CoveAndTiler::coveUpperRightNoGrid( TrimVertex* br ) argument
219 output( br );

Completed in 15 milliseconds

1234