/hardware/google/gfxstream/host/vulkan/emulated_textures/shaders/ |
D | Etc2ShaderLib.comp | 103 ivec4[16] etc2_T_H_index(ivec3[4] clrTable, uint low, bool isPunchthroughAlpha, bool opaque) { 108 uint msb = (low >> (k + 15)) & 2; 109 uint lsb = (low >> k) & 1; 122 ivec4[16] etc2_decode_block_T(uint high, uint low, bool isPunchthroughAlpha, bool opaque) { 141 return etc2_T_H_index(clrTable, low, isPunchthroughAlpha, opaque); 144 ivec4[16] etc2_decode_block_H(uint high, uint low, bool isPunchthroughAlpha, bool opaque) { 164 return etc2_T_H_index(clrTable, low, isPunchthroughAlpha, opaque); 167 ivec4[16] etc2_decode_block_P(uint high, uint low, bool isPunchthroughAlpha) { 173 rgbh.g = int(convert7To8(low >> 25)); 174 rgbh.b = int(convert6To8(low >> 19)); [all …]
|
/hardware/google/gfxstream/guest/mesa/src/util/tests/ |
D | register_allocate_test.cpp | 156 struct ra_class *low = ra_alloc_contig_reg_class(regs, 1); in TEST_F() local 158 ra_class_add_reg(low, i); in TEST_F() 166 ASSERT_EQ(low->q[low->index], 1); in TEST_F() 167 ASSERT_EQ(low->q[high->index], 0); in TEST_F() 168 ASSERT_EQ(high->q[low->index], 0); in TEST_F() 233 const unsigned low = 2 * i; in TEST_F() local 234 const unsigned high = low + 1; in TEST_F() 235 ra_class_add_reg(reg8_low, low); in TEST_F() 241 ra_add_reg_conflict(regs, low, both); in TEST_F()
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
D | wpa.h | 58 uint8 low; 70 uint8 low; 90 uint8 low; 99 uint8 low;
|
/hardware/google/gfxstream/common/etc/ |
D | etc.cpp | 224 etc1_uint32 low, bool second, bool flipped, bool isPunchthroughAlpha, in decode_subblock() argument 246 int msb = ((low >> (k + 15)) & 2); in decode_subblock() 247 int lsb = ((low >> k) & 1); in decode_subblock() 266 static void etc2_T_H_index(const int* clrTable, etc1_uint32 low, in etc2_T_H_index() argument 273 int msb = (low >> (k + 15)) & 2; in etc2_T_H_index() 274 int lsb = (low >> k) & 1; in etc2_T_H_index() 296 static void etc2_decode_block_T(etc1_uint32 high, etc1_uint32 low, in etc2_decode_block_T() argument 322 etc2_T_H_index(clrTable, low, isPunchthroughAlpha, opaque, pOut); in etc2_decode_block_T() 325 static void etc2_decode_block_H(etc1_uint32 high, etc1_uint32 low, in etc2_decode_block_H() argument 353 etc2_T_H_index(clrTable, low, isPunchthroughAlpha, opaque, pOut); in etc2_decode_block_H() [all …]
|
/hardware/interfaces/audio/aidl/default/include/effect-impl/ |
D | EffectRange.h | 27 bool isInRange(const T& value, const T& low, const T& high) { in isInRange() argument 28 return (value >= low) && (value <= high); in isInRange()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_NV_low_latency2/ |
D | low_latency2.adoc | 6 [[low-latency2]] 10 [open,refpage='vkSetLatencySleepModeNV',desc='Enable or Disable low latency mode on a swapchain',ty… 12 To enable or disable low latency mode on a swapchain, call: 17 * pname:swapchain is the swapchain to enable or disable low latency mode 24 disable low latency mode, low latency boost, and set the minimum present 31 [open,refpage='VkLatencySleepModeInfoNV',desc='Structure to set low latency mode',type='structs'] 40 * pname:lowLatencyMode is the toggle to enable or disable low latency 57 [open,refpage='vkLatencySleepNV',desc='Trigger low latency mode Sleep',type='protos'] 285 For any submission to be tracked with low latency mode pacing, it needs to 289 pname:presentId present for low latency mode. [all …]
|
/hardware/google/gfxstream/host/tests/ |
D | GLTestUtils.cpp | 102 static float clamp(float x, float low, float high) { in clamp() argument 103 if (x < low) return low; in clamp()
|
/hardware/interfaces/power/1.2/ |
D | types.hal | 31 * This hint indicates that low latency audio is active. Can be used 32 * for device specific optimizations towards low latency audio. The 33 * data parameter is non-zero when low latency audio starts and
|
/hardware/interfaces/light/2.0/ |
D | types.hal | 55 * Use a low-persistence mode for display backlights. 57 * When set, the device driver must switch to a mode optimized for low display 66 * - The display must support low-persistence with ≤ 3.5 ms persistence. 74 * recommended for low latency.
|
/hardware/st/nfc/1.0/adaptation/ |
D | i2clayer.c | 62 static int i2cSetPolarity(int fid, bool low, bool edge); 296 static int i2cSetPolarity(int fid, bool low, bool edge) in i2cSetPolarity() argument 301 if (low) { in i2cSetPolarity()
|
/hardware/interfaces/power/1.0/ |
D | IPower.hal | 36 * system to low-power sleep state when entering non-interactive 37 * state, and to disallow low-power suspend when the system is in 38 * interactive state. When low-power suspend state is allowed, the
|
/hardware/interfaces/gnss/visibility_control/1.0/ |
D | IGnssVisibilityControlCallback.hal | 129 * Non-framework entities like low power sensor hubs that request location from GNSS and 131 * power-spending reporting. However, low power sensor hubs or other chipsets which may send 135 * leaves the domain of that low power chipset. 142 * called at 1Hz. As another example, if a low power processor is getting location from the
|
/hardware/qcom/gps/msm8960/core/ |
D | LocApiBase.cpp | 77 unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4; in decodeAddress() local 78 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; } in decodeAddress()
|
/hardware/interfaces/wifi/legacy_headers/include/hardware_legacy/ |
D | gscan.h | 241 wifi_rssi low; // low threshold member 269 wifi_rssi low; // low threshold member
|
/hardware/st/nfc/st21nfc/adaptation/ |
D | i2clayer.cc | 72 static int i2cSetPolarity(int fid, bool low, bool edge); 395 static int i2cSetPolarity(int fid, bool low, bool edge) { in i2cSetPolarity() argument 399 if (low) { in i2cSetPolarity()
|
/hardware/qcom/gps/msm8084/core/ |
D | LocApiBase.cpp | 78 unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4; in decodeAddress() local 79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; } in decodeAddress()
|
/hardware/interfaces/drm/1.4/ |
D | IDrmPlugin.hal | 56 * with metrics from other low level media components, e.g. codecs, or metrics from the high 71 * GENERAL_OEM_ERROR on OEM-provided, low-level component failures;
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/proposals/ |
D | VK_EXT_legacy_dithering.adoc | 16 itself is an artifact of low-frequency sampling (by our eyes) of a step 19 quantized over a low-precision format (for example 55 This can potentially be constrained to low-bit formats to limit its effect on 98 - The high and low precision versions of the attachment live on the tile memory
|
/hardware/interfaces/audio/7.1/ |
D | types.hal | 28 /** A relatively low latency compatible with head tracking operation (e.g less than 100ms) */
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/ |
D | README | 23 When this is enabled, the driver enters low power accel mode and disables all
|
/hardware/google/gchips/include/ |
D | VendorVideoAPI.h | 51 unsigned int low; member
|
/hardware/qcom/gps/core/ |
D | LocApiBase.cpp | 78 unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4; in decodeAddress() local 79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; } in decodeAddress()
|
/hardware/qcom/gps/msm8994/core/ |
D | LocApiBase.cpp | 78 unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4; in decodeAddress() local 79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; } in decodeAddress()
|
/hardware/qcom/gps/msm8909w_3100/core/ |
D | LocApiBase.cpp | 79 unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4; in decodeAddress() local 80 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; } in decodeAddress()
|
/hardware/qcom/gps/msm8996/core/ |
D | LocApiBase.cpp | 78 unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4; in decodeAddress() local 79 if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; } in decodeAddress()
|