Home
last modified time | relevance | path

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

/external/u-boot/board/buffalo/lsxl/
Dlsxl.h24 #define _BIT(x) (1<<(x)) macro
26 #define LSXL_OE_LOW (~(_BIT(GPIO_HDD_POWER) \
27 | _BIT(GPIO_USB_VBUS) \
28 | _BIT(GPIO_FAN_HIGH) \
29 | _BIT(GPIO_FAN_LOW)))
31 #define LSXL_OE_HIGH (~(_BIT(GPIO_FUNC_LED - 32) \
32 | _BIT(GPIO_ALARM_LED - 32) \
33 | _BIT(GPIO_INFO_LED - 32) \
34 | _BIT(GPIO_POWER_LED - 32) \
35 | _BIT(GPIO_FUNC_RED_LED - 32)))
[all …]
/external/mesa3d/src/amd/addrlib/r800/
Degbaddrlib.cpp2038 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,3),_BIT(pixelIndex,4)); in HwlComputePixelCoordFromOffset()
2042 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,4),_BIT(pixelIndex,3)); in HwlComputePixelCoordFromOffset()
2045 x = Bits2Number(3, _BIT(pixelIndex,3),_BIT(pixelIndex,1),_BIT(pixelIndex,0)); in HwlComputePixelCoordFromOffset()
2046 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,4),_BIT(pixelIndex,2)); in HwlComputePixelCoordFromOffset()
2049 x = Bits2Number(3, _BIT(pixelIndex,3),_BIT(pixelIndex,2),_BIT(pixelIndex,0)); in HwlComputePixelCoordFromOffset()
2050 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,4),_BIT(pixelIndex,1)); in HwlComputePixelCoordFromOffset()
2053 x = Bits2Number(3, _BIT(pixelIndex,3),_BIT(pixelIndex,2),_BIT(pixelIndex,1)); in HwlComputePixelCoordFromOffset()
2054 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,4),_BIT(pixelIndex,0)); in HwlComputePixelCoordFromOffset()
2062 x = Bits2Number(3, _BIT(pixelIndex,4),_BIT(pixelIndex,2),_BIT(pixelIndex,0)); in HwlComputePixelCoordFromOffset()
2063 y = Bits2Number(3, _BIT(pixelIndex,5),_BIT(pixelIndex,3),_BIT(pixelIndex,1)); in HwlComputePixelCoordFromOffset()
[all …]
Dsiaddrlib.cpp663 UINT_32 x3 = _BIT(tx,0); in ComputePipeFromCoord()
664 UINT_32 x4 = _BIT(tx,1); in ComputePipeFromCoord()
665 UINT_32 x5 = _BIT(tx,2); in ComputePipeFromCoord()
666 UINT_32 x6 = _BIT(tx,3); in ComputePipeFromCoord()
667 UINT_32 y3 = _BIT(ty,0); in ComputePipeFromCoord()
668 UINT_32 y4 = _BIT(ty,1); in ComputePipeFromCoord()
669 UINT_32 y5 = _BIT(ty,2); in ComputePipeFromCoord()
670 UINT_32 y6 = _BIT(ty,3); in ComputePipeFromCoord()
805 UINT_32 pipebit0 = _BIT(pipe,0); in ComputeTileCoordFromPipeAndElemIdx()
806 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_boot", _BIT),
82 ("wpsw_cur", _BIT),
/external/mesa3d/src/amd/addrlib/core/
Daddrlib1.cpp3026 UINT_32 x0 = _BIT(x, 0); in ComputePixelIndexWithinMicroTile()
3027 UINT_32 x1 = _BIT(x, 1); in ComputePixelIndexWithinMicroTile()
3028 UINT_32 x2 = _BIT(x, 2); in ComputePixelIndexWithinMicroTile()
3029 UINT_32 y0 = _BIT(y, 0); in ComputePixelIndexWithinMicroTile()
3030 UINT_32 y1 = _BIT(y, 1); in ComputePixelIndexWithinMicroTile()
3031 UINT_32 y2 = _BIT(y, 2); in ComputePixelIndexWithinMicroTile()
3032 UINT_32 z0 = _BIT(z, 0); in ComputePixelIndexWithinMicroTile()
3033 UINT_32 z1 = _BIT(z, 1); in ComputePixelIndexWithinMicroTile()
3034 UINT_32 z2 = _BIT(z, 2); in ComputePixelIndexWithinMicroTile()
Daddrcommon.h201 #define _BIT(v,b) (((v) >> (b) ) & 1) macro
/external/mesa3d/docs/relnotes/
D3.3216 mask is now a bitmask of the DD_*_BIT flags in dd.h. Now
/external/kernel-headers/original/uapi/linux/
Dethtool.h1468 (1UL << (ETHTOOL_LINK_MODE_ ## base_name ## _BIT))
/external/strace/
Ddefs.h761 #define FLAG_(name_) name_ = 1 << name_##_BIT
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineTimestampTests.cpp85 case VK_PIPELINE_STAGE_##p##_BIT: \ in getPipelineStageFlagStr()