Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 20 of 20) sorted by relevance

/hardware/google/gfxstream/host/apigen-codec-common/X11/
DXpoll.h137 #define XFD_ANDSET(dst,b1,b2) { \ argument
140 __XFDS_BITS((dst), __i__) = ((__XFDS_BITS((b1), __i__)) & (__XFDS_BITS((b2), __i__))); \
142 #define XFD_ORSET(dst,b1,b2) { \ argument
145 __XFDS_BITS((dst), __i__) = ((__XFDS_BITS((b1), __i__)) | (__XFDS_BITS((b2), __i__))); \
147 #define XFD_UNSET(dst,b1) { \ argument
150 __XFDS_BITS((dst), __i__) &= ~(__XFDS_BITS((b1), __i__)); \
180 #define XFD_ANDSET(dst,b1,b2) { \ argument
183 for (__i = 0; __i < XFD_SETCOUNT(b1) ; __i++) { \
184 if (FD_ISSET(XFD_FD(b1,__i), b2)) \
185 FD_SET(XFD_FD(b1,__i), dst); \
[all …]
DXfuncs.h44 # define bcmp(b1,b2,len) memcmp(b1, b2, len) argument
64 # define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len)) argument
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_EXT_opacity_micromap.adoc97 uint32_t b1 = ((f ^ iu) & ~b0) | t;
104 b1 = (b1 | (b1 << 8u)) & 0x00ff00ffu;
105 b1 = (b1 | (b1 << 4u)) & 0x0f0f0f0fu;
106 b1 = (b1 | (b1 << 2u)) & 0x33333333u;
107 b1 = (b1 | (b1 << 1u)) & 0x55555555u;
109 return b0 | (b1 << 1u);
/hardware/google/gfxstream/guest/mesa/src/util/
Dfast_urem_by_const.h61 uint32_t b1 = b >> 32; in _mul32by64_hi()
62 return ((((uint64_t) a * b0) >> 32) + (uint64_t) a * b1) >> 32; in _mul32by64_hi()
Du_pack_color.h639 pack_ub4(uint8_t b0, uint8_t b1, uint8_t b2, uint8_t b3) in pack_ub4() argument
642 (((uint32_t)b1) << 8) | in pack_ub4()
/hardware/google/gfxstream/common/etc/
Detc.cpp299 int r1, r2, g1, g2, b1, b2; in etc2_decode_block_T() local
302 b1 = convert4To8(high >> 16); in etc2_decode_block_T()
312 clrTable[2] = b1; in etc2_decode_block_T()
328 int r1, r2, g1, g2, b1, b2; in etc2_decode_block_H() local
331 b1 = convert4To8((high >> 19) << 3 | ((high >> 15) & 7)); in etc2_decode_block_H()
338 intenseIdx |= (((r1 << 16) | (g1 << 8) | b1) >= ((r2 << 16) | (g2 << 8) | b2)); in etc2_decode_block_H()
343 clrTable[2] = clamp(b1 + intenseMod); in etc2_decode_block_H()
346 clrTable[5] = clamp(b1 - intenseMod); in etc2_decode_block_H()
394 int r1, r2, g1, g2, b1, b2; in etc2_decode_rgb_block() local
416 b1 = convert5To8(bBase); in etc2_decode_rgb_block()
[all …]
/hardware/google/gfxstream/guest/OpenglSystemCommon/
DFormatConversions.cpp265 signed b1 = clamp_rgb((tmp1 + u_b) / 256); in yv12_to_rgb565() local
269 uint16_t rgb1 = ((r1 >> 3) << 11) | ((g1 >> 2) << 5) | (b1 >> 3); in yv12_to_rgb565()
307 signed b1 = clamp_rgb(1 * (1.1643835616438356 * y1 + 2.017232142857143 * u * 0.97)); in yv12_to_rgb888() local
311 rgb_ptr[(i-left)*rgb_stride+2] = b1; in yv12_to_rgb888()
349 signed b1 = clamp_rgb((tmp1 + u_b) / 256); in yuv420p_to_rgb888() local
355 rgb_ptr[(i-left)*rgb_stride+2] = b1; in yuv420p_to_rgb888()
/hardware/google/gfxstream/host/vulkan/emulated_textures/shaders/
DEtc2ShaderLib.comp124 int r1, r2, g1, g2, b1, b2;
127 b1 = int(convert4To8(high >> 16));
135 clrTable[0] = ivec3(r1, g1, b1);
234 int r1, r2, g1, g2, b1, b2;
253 b1 = int(convert5To8(bBase));
261 b1 = int(convert4To8(high >> 12));
277 decode_subblock(ret, r1, g1, b1, tableA, low, false, flipped, isPunchthroughAlpha, opaque);
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dastcenc_color_quantize.cpp120 float b1 = astc::clamp255f(color1.lane<2>() * scale); in quantize_rgb() local
133 bi1 = quant_color_clamp(quant_level, astc::flt2int_rd(b1 + rgb1_addon)); in quantize_rgb()
210 float b1 = color1.lane<2>() * scale; in try_quantize_rgb_blue_contract() local
215 r1 += (r1 - b1); in try_quantize_rgb_blue_contract()
216 g1 += (g1 - b1); in try_quantize_rgb_blue_contract()
219 r1 < 0.0f || r1 > 255.0f || g1 < 0.0f || g1 > 255.0f || b1 < 0.0f || b1 > 255.0f) in try_quantize_rgb_blue_contract()
231 int bi1 = quant_color(quant_level, astc::flt2int_rtn(b1)); in try_quantize_rgb_blue_contract()
316 float b1 = astc::clamp255f(color1.lane<2>() * scale); in try_quantize_rgb_delta() local
348 int b1d = astc::flt2int_rtn(b1); in try_quantize_rgb_delta()
426 float b1 = color0.lane<2>() * scale; in try_quantize_rgb_delta_blue_contract() local
[all …]
Dastcenc_color_unquantize.cpp556 int b1 = v3 & 0x3f; in hdr_rgb_unpack() local
601 b1 |= bit1 << 6; in hdr_rgb_unpack()
607 b1 |= bit3 << 7; in hdr_rgb_unpack()
638 b1 <<= val_shamt; in hdr_rgb_unpack()
646 int blue1 = a - b1; in hdr_rgb_unpack()
649 int blue0 = a - b1 - c - d1; in hdr_rgb_unpack()
Dastcenc_vecmathlib_none_4.h673 int b1 = a.m[1] & 0xFF; in pack_low_bytes() local
677 int b = b0 | (b1 << 8) | (b2 << 16) | (b3 << 24); in pack_low_bytes()
Dwuffs-v0.3.c19359 uint8_t b1 = s[1]; in wuffs_base__pixel_swizzler__bgrw__rgb__sse42() local
19362 d[1] = b1; in wuffs_base__pixel_swizzler__bgrw__rgb__sse42()
19392 uint8_t b1 = s[1]; in wuffs_base__pixel_swizzler__bgrw__rgb() local
19395 d[1] = b1; in wuffs_base__pixel_swizzler__bgrw__rgb()
19425 uint8_t b1 = s[1]; in wuffs_base__pixel_swizzler__bgrw__rgbx() local
19428 d[1] = b1; in wuffs_base__pixel_swizzler__bgrw__rgbx()
/hardware/google/gfxstream/third-party/astc-encoder/Source/UnitTest/
Dtest_simd.cpp94 vfloat b1(-1.0f); in TEST() local
95 vfloat r1 = change_sign(a1, b1); in TEST()
138 vfloat b1(-3.0f); in TEST() local
139 vfloat r1 = atan2(a1, b1); in TEST()
541 vfloat4 b1(0.1f, 0.2f, 0.3f, 0.4f); in TEST() local
542 vmask4 r1 = a1 == b1; in TEST()
572 vfloat4 b1(0.1f, 0.2f, 0.3f, 0.4f); in TEST() local
573 vmask4 r1 = a1 != b1; in TEST()
958 vfloat4 b1(1.0f, 0.5f, 0.25f, 0.125f); in TEST() local
959 vfloat4 r1 = dot(a1, b1); in TEST()
[all …]
/hardware/nxp/uwb/halimpl/config/
DREADME.md111 1 octect, Antenna IDs defined by the device. b0=Antenna-ID 1, b1=Antenna-ID 2, ...
117 Per country, Restricted channel mask, b0=Channel0, b1=Channel1, ... b15=Channel15.
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Dbcmutils.c2212 uint32 a1, a0, b1, b0, t, cc = 0; in bcm_uint64_multiple_add() local
2216 b1 = b >> 16; in bcm_uint64_multiple_add()
2228 t = (a0 * b1) << 16; in bcm_uint64_multiple_add()
2240 r1 = a1 * b1 + ((a1 * b0) >> 16) + ((b1 * a0) >> 16) + (cc / 2); in bcm_uint64_multiple_add()
/hardware/google/gfxstream/third-party/glm/include/glm/gtc/
Dnoise.inl694 tvec4<T, P> b1(x.z, x.w, y.z, y.w); local
697 // vec4 s1 = vec4(lessThan(b1,0.0))*2.0 - 1.0;
699 tvec4<T, P> s1(floor(b1) * T(2) + T(1));
703 …tvec4<T, P> a1 = tvec4<T, P>(b1.x, b1.z, b1.y, b1.w) + tvec4<T, P>(s1.x, s1.z, s1.y, s1.w) * tvec4…
/hardware/google/gfxstream/guest/mesa/src/util/format/
Du_format_tests.c77 #define UNPACKED_2x1(r0, g0, b0, a0, r1, g1, b1, a1) \ argument
78 {{{r0, g0, b0, a0}, {r1, g1, b1, a1}, {0, 0, 0, 0}, {0, 0, 0, 0}}, \
/hardware/interfaces/sensors/1.0/
Dtypes.hal1076 * float[M+N]: filter coefficients (b0, b1, ..., b_{M-1}), then
/hardware/interfaces/tv/tuner/assets/
Dtuner_frontend_input.es702 ��X������-\������k&\H�9K�����$p��=�?0;}$�Oh�&:��~�b1�s��hQ�[s� �\�^���w���,#)�1x=_s�3�#…
959 _!b1%7B��"����f^A//<����Pԋ�����\��O���2�"$^|@K2�L\\�A//_ q��^���_�B�������.]=4����.!z��…
1101 …��Ș �x�� ����"����g&8��.!q �\B����B��ܙ>�$�g�"���_3�����b+|`��?b1%�!3>��2��5%��]�1p��…
1190 …*��#�� �0��.!q �D�����+�<�����I��d�_��_�˳>XG�_��T��B���J��o���1G� ��b1̜+��� ����A� ��…
1501 ��%�m��<��d��sQ.|�'��m���G�tp�eO��8�- ���.2�nB!�}(�b1��ޭ����<���U�T1?�%_o����ɲ�_]5�{��…
2738 M���?BDD�/�i�E%�o����Uw��b1"$w�u���V�dD͗�"1��+��3�5���
4089 Q ��U{઴��� Ͻ�b1#�?�_
Dtuner_frontend_input.ts704 _!b1%7B��"G�4��������������������������f^A//<����Pԋ�����\��O���2�"$^|@K2�L\\�A//_ q��^���_…