/hardware/google/gfxstream/host/vulkan/emulated_textures/shaders/ |
D | AstcLookupTables.glsl | 68 // Array to unquantize weights encoded with the trit + bits encoding. 75 // Array to unquantize weights encoded with the quint + bits encoding. 82 // Array to unquantize color endpoint data encoded with the trit + bits encoding. 108 // Array to unquantize color endpoint data encoded with the quint + bits encoding.
|
D | AstcDecompressor.glsl | 71 // Returns the number of bits needed to encode `numVals` values using a given encoding. 72 // encoding: number of trits (x), quints (y) and bits (z) used for the encoding. 73 uint getEncodingSize(uint numVals, uvec3 encoding) { 75 uvec2 tqBits = (numVals * encoding.xy * uvec2(8, 7) + uvec2(4, 2)) / uvec2(5, 3); 76 return numVals * encoding.z + (tqBits.x + tqBits.y); 216 // Refer to "Figure C.4" for the details of the encoding here. 249 // In the largest encoding possible (1 trit + 6 bits), the block is 38 bits long (5 * 6 + 8). 284 // Note that we don't have the same size issue as trits (see above), since the largest encoding 301 uint decode1Weight(uvec4 weightData, uvec3 encoding, uint numWeights, uint index) { 304 uint numBits = encoding.z; [all …]
|
D | AstcNew.comp | 71 // Returns the number of bits needed to encode `numVals` values using a given encoding. 72 // encoding: number of trits (x), quints (y) and bits (z) used for the encoding. 73 uint getEncodingSize(uint numVals, uvec3 encoding) { 75 uvec2 tqBits = (numVals * encoding.xy * uvec2(8, 7) + uvec2(4, 2)) / uvec2(5, 3); 76 return numVals * encoding.z + (tqBits.x + tqBits.y); 216 // Refer to "Figure C.4" for the details of the encoding here. 249 // In the largest encoding possible (1 trit + 6 bits), the block is 38 bits long (5 * 6 + 8). 284 // Note that we don't have the same size issue as trits (see above), since the largest encoding 301 uint decode1Weight(uvec4 weightData, uvec3 encoding, uint numWeights, uint index) { 304 uint numBits = encoding.z; [all …]
|
/hardware/interfaces/bluetooth/audio/2.1/ |
D | IBluetoothAudioProvidersFactory.hal | 55 * For software encoding, the PCM capabilities are returned. 56 * For hardware encoding, the supported codecs and their capabilities are 64 * For software encoding it is the PCM data rate. 65 * For hardware encoding it is the list of supported codecs and their 69 * encoding.
|
/hardware/interfaces/bluetooth/audio/2.0/ |
D | IBluetoothAudioProvidersFactory.hal | 53 * For software encoding, the PCM capabilities are returned. 54 * For hardware encoding, the supported codecs and their capabilities are 62 * For software encoding it is the PCM data rate. 63 * For hardware encoding it is the list of supported codecs and their 67 * encoding.
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
D | deperiodize_vuids.py | 18 with open(filename, 'r', encoding='utf8', newline='\n') as f: 24 with open(filename, 'w', encoding='utf8', newline='\n') as f:
|
D | genRef.py | 487 fp = open(pageName, 'w', encoding='utf-8') 512 fp = open(pageName, 'w', encoding='utf-8') 565 fp = open(pageName, 'w', encoding='utf-8') 620 fp = open(pageName, 'w', encoding='utf-8') 812 fp = open(pageName, 'w', encoding='utf-8') 869 appfp = open(appPath, 'r', encoding='utf-8') 891 fp = open(pageName, 'w', encoding='utf-8') 1063 fp = open(results.rewrite, 'w', encoding='utf-8') 1076 fp = open(results.toc, 'w', encoding='utf-8')
|
/hardware/interfaces/audio/aidl/common/tests/ |
D | utils_tests.cpp | 138 AudioFormatDescription make_AudioFormatDescription(const std::string& encoding) { in make_AudioFormatDescription() argument 140 result.encoding = encoding; in make_AudioFormatDescription() 144 AudioFormatDescription make_AudioFormatDescription(PcmType transport, const std::string& encoding) { in make_AudioFormatDescription() argument 145 auto result = make_AudioFormatDescription(encoding); in make_AudioFormatDescription()
|
/hardware/knowles/athletico/sound_trigger_hal/tests/ |
D | tunnel_test.c | 46 uint8_t encoding; /*!< Encoding */ member 323 } else if (TNL_ENC_OPAQUE == rft.format.encoding) { 325 if (TNL_ENC_OPAQUE == rft.format.encoding) { 327 …-enc0x%x_client%d.raw", filepath, FILE_PREFIX, tunnel_id, tunl_src, rft.format.encoding, instance); 329 …-enc0x%x_client%d.pcm", filepath, FILE_PREFIX, tunnel_id, tunl_src, rft.format.encoding, instance); 355 ALOGD("@@@Tunnel id %d encoding %d", tunnel_id, rft.format.encoding); 356 if (TNL_ENC_AFLOAT == rft.format.encoding) {
|
D | tunnel_test_sensor.c | 48 uint8_t encoding; // Encoding member 235 tunl_src, rft.format.encoding); in main() 262 tunnel_id, rft.format.encoding); in main()
|
/hardware/qcom/sm7250/gps/core/ |
D | loc_core_log.cpp | 160 const char* loc_get_ni_encoding_name(LocGpsNiEncodingType encoding) in loc_get_ni_encoding_name() argument 162 return loc_get_name_from_val(loc_eng_ni_encodings_tbl, (int64_t) encoding); in loc_get_ni_encoding_name()
|
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(LocGpsNiEncodingType encoding);
|
/hardware/qcom/sm8150/gps/core/ |
D | loc_core_log.cpp | 160 const char* loc_get_ni_encoding_name(LocGpsNiEncodingType encoding) in loc_get_ni_encoding_name() argument 162 return loc_get_name_from_val(loc_eng_ni_encodings_tbl, (int64_t) encoding); in loc_get_ni_encoding_name()
|
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(LocGpsNiEncodingType encoding);
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/util/ |
D | vk_entrypoints_gen.py | 297 with open(args.out_h, 'w', encoding='utf-8') as f: 300 with open(args.out_c, 'w', encoding='utf-8') as f:
|
/hardware/qcom/gps/msm8998/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(LocGpsNiEncodingType encoding);
|
/hardware/qcom/gps/msm8996/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(GpsNiEncodingType encoding);
|
/hardware/qcom/gps/msm8960/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(GpsNiEncodingType encoding);
|
/hardware/qcom/gps/msm8909/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(GpsNiEncodingType encoding);
|
/hardware/qcom/sm8150p/gps/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(LocGpsNiEncodingType encoding);
|
/hardware/qcom/sm7150/gps/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(LocGpsNiEncodingType encoding);
|
/hardware/qcom/gps/msm8994/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(GpsNiEncodingType encoding);
|
/hardware/qcom/gps/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(GpsNiEncodingType encoding);
|
/hardware/qcom/gps/msm8909w_3100/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(LocGpsNiEncodingType encoding);
|
/hardware/qcom/gps/msm8084/core/ |
D | loc_core_log.h | 48 const char* loc_get_ni_encoding_name(GpsNiEncodingType encoding);
|