/system/bt/embdrv/sbc/decoder/srce/ |
D | dequant.c | 133 INLINE float dequant_float(uint32_t raw, OI_UINT scale_factor, OI_UINT bits) { in dequant_float() argument 135 ((raw * 2.0f + 1.0f) / ((1 << bits) - 1.0f) - 1.0f); in dequant_float() 151 INLINE int32_t OI_SBC_Dequant(uint32_t raw, OI_UINT scale_factor, in OI_SBC_Dequant() argument 163 d = (raw * 2) + 1; in OI_SBC_Dequant() 172 float_result = dequant_float(raw, scale_factor, bits); in OI_SBC_Dequant() 190 INLINE int32_t OI_SBC_Dequant_Unscaled(uint32_t raw, OI_UINT scale_factor, in OI_SBC_Dequant_Unscaled() argument 202 result = (raw << 16) + raw - 0x7fff7fff; in OI_SBC_Dequant_Unscaled() 206 d = (raw * 2) + 1; in OI_SBC_Dequant_Unscaled()
|
D | readsamplesjoint.inc | 78 uint32_t raw; 83 OI_BITSTREAM_READUINT(raw, bits, ptr, value, bitPtr); 84 dequant = OI_SBC_Dequant(raw, sf, bits); 92 uint32_t raw; 97 OI_BITSTREAM_READUINT(raw, bits, ptr, value, bitPtr); 98 dequant = OI_SBC_Dequant(raw, sf, bits);
|
D | decoder-private.c | 212 uint32_t raw; in OI_SBC_ReadSamples() local 213 OI_BITSTREAM_READUINT(raw, bits, ptr, value, bitPtr); in OI_SBC_ReadSamples() 214 dequant = OI_SBC_Dequant(raw, sf, bits); in OI_SBC_ReadSamples()
|
/system/media/audio_utils/tests/ |
D | build_and_run_biquad_filter.sh | 26 adb push $ANDROID_BUILD_TOP/cts/tests/tests/media/res/raw/sinesweepraw.raw $testdir 31 adb shell $testdir/biquad_filter -ch:$ch $testdir/sinesweepraw.raw \ 32 $testdir/sinesweep_$((ch)).raw 38 adb shell cmp $testdir/sinesweep_2.raw \ 39 $testdir/sinesweep_$((ch)).raw
|
/system/update_engine/update_manager/ |
D | real_updater_provider.cc | 104 GetStatusHelper raw(system_state(), errmsg); in GetValue() local 105 if (!raw.is_success()) in GetValue() 108 return new Time(Time::FromTimeT(raw.last_checked_time())); in GetValue() 123 GetStatusHelper raw(system_state(), errmsg); in GetValue() local 124 if (!raw.is_success()) in GetValue() 127 if (raw.progress() < 0.0 || raw.progress() > 1.0) { in GetValue() 130 StringPrintf("Invalid progress value received: %f", raw.progress()); in GetValue() 135 return new double(raw.progress()); in GetValue() 175 GetStatusHelper raw(system_state(), errmsg); in GetValue() local 176 if (!raw.is_success()) in GetValue() [all …]
|
/system/tools/aidl/ |
D | aidl_to_ndk.cpp | 50 Aspect raw; member 94 .raw = in PrimitiveType() 121 .raw = in InterfaceTypeInfo() 143 .raw = in ParcelableTypeInfo() 182 .raw = TypeInfo::Aspect{ in EnumDeclarationTypeInfo() 248 .raw = 277 .raw = 295 .raw = 382 return info.raw; in GetTypeAspect()
|
/system/extras/ANRdaemon/ |
D | README | 5 global control /d/trace/trace_on. The raw trace file is stored at 21 drops, the last entry it leaves in the raw trace file is the scheduler switched 25 daemon process to some other process. Due to this artifact, when the raw trace
|
/system/memory/libmeminfo/tools/ |
D | librank.cpp | 242 static std::string escape_csv_string(const std::string& raw) { in escape_csv_string() argument 244 for (auto it = raw.cbegin(); it != raw.cend(); it++) { in escape_csv_string() 270 static std::string escape_json_string(const std::string& raw) { in escape_json_string() argument 272 for (auto it = raw.cbegin(); it != raw.cend(); it++) { in escape_json_string()
|
/system/media/audio_utils/include/audio_utils/ |
D | echo_reference.h | 27 void *raw; // pointer to audio frame member
|
D | resampler.h | 34 void* raw; member
|
/system/media/audio_utils/ |
D | echo_reference.c | 84 buffer->raw = NULL; in echo_reference_get_next_buffer() 214 int16_t *src16 = (int16_t *)buffer->raw; in echo_reference_write() 247 er->wr_src_buf = buffer->raw; in echo_reference_write() 263 srcBuf = buffer->raw; in echo_reference_write() 324 memset(buffer->raw, 0, er->rd_frame_size * buffer->frame_count); in echo_reference_read() 463 memcpy(buffer->raw, in echo_reference_read()
|
D | resampler.c | 111 if (buf.raw == NULL) { in resampler_resample_from_provider() 115 buf.raw, in resampler_resample_from_provider()
|
/system/tools/hidl/hashing/include/hidl-hash/ |
D | Hash.h | 41 const std::vector<uint8_t>& raw() const;
|
/system/core/adb/coverage/ |
D | gen_coverage.sh | 93 dd if=/dev/zero bs=1024 count=10240 | adb -s $REMOTE raw sink:10485760 94 adb -s $REMOTE raw source:10485760 | dd of=/dev/null bs=1024 count=10240
|
/system/vold/ |
D | KeyUtil.cpp | 124 static_assert(FSCRYPT_MAX_KEY_SIZE == sizeof(fs_key->raw), "Mismatch of max key sizes"); in fillKey() 126 memcpy(fs_key->raw, key.data(), key.size()); in fillKey() 191 memcpy(provisioning_key.raw, key.data(), key.size()); in installProvisioningKey() 296 memcpy(arg->raw, key.data(), key.size()); in installKey()
|
D | Utils.cpp | 248 bool FindValue(const std::string& raw, const std::string& key, std::string* value) { in FindValue() argument 252 start = raw.find(qual, start); in FindValue() 254 if (start == 0 || raw[start - 1] == ' ') { in FindValue() 261 auto end = raw.find("\"", start); in FindValue() 264 *value = raw.substr(start, end - start); in FindValue()
|
/system/core/libunwindstack/tests/ |
D | RegsTest.cpp | 55 uint32_t* raw = reinterpret_cast<uint32_t*>(regs32.RawData()); in TEST_F() local 57 raw[i] = 0xf0000000 + i; in TEST_F() 77 uint64_t* raw = reinterpret_cast<uint64_t*>(regs64.RawData()); in TEST_F() local 79 raw[i] = 0xf123456780000000UL + i; in TEST_F()
|
/system/media/audio/include/system/ |
D | audio_effect.h | 452 void* raw; // raw pointer to start of buffer member
|
/system/core/libsysutils/src/ |
D | NetlinkEvent.cpp | 314 char* raw = nullptr; in parseNfPacketMessage() local 326 raw = (char*)nlAttrData(payload); in parseNfPacketMessage() 333 hex[4 + (i * 2)] = "0123456789abcdef"[(raw[i] >> 4) & 0xf]; in parseNfPacketMessage() 334 hex[5 + (i * 2)] = "0123456789abcdef"[raw[i] & 0xf]; in parseNfPacketMessage()
|
/system/bt/vendor_libs/test_vendor_lib/scripts/ |
D | send_simple_commands.py | 133 print(raw(received_bytes))
|
/system/core/adb/client/ |
D | incremental_server.cpp | 425 BlockBuffer raw; in SendDataBlock() local 427 const int64_t bytesRead = file.ReadDataBlock(blockIdx, raw.data, &isZipCompressed); in SendDataBlock() 437 compressedSize = LZ4_compress_default(raw.data, compressed.data, bytesRead, kCompressBound); in SendDataBlock() 449 header = &raw.header; in SendDataBlock()
|
/system/sepolicy/prebuilts/api/26.0/private/ |
D | bluetooth.te | 75 # Bluetooth requires net_{admin,raw,bind_service} and wake_alarm and block_suspend and sys_nice.
|
/system/sepolicy/prebuilts/api/27.0/private/ |
D | bluetooth.te | 74 # Bluetooth requires net_{admin,raw,bind_service} and wake_alarm and block_suspend and sys_nice.
|
/system/sepolicy/prebuilts/api/28.0/private/ |
D | bluetooth.te | 78 # Bluetooth requires net_{admin,raw,bind_service} and wake_alarm and block_suspend and sys_nice.
|
/system/sepolicy/prebuilts/api/30.0/private/ |
D | bluetooth.te | 84 # Bluetooth requires net_{admin,raw,bind_service} and wake_alarm and block_suspend and sys_nice.
|