/hardware/google/gfxstream/guest/mesa/src/util/format/ |
D | u_format.c | 1089 #define REMAP_RGB_ONE(r, rs, g, gs, b, bs, type) \ in util_format_rgb_to_bgr() argument 1090 case PIPE_FORMAT_##r##rs##g##gs##b##bs##_##type: \ in util_format_rgb_to_bgr() 1091 return PIPE_FORMAT_##b##bs##g##gs##r##rs##_##type; in util_format_rgb_to_bgr() 1093 #define REMAP_RGB(rs, gs, bs, type) \ in util_format_rgb_to_bgr() argument 1094 REMAP_RGB_ONE(R, rs, G, gs, B, bs, type) \ in util_format_rgb_to_bgr() 1095 REMAP_RGB_ONE(B, bs, G, gs, R, rs, type) \ in util_format_rgb_to_bgr() 1097 #define REMAP_RGBA_ONE(r, rs, g, gs, b, bs, a, as, type) \ in util_format_rgb_to_bgr() argument 1098 case PIPE_FORMAT_##r##rs##g##gs##b##bs##a##as##_##type: \ in util_format_rgb_to_bgr() 1099 return PIPE_FORMAT_##b##bs##g##gs##r##rs##a##as##_##type; in util_format_rgb_to_bgr() 1101 #define REMAP_ARGB_ONE(a, as, r, rs, g, gs, b, bs, type) \ in util_format_rgb_to_bgr() argument [all …]
|
D | u_format_etc.c | 30 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; in util_format_etc1_rgb8_unpack_rgba_float() local 54 src += bs; in util_format_etc1_rgb8_unpack_rgba_float()
|
D | texcompress_etc_tmp.h | 146 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; in etc1_unpack_rgba8888() local 165 src += bs; in etc1_unpack_rgba8888()
|
/hardware/google/aemu/host-common/ |
D | AndroidPipe.cpp | 636 BaseStream* const bs = asBaseStream(stream); in forEachServiceToStream() local 637 bs->putBe16(android::sGlobals()->services.size()); in forEachServiceToStream() 639 bs->putString(service->name()); in forEachServiceToStream() 645 pipeStream.save(bs); in forEachServiceToStream() 652 BaseStream* const bs = asBaseStream(stream); in forEachServiceFromStream() local 653 const int count = bs->getBe16(); in forEachServiceFromStream() 660 const auto name = bs->getString(); in forEachServiceFromStream() 667 pipeStream.load(bs); in forEachServiceFromStream() 697 forEachServiceFromStream(stream, [](Service* service, BaseStream* bs) { in android_pipe_guest_pre_load() argument 699 service->preLoad(bs); in android_pipe_guest_pre_load() [all …]
|
/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | astcenc_pick_best_endpoint_format.cpp | 96 vfloat uncor_bs0(uncor_pline.bs.lane<0>()); in compute_error_squared_rgb_single_partition() 97 vfloat uncor_bs1(uncor_pline.bs.lane<1>()); in compute_error_squared_rgb_single_partition() 98 vfloat uncor_bs2(uncor_pline.bs.lane<2>()); in compute_error_squared_rgb_single_partition() 105 vfloat samec_bs0(samec_pline.bs.lane<0>()); in compute_error_squared_rgb_single_partition() 106 vfloat samec_bs1(samec_pline.bs.lane<1>()); in compute_error_squared_rgb_single_partition() 107 vfloat samec_bs2(samec_pline.bs.lane<2>()); in compute_error_squared_rgb_single_partition() 110 vfloat rgbl_bs0(rgbl_pline.bs.lane<0>()); in compute_error_squared_rgb_single_partition() 111 vfloat rgbl_bs1(rgbl_pline.bs.lane<1>()); in compute_error_squared_rgb_single_partition() 112 vfloat rgbl_bs2(rgbl_pline.bs.lane<2>()); in compute_error_squared_rgb_single_partition() 119 vfloat l_bs0(l_pline.bs.lane<0>()); in compute_error_squared_rgb_single_partition() [all …]
|
D | astcenc_mathlib.h | 463 vfloat4 bs; member 469 vfloat4 bs; member 475 vfloat4 bs; member
|
D | astcenc_averages_and_directions.cpp | 756 vfloat l_uncor_bs0(l_uncor.bs.lane<0>()); in compute_error_squared_rgba() 757 vfloat l_uncor_bs1(l_uncor.bs.lane<1>()); in compute_error_squared_rgba() 758 vfloat l_uncor_bs2(l_uncor.bs.lane<2>()); in compute_error_squared_rgba() 759 vfloat l_uncor_bs3(l_uncor.bs.lane<3>()); in compute_error_squared_rgba() 766 vfloat l_samec_bs0(l_samec.bs.lane<0>()); in compute_error_squared_rgba() 767 vfloat l_samec_bs1(l_samec.bs.lane<1>()); in compute_error_squared_rgba() 768 vfloat l_samec_bs2(l_samec.bs.lane<2>()); in compute_error_squared_rgba() 769 vfloat l_samec_bs3(l_samec.bs.lane<3>()); in compute_error_squared_rgba() 899 vfloat l_uncor_bs0(l_uncor.bs.lane<0>()); in compute_error_squared_rgb() 900 vfloat l_uncor_bs1(l_uncor.bs.lane<1>()); in compute_error_squared_rgb() [all …]
|
D | astcenc_find_best_partitioning.cpp | 614 uncor_plines[j].bs = uncor_lines[j].b; in find_best_partition_candidates() 620 samec_plines[j].bs = samec_lines[j].b; in find_best_partition_candidates() 686 pl.uncor_pline.bs = pl.uncor_line.b; in find_best_partition_candidates() 689 pl.samec_pline.bs = pl.samec_line.b; in find_best_partition_candidates()
|
D | astcenc_compress_symbolic.cpp | 1061 float bs = 0.0f; in prepare_block_statistics() local 1102 bs += bw; in prepare_block_statistics() 1115 rb_cov -= bs * (rs * rpt); in prepare_block_statistics() 1119 gb_cov -= bs * (gs * rpt); in prepare_block_statistics() 1122 bb_var -= bs * (bs * rpt); in prepare_block_statistics() 1123 ba_cov -= as * (bs * rpt); in prepare_block_statistics()
|
D | stb_image_write.h | 1253 …tbiw__jpg_writeBits(stbi__write_context *s, int *bitBufP, int *bitCntP, const unsigned short *bs) { in stbiw__jpg_writeBits() argument 1255 bitCnt += bs[1]; in stbiw__jpg_writeBits() 1256 bitBuf |= bs[0] << (24 - bitCnt); in stbiw__jpg_writeBits()
|
D | tinyexr.h | 7978 short bs = static_cast<short>(b); in wenc14() local 7980 short ms = (as + bs) >> 1; in wenc14() 7981 short ds = as - bs; in wenc14() 7996 short bs = static_cast<short>(ai - hi); in wdec14() local 7999 b = static_cast<unsigned short>(bs); in wdec14()
|
/hardware/google/gfxstream/third-party/stb/include/stb/ |
D | stb_image_write.h | 1253 …tbiw__jpg_writeBits(stbi__write_context *s, int *bitBufP, int *bitCntP, const unsigned short *bs) { in stbiw__jpg_writeBits() argument 1255 bitCnt += bs[1]; in stbiw__jpg_writeBits() 1256 bitBuf |= bs[0] << (24 - bitCnt); in stbiw__jpg_writeBits()
|
/hardware/interfaces/tv/tuner/assets/ |
D | tuner_frontend_input.ts | 4720 …/�4�#�WA�,��a��]L�H��X��t�K��5VMN?��E�}jz�*��K��K������ȈR�?~��nFf`bs�K�/�Uy�!ђ����G+��x…
|
D | tuner_frontend_input.es | 1058 ��L)U��I�zJ.@����0��_椢"��o�H��bs���?�_o�E���$GT"��e�v@ ���>G�����H�"?�1�-��wm��GS���3{… 4496 …/�4�#�WA�,��a��]L�H��X��t�K��5VMN?��E�}jz�*��K��K������ȈR�?~��nFf`bs�K�/�Uy�!ђ����G+��x… 5404 …|�B�dJ#�Y�˴��3��T�����FݲG-Ҟ[z�eb���g:zӜT���*N}3-�x��W��� C:bs^����D�}=a*�B�¤8�…
|