Home
last modified time | relevance | path

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

/external/mesa3d/src/amd/addrlib/src/r800/
Degbaddrlib.cpp2036 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,3),_BIT(pixelIndex,4)); in HwlComputePixelCoordFromOffset()
2040 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,4),_BIT(pixelIndex,3)); in HwlComputePixelCoordFromOffset()
2043 x = Bits2Number(3, _BIT(pixelIndex,3),_BIT(pixelIndex,1),_BIT(pixelIndex,0)); in HwlComputePixelCoordFromOffset()
2044 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,4),_BIT(pixelIndex,2)); in HwlComputePixelCoordFromOffset()
2047 x = Bits2Number(3, _BIT(pixelIndex,3),_BIT(pixelIndex,2),_BIT(pixelIndex,0)); in HwlComputePixelCoordFromOffset()
2048 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,4),_BIT(pixelIndex,1)); in HwlComputePixelCoordFromOffset()
2051 x = Bits2Number(3, _BIT(pixelIndex,3),_BIT(pixelIndex,2),_BIT(pixelIndex,1)); in HwlComputePixelCoordFromOffset()
2052 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,4),_BIT(pixelIndex,0)); in HwlComputePixelCoordFromOffset()
2060 x = Bits2Number(3, _BIT(pixelIndex,4),_BIT(pixelIndex,2),_BIT(pixelIndex,0)); in HwlComputePixelCoordFromOffset()
2061 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,3),_BIT(pixelIndex,1)); in HwlComputePixelCoordFromOffset()
[all …]
Dsiaddrlib.cpp685 UINT_32 x3 = _BIT(tx,0); in ComputePipeFromCoord()
686 UINT_32 x4 = _BIT(tx,1); in ComputePipeFromCoord()
687 UINT_32 x5 = _BIT(tx,2); in ComputePipeFromCoord()
688 UINT_32 x6 = _BIT(tx,3); in ComputePipeFromCoord()
689 UINT_32 y3 = _BIT(ty,0); in ComputePipeFromCoord()
690 UINT_32 y4 = _BIT(ty,1); in ComputePipeFromCoord()
691 UINT_32 y5 = _BIT(ty,2); in ComputePipeFromCoord()
692 UINT_32 y6 = _BIT(ty,3); in ComputePipeFromCoord()
837 UINT_32 pipebit0 = _BIT(pipe,0); in ComputeTileCoordFromPipeAndElemIdx()
838 UINT_32 pipebit1 = _BIT(pipe,1); in ComputeTileCoordFromPipeAndElemIdx()
[all …]
/external/autotest/client/site_tests/platform_Crossystem/
Dplatform_Crossystem.py40 _BIT = _Matcher("[01]") variable
69 ("cros_debug", _BIT),
70 ("debug_build", _BIT),
71 ("devsw_boot", _BIT),
72 ("devsw_cur", _BIT),
81 ("wpsw_cur", _BIT),
/external/mesa3d/src/amd/addrlib/src/core/
Daddrlib1.cpp3035 UINT_32 x0 = _BIT(x, 0); in ComputePixelIndexWithinMicroTile()
3036 UINT_32 x1 = _BIT(x, 1); in ComputePixelIndexWithinMicroTile()
3037 UINT_32 x2 = _BIT(x, 2); in ComputePixelIndexWithinMicroTile()
3038 UINT_32 y0 = _BIT(y, 0); in ComputePixelIndexWithinMicroTile()
3039 UINT_32 y1 = _BIT(y, 1); in ComputePixelIndexWithinMicroTile()
3040 UINT_32 y2 = _BIT(y, 2); in ComputePixelIndexWithinMicroTile()
3041 UINT_32 z0 = _BIT(z, 0); in ComputePixelIndexWithinMicroTile()
3042 UINT_32 z1 = _BIT(z, 1); in ComputePixelIndexWithinMicroTile()
3043 UINT_32 z2 = _BIT(z, 2); in ComputePixelIndexWithinMicroTile()
Daddrcommon.h240 #define _BIT(v,b) (((v) >> (b) ) & 1) macro
/external/mesa3d/docs/relnotes/
D18.1.5.rst48 - anv: Pay attention to VK_ACCESS_MEMORY_(READ|WRITE)_BIT
D3.3216 mask is now a bitmask of the DD_*_BIT flags in dd.h. Now
D20.2.0.rst4413 - radv: implement missing VK_ACCESS_MEMORY_{READ,WRITE}_BIT
/external/kernel-headers/original/uapi/linux/
Dethtool.h1634 (1UL << (ETHTOOL_LINK_MODE_ ## base_name ## _BIT))
/external/ethtool/
Dethtool-copy.h1514 (1UL << (ETHTOOL_LINK_MODE_ ## base_name ## _BIT))
/external/strace/
Ddefs.h761 #define FLAG_(name_) name_ = 1 << name_##_BIT
/external/mesa3d/src/intel/vulkan/
Danv_formats.c127 .aspect = VK_IMAGE_ASPECT_PLANE_ ## __plane ## _BIT, \
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineTimestampTests.cpp98 case VK_PIPELINE_STAGE_##p##_BIT: \ in getPipelineStageFlagStr()