Searched refs:bc (Results 1 - 25 of 357) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_bc_builder.cpp49 cf_op_flags flags = (cf_op_flags)cf->bc.op_ptr->flags;
51 cf->bc.id = cf_cnt++;
54 if (cf->bc.is_alu_extended())
68 cf_op_flags flags = (cf_op_flags)cf->bc.op_ptr->flags;
72 cf->bc.addr = bb.ndw() >> 1;
74 cf->bc.count = (bb.ndw() >> 1) - cf->bc.addr - 1;
78 cf->bc.addr = bb.ndw() >> 1;
80 cf->bc.count = (((bb.ndw() >> 1) - cf->bc
142 const bc_cf &bc = n->bc; local
202 const bc_cf &bc = n->bc; local
259 const bc_cf &bc = n->bc; local
333 const bc_cf &bc = n->bc; local
371 const bc_alu &bc = n->bc; local
498 const bc_fetch &bc = n->bc; local
562 const bc_fetch &bc = n->bc; local
[all...]
H A Dsb_bc_decoder.cpp31 int bc_decoder::decode_cf(unsigned &i, bc_cf& bc) { argument
38 return decode_cf_alu(i, bc);
45 bc.set_op(r600_isa_cf_by_opcode(ctx.isa, opcode, 0));
47 if (bc.op_ptr->flags & CF_EXP) {
48 return decode_cf_exp(i, bc);
49 } else if (bc.op_ptr->flags & CF_MEM) {
50 return decode_cf_mem(i, bc);
55 bc.addr = w0.get_ADDR();
56 bc.jumptable_sel = w0.get_JUMPTABLE_SEL();
61 bc
109 decode_cf_alu(unsigned & i, bc_cf& bc) argument
175 decode_cf_exp(unsigned & i, bc_cf& bc) argument
229 decode_cf_mem(unsigned & i, bc_cf& bc) argument
290 decode_alu(unsigned & i, bc_alu& bc) argument
404 decode_fetch(unsigned & i, bc_fetch& bc) argument
492 decode_fetch_gds(unsigned & i, bc_fetch& bc) argument
524 decode_fetch_vtx(unsigned & i, bc_fetch& bc) argument
[all...]
H A Dsb_bc_dump.cpp48 id = n.bc.id << 1;
50 if ((n.bc.op_ptr->flags & CF_ALU) && n.bc.is_alu_extended()) {
59 if (n.bc.op_ptr->flags & CF_CLAUSE) {
60 id = n.bc.addr << 1;
81 new_group = n.bc.last;
83 if (n.bc.last) {
119 s << n.bc.op_ptr->name;
121 if (n.bc.op_ptr->flags & CF_EXP) {
125 s << " " << exp_type[n.bc
441 bc_dump(shader& s, bytecode* bc) argument
[all...]
H A Dsb_bc_parser.cpp50 dw = bc->bytecode;
51 bc_ndw = bc->ndw;
59 switch (bc->type) {
71 if (bc->type == PIPE_SHADER_COMPUTE)
77 sh = new shader(ctx, t, bc->debug_id);
84 sh->ngpr = bc->ngpr;
85 sh->nstack = bc->nstack;
120 sh->add_gpr_array(0, bc->ngpr, 0x0F);
138 sh->add_gpr_array(0, pshader->bc.ngpr, 0x0F);
205 cf->bc
[all...]
H A Dsb_peephole.cpp59 if (a->bc.op_ptr->flags &
62 } else if (a->bc.op == ALU_OP1_FLT_TO_INT) {
75 unsigned aflags = a->bc.op_ptr->flags;
89 ns->bc.set_op(ns->bc.op + (ALU_OP2_SETE_DX10 - ALU_OP2_SETE));
96 unsigned flags = a->bc.op_ptr->flags;
115 memset(&a->bc.src[0], 0, sizeof(bc_alu_src));
116 memset(&a->bc.src[1], 0, sizeof(bc_alu_src));
140 cc = bop.n->bc.op_ptr->flags & AF_CC_MASK;
175 a->bc
[all...]
H A Dsb_expr.cpp55 n.bc.src[0].abs = abs;
56 n.bc.src[0].neg = neg;
57 n.bc.set_op(ALU_OP1_MOV);
193 unsigned flags = n.bc.op_ptr->flags;
208 apply_alu_src_mod(n.bc, 0, cv0);
213 apply_alu_src_mod(n.bc, 1, cv1);
221 if (n.bc.src[0].abs && !n.bc.src[0].neg) {
229 } else if (n.bc.src[0].abs && n.bc
322 apply_alu_src_mod(const bc_alu &bc, unsigned src, literal &v) argument
332 apply_alu_dst_mod(const bc_alu &bc, literal &v) argument
[all...]
H A Dsb_public.h41 struct r600_bytecode *bc,
/external/clang/test/CodeGenCXX/
H A Daddress-space-ref.cpp17 class bc;
18 typedef bc b __attribute__((address_space(1)));
24 // CHECK: define %class.bc addrspace(1)* @_Z3barRU3AS12bcS1_(%class.bc addrspace(1)* %x, %class.bc addrspace(1)* %y)
28 bc & bar2(bc &x, bc & y) {
32 // CHECK: define nonnull %class.bc* @_Z4bar2R2bcS0_(%class.bc* nonnul
[all...]
/external/tensorflow/tensorflow/core/lib/core/
H A Dblocking_counter_test.cc25 BlockingCounter bc(0);
26 bc.Wait();
30 BlockingCounter bc(2);
31 bc.DecrementCount();
32 bc.DecrementCount();
33 bc.Wait();
41 BlockingCounter bc(N);
43 thread_pool->Schedule([&bc] { bc.DecrementCount(); });
46 bc
[all...]
/external/testng/src/test/java/test/verify/
H A DVerify3SampleTest.java10 public void bc() { method in class:Verify3SampleTest
/external/clang/test/Sema/
H A Dzvector.c7 vector bool char bc, bc2; variable
48 bc = bc2;
67 bc = sc2; // expected-error {{incompatible type}}
68 bc = uc2; // expected-error {{incompatible type}}
74 bc = sc_scalar; // expected-error {{incompatible type}}
75 bc = uc_scalar; // expected-error {{incompatible type}}
97 bc = us2; // expected-error {{incompatible type}}
98 bc = ui2; // expected-error {{incompatible type}}
99 bc = ul2; // expected-error {{incompatible type}}
100 bc
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Deg_asm.c31 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf) argument
36 bc->bytecode[id++] = cf->isa[0];
37 bc->bytecode[id++] = cf->isa[1];
40 unsigned opcode = r600_isa_cf_opcode(bc->isa->hw_class, cf->op);
45 bc->bytecode[id++] =
53 bc->bytecode[id++] =
55 r600_isa_cf_opcode(bc->isa->hw_class, CF_OP_ALU_EXT)) |
61 bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1) |
65 bc->bytecode[id++] = S_SQ_CF_ALU_WORD1_CF_INST(opcode) |
73 bc
148 egcm_load_index_reg(struct r600_bytecode *bc, unsigned id, bool inside_alu_clause) argument
197 eg_bytecode_gds_build(struct r600_bytecode *bc, struct r600_bytecode_gds *gds, unsigned id) argument
220 eg_bytecode_alu_build(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, unsigned id) argument
[all...]
H A Dr600_asm.c47 struct r600_bytecode *bc, struct r600_bytecode_alu *alu)
52 int r700_bytecode_alu_build(struct r600_bytecode *bc,
143 void r600_bytecode_init(struct r600_bytecode *bc, argument
150 bc->debug_id = ++next_shader_id;
154 bc->ar_handling = AR_HANDLE_RV6XX;
155 bc->r6xx_nop_after_rel_dst = 1;
157 bc->ar_handling = AR_HANDLE_NORMAL;
158 bc->r6xx_nop_after_rel_dst = 0;
161 LIST_INITHEAD(&bc->cf);
162 bc
46 r600_bytecode_get_num_operands( struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
168 r600_bytecode_add_cf(struct r600_bytecode *bc) argument
191 r600_bytecode_add_output(struct r600_bytecode *bc, const struct r600_bytecode_output *output) argument
239 is_alu_once_inst(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
244 is_alu_reduction_inst(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
250 is_alu_mova_inst(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
255 alu_uses_rel(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
277 alu_uses_lds(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
290 is_alu_64bit_inst(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
296 is_alu_vec_unit_inst(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
302 is_alu_trans_unit_inst(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
309 is_alu_any_unit_inst(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
315 is_nop_inst(struct r600_bytecode *bc, struct r600_bytecode_alu *alu) argument
320 assign_alu_units(struct r600_bytecode *bc, struct r600_bytecode_alu *alu_first, struct r600_bytecode_alu *assignment[5]) argument
409 reserve_cfile(struct r600_bytecode *bc, struct alu_bank_swizzle *bs, unsigned sel, unsigned chan) argument
451 check_vector(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, struct alu_bank_swizzle *bs, int bank_swizzle) argument
481 check_scalar(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, struct alu_bank_swizzle *bs, int bank_swizzle) argument
527 check_and_set_bank_swizzle(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5]) argument
606 replace_gpr_with_pv_ps(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5], struct r600_bytecode_alu *alu_prev) argument
706 r600_bytecode_alu_nliterals(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, uint32_t literal[4], unsigned *nliteral) argument
732 r600_bytecode_alu_adjust_literals(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, uint32_t literal[4], unsigned nliteral) argument
752 merge_inst_groups(struct r600_bytecode *bc, struct r600_bytecode_alu *slots[5], struct r600_bytecode_alu *alu_prev) argument
940 r600_bytecode_alloc_kcache_line(struct r600_bytecode *bc, struct r600_bytecode_kcache *kcache, unsigned bank, unsigned line, unsigned index_mode) argument
1002 r600_bytecode_alloc_inst_kcache_lines(struct r600_bytecode *bc, struct r600_bytecode_kcache *kcache, struct r600_bytecode_alu *alu) argument
1024 r600_bytecode_assign_kcache_banks(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, struct r600_bytecode_kcache * kcache) argument
1061 r600_bytecode_alloc_kcache_lines(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, unsigned type) argument
1100 insert_nop_r6xx(struct r600_bytecode *bc) argument
1119 load_ar_r6xx(struct r600_bytecode *bc) argument
1147 load_ar(struct r600_bytecode *bc) argument
1176 r600_bytecode_add_alu_type(struct r600_bytecode *bc, const struct r600_bytecode_alu *alu, unsigned type) argument
1310 r600_bytecode_add_alu(struct r600_bytecode *bc, const struct r600_bytecode_alu *alu) argument
1315 r600_bytecode_num_tex_and_vtx_instructions(const struct r600_bytecode *bc) argument
1332 last_inst_was_not_vtx_fetch(struct r600_bytecode *bc) argument
1339 r600_bytecode_add_vtx(struct r600_bytecode *bc, const struct r600_bytecode_vtx *vtx) argument
1391 r600_bytecode_add_tex(struct r600_bytecode *bc, const struct r600_bytecode_tex *tex) argument
1447 r600_bytecode_add_gds(struct r600_bytecode *bc, const struct r600_bytecode_gds *gds) argument
1474 r600_bytecode_add_cfinst(struct r600_bytecode *bc, unsigned op) argument
1486 cm_bytecode_add_cf_end(struct r600_bytecode *bc) argument
1492 r600_bytecode_vtx_build(struct r600_bytecode *bc, struct r600_bytecode_vtx *vtx, unsigned id) argument
1523 r600_bytecode_tex_build(struct r600_bytecode *bc, struct r600_bytecode_tex *tex, unsigned id) argument
1559 r600_bytecode_alu_build(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, unsigned id) argument
1614 r600_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf) argument
1679 r600_bytecode_build(struct r600_bytecode *bc) argument
1793 r600_bytecode_clear(struct r600_bytecode *bc) argument
2005 r600_bytecode_disasm(struct r600_bytecode *bc) argument
2492 struct r600_bytecode bc; local
2650 r600_bytecode_alu_read(struct r600_bytecode *bc, struct r600_bytecode_alu *alu, uint32_t word0, uint32_t word1) argument
[all...]
H A Dr600_asm.h255 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf);
256 int egcm_load_index_reg(struct r600_bytecode *bc, unsigned id, bool inside_alu_clause);
257 int eg_bytecode_gds_build(struct r600_bytecode *bc, struct r600_bytecode_gds *gds, unsigned id);
258 int eg_bytecode_alu_build(struct r600_bytecode *bc,
261 void r600_bytecode_init(struct r600_bytecode *bc,
265 void r600_bytecode_clear(struct r600_bytecode *bc);
266 int r600_bytecode_add_alu(struct r600_bytecode *bc,
268 int r600_bytecode_add_vtx(struct r600_bytecode *bc,
270 int r600_bytecode_add_tex(struct r600_bytecode *bc,
272 int r600_bytecode_add_gds(struct r600_bytecode *bc,
[all...]
/external/clang/test/CXX/temp/temp.res/temp.dep/temp.dep.type/
H A Dp1.cpp10 B<T>::C bc; // ok, B<T> is the current instantiation. member in struct:Example1::A
15 B<B<T>>::C bc; // ok, B<B<T>> is the current instantiation. member in struct:Example1::A
20 B<B<T>>::C bc; // expected-error {{missing 'typename'}} member in struct:Example1::A
/external/skia/src/shaders/gradients/
H A DSkGradientBitmapCache.h41 AutoValidate(const SkGradientBitmapCache* bc) : fBC(bc) { bc->validate(); } argument
/external/skqp/src/shaders/gradients/
H A DSkGradientBitmapCache.h41 AutoValidate(const SkGradientBitmapCache* bc) : fBC(bc) { bc->validate(); } argument
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dplot_bars.sh83 box_width=$(echo "(1.0-$tcp_space/2)/$num_flows" | bc -l)
87 abscissa=$(echo $x_start + 0.5 + 0.5*$box_width | bc)
90 abscissa=$(echo $abscissa + $box_width | bc)
93 abscissa=$(echo $abscissa + $tcp_space | bc)
97 abscissa=$(echo $abscissa + $box_width | bc)
101 box_width=$(echo 1.0/$num_flows | bc -l)
126 if (( $(bc <<< "$y > $y_max") == 1 )); then
138 if (( $(bc <<< "$y > $y_max") == 1 )) ; then
148 if (( $(bc <<< "$y > $y_max") == 1 )) ; then
153 y_max=$(echo $y_max*1.1 | bc)
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/bc/
H A DBCObjectIdentifiers.java1 package org.bouncycastle.asn1.bc;
15 public static final ASN1ObjectIdentifier bc = new ASN1ObjectIdentifier("1.3.6.1.4.1.22554"); field in interface:BCObjectIdentifiers
22 public static final ASN1ObjectIdentifier bc_pbe = bc.branch("1");
73 public static final ASN1ObjectIdentifier bc_sig = bc.branch("2");
88 public static final ASN1ObjectIdentifier bc_exch = bc.branch("3");
/external/annotation-tools/asmx/test/perf/org/objectweb/asm/
H A DJavassistPerfTest.java97 Bytecode bc = new Bytecode(info.getConstPool(), 1, 0);
98 bc.addAload(0);
99 bc.addAload(0);
100 bc.addGetfield(cc, "_counter", "I");
101 bc.add(Opcode.ICONST_1);
102 bc.add(Opcode.IADD);
103 bc.addPutfield(cc, "_counter", "I");
106 iter.insert(bc.get());
/external/libcxx/test/std/containers/unord/unord.map/
H A Dbucket.pass.cpp44 size_t bc = c.bucket_count(); local
45 assert(bc >= 5);
47 LIBCPP_ASSERT(c.bucket(i) == i % bc);
64 size_t bc = c.bucket_count(); local
65 assert(bc >= 5);
67 LIBCPP_ASSERT(c.bucket(i) == i % bc);
/external/libcxx/test/std/containers/unord/unord.multimap/
H A Dbucket.pass.cpp44 size_t bc = c.bucket_count(); local
45 assert(bc >= 7);
47 LIBCPP_ASSERT(c.bucket(i) == i % bc);
64 size_t bc = c.bucket_count(); local
65 assert(bc >= 7);
67 LIBCPP_ASSERT(c.bucket(i) == i % bc);
/external/libcxx/test/std/containers/unord/unord.multiset/
H A Dbucket.pass.cpp43 size_t bc = c.bucket_count(); local
44 assert(bc >= 7);
46 LIBCPP_ASSERT(c.bucket(i) == i % bc);
63 size_t bc = c.bucket_count(); local
64 assert(bc >= 7);
66 LIBCPP_ASSERT(c.bucket(i) == i % bc);
/external/libcxx/test/std/containers/unord/unord.set/
H A Dbucket.pass.cpp43 size_t bc = c.bucket_count(); local
44 assert(bc >= 5);
46 LIBCPP_ASSERT(c.bucket(i) == i % bc);
62 size_t bc = c.bucket_count(); local
63 assert(bc >= 5);
65 LIBCPP_ASSERT(c.bucket(i) == i % bc);
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/
H A DMakefile3 %.bc: %.ll
6 %.llc.s: %.bc
22 rm -f $(patsubst %.clean,%.bc,$@) $(patsubst %.clean,%.*.s,$@) \

Completed in 748 milliseconds

1234567891011>>