Home
last modified time | relevance | path

Searched refs:fragment (Results 1 – 13 of 13) sorted by relevance

/system/core/libpixelflinger/codeflinger/
Dblending.cpp41 integer_t fragment(temp.reg, temp.h, temp.flags); in build_fog() local
60 build_blendFOneMinusF(temp, factor, fragment, fogColor); in build_fog()
143 integer_t fragment(temp.reg, temp.size(), temp.flags); in build_blending() local
148 fragment.reg = scratches.obtain(); in build_blending()
149 MOV(AL, 0, fragment.reg, reg_imm(temp.reg, LSR, temp.l)); in build_blending()
150 fragment.flags |= CORRUPTIBLE; in build_blending()
158 fragment.flags &= ~CORRUPTIBLE; in build_blending()
164 fragment.flags &= ~CORRUPTIBLE; in build_blending()
172 component, pixel, fragment, fb, scratches); in build_blending()
175 build_blendFOneMinusF(temp, factor, fragment, fb); in build_blending()
[all …]
DGGLAssembler.cpp530 component_t fragment; in build_incoming_component() local
533 build_iterated_color(fragment, parts, component, regs); in build_incoming_component()
536 build_texture_environment(fragment, parts, component, regs); in build_incoming_component()
539 if (need_expander && (fragment.size() < dst_size)) { in build_incoming_component()
542 expand(fragment, fragment, dst_size); in build_incoming_component()
547 (mInfo[component].needed || fragment.size()<dst_size)) in build_incoming_component()
551 if (fragment.l) { in build_incoming_component()
552 component_t incoming(fragment); in build_incoming_component()
553 modify(fragment, regs); in build_incoming_component()
554 MOV(AL, 0, fragment.reg, reg_imm(incoming.reg, LSR, incoming.l)); in build_incoming_component()
[all …]
Dtexturing.cpp178 component_t& fragment, in build_iterated_color() argument
183 fragment.setTo( regs.obtain(), 0, 32, CORRUPTIBLE); in build_iterated_color()
190 extract(fragment, parts.iterated, component); in build_iterated_color()
192 fragment.h = GGL_COLOR_BITS; in build_iterated_color()
193 fragment.l = GGL_COLOR_BITS - 8; in build_iterated_color()
194 fragment.flags |= CLEAR_LO; in build_iterated_color()
201 CONTEXT_LOAD(fragment.reg, generated_vars.argb[component].c); in build_iterated_color()
203 ADD(AL, 0, dx, fragment.reg, dx); in build_iterated_color()
206 CONTEXT_LOAD(fragment.reg, generated_vars.argb[component].c); in build_iterated_color()
211 regs.recycle(fragment.reg); in build_iterated_color()
[all …]
DGGLAssembler.h436 void build_iterated_color( component_t& fragment,
472 void build_texture_environment( component_t& fragment,
493 integer_t& fragment,
499 const integer_t& fragment,
504 const integer_t& fragment,
507 void build_coverage_application(component_t& fragment,
511 void build_alpha_test(component_t& fragment, const fragment_parts_t& parts);
/system/core/libpixelflinger/
Dscanline.cpp464 static void blending(context_t* c, pixel_t* fragment, pixel_t* fb);
491 void blending(context_t* c, pixel_t* fragment, pixel_t* fb) in blending() argument
493 rescale(fragment->c[0], fragment->s[0], fb->c[0], fb->s[0]); in blending()
494 rescale(fragment->c[1], fragment->s[1], fb->c[1], fb->s[1]); in blending()
495 rescale(fragment->c[2], fragment->s[2], fb->c[2], fb->s[2]); in blending()
496 rescale(fragment->c[3], fragment->s[3], fb->c[3], fb->s[3]); in blending()
499 blend_factor(c, &sf, c->state.blend.src, fragment, fb); in blending()
500 blend_factor(c, &df, c->state.blend.dst, fragment, fb); in blending()
502 fragment->c[1] = in blending()
503 gglMulAddx(fragment->c[1], sf.c[1], gglMulx(fb->c[1], df.c[1])); in blending()
[all …]
/system/libufdt/tests/
DREADME30 - Additional device tree fragment source.
35 fragment@0{
/system/bt/stack/l2cap/
Dl2cap_client.cc409 BT_HDR* fragment = static_cast<BT_HDR*>( in fragment_packet() local
411 fragment->offset = L2CAP_MIN_OFFSET; in fragment_packet()
412 fragment->len = client->remote_mtu; in fragment_packet()
413 memcpy(fragment->data + fragment->offset, in fragment_packet()
416 list_append(client->outbound_fragments, fragment); in fragment_packet()
/system/chre/platform/shared/idl/
Dhost_messages.fbs98 /// requests starting from the second fragment, all fields except
101 /// Once the LoadNanoappRepsonse for the last fragment is received
105 /// If any request fragment is lost, then the entire load request will be
120 /// default behavior should be to assume one fragment.
129 /// If any fragment of a load request fails, the entire load request for
133 /// The fragment count of the load reponse is for.
/system/core/debuggerd/libdebuggerd/
Dutility.cpp108 for (const std::string& fragment : fragments) { in _LOG() local
113 iov[1].iov_base = const_cast<char*>(fragment.c_str()); in _LOG()
114 iov[1].iov_len = fragment.length(); in _LOG()
/system/bt/vendor_libs/test_vendor_lib/include/
Dl2cap_packet.h41 std::vector<std::shared_ptr<L2capSdu> > fragment(uint16_t maximum_sdu_size,
/system/bt/vendor_libs/test_vendor_lib/test/
Dl2cap_test.cc337 sdu = l2cap_expected->fragment(16, 0x02, 0x41); in TEST_F()
374 sdu = l2cap_expected->fragment(1024, 0x02, 0x41); in TEST_F()
405 sdu = l2cap_expected->fragment(24, 0x08, 0x41); in TEST_F()
435 sdu = l2cap_expected->fragment(16, 0x02, 0x41); in TEST_F()
466 sdu = l2cap_expected->fragment(256, 0x02, 0x41); in TEST_F()
502 sdu = l2cap_expected->fragment(512, 0x02, 0x41); in TEST_F()
/system/extras/simpleperf/
Dcmd_kmem.cpp690 uint64_t fragment = slab_sample_tree_.total_allocated_bytes - in PrintSlabReportContext() local
694 percentage = 100.0 * fragment / slab_sample_tree_.total_allocated_bytes; in PrintSlabReportContext()
696 fprintf(fp, "Total fragment: %" PRIu64 ", %f%%\n", fragment, percentage); in PrintSlabReportContext()
/system/bt/vendor_libs/test_vendor_lib/src/
Dl2cap_packet.cc163 std::vector<std::shared_ptr<L2capSdu> > L2capPacket::fragment( in fragment() function in test_vendor_lib::L2capPacket