/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/bt/vendor_libs/test_vendor_lib/packets/link_layer/ |
D | link_layer_packet_view.cc | 25 …cketView::LinkLayerPacketView(std::shared_ptr<std::vector<uint8_t>> raw) : PacketView<true>(raw) {} in LinkLayerPacketView() argument 27 LinkLayerPacketView LinkLayerPacketView::Create(std::shared_ptr<std::vector<uint8_t>> raw) { in Create() argument 28 CHECK(raw->size() >= Link::kSizeBytes + Link::kTypeBytes + 2 * Address::kLength); in Create() 29 return LinkLayerPacketView(raw); in Create()
|
D | link_layer_packet_view.h | 36 static LinkLayerPacketView Create(std::shared_ptr<std::vector<uint8_t>> raw); 45 LinkLayerPacketView(std::shared_ptr<std::vector<uint8_t>> 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/vold/ |
D | KeyUtil.cpp | 71 static_assert(FS_AES_256_XTS_KEY_SIZE <= sizeof(fs_key->raw), "Key too long!"); in fillKey() 74 memset(fs_key->raw, 0, sizeof(fs_key->raw)); in fillKey() 75 memcpy(fs_key->raw, key.data(), key.size()); in fillKey() 108 *raw_ref = generateKeyRef(fs_key.raw, fs_key.size); in installKey()
|
D | Utils.cpp | 246 bool FindValue(const std::string& raw, const std::string& key, std::string* value) { in FindValue() argument 250 start = raw.find(qual, start); in FindValue() 252 if (start == 0 || raw[start - 1] == ' ') { in FindValue() 259 auto end = raw.find("\"", start); in FindValue() 262 *value = raw.substr(start, end - start); in FindValue()
|
/system/tools/aidl/ |
D | aidl_to_ndk.cpp | 50 Aspect raw; member 84 .raw = in PrimitiveType() 111 .raw = in InterfaceTypeInfo() 134 .raw = in ParcelableTypeInfo() 170 .raw = 200 .raw = 219 .raw = 278 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/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 | 83 buffer->raw = NULL; in echo_reference_get_next_buffer() 213 int16_t *src16 = (int16_t *)buffer->raw; in echo_reference_write() 246 er->wr_src_buf = buffer->raw; in echo_reference_write() 262 srcBuf = buffer->raw; in echo_reference_write() 323 memset(buffer->raw, 0, er->rd_frame_size * buffer->frame_count); in echo_reference_read() 462 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/sepolicy/tools/fc_sort/ |
D | README | 9 $ wget https://raw.githubusercontent.com/TresysTechnology/refpolicy/master/support/fc_sort.c
|
/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 | 289 char* raw = nullptr; in parseNfPacketMessage() local 301 raw = (char*)nlAttrData(payload); in parseNfPacketMessage() 307 hex[4 + (i * 2)] = "0123456789abcdef"[(raw[i] >> 4) & 0xf]; in parseNfPacketMessage() 308 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/bt/gd/packet/ |
D | packet_view_unittest.cc | 111 Address raw({0x10, 0x11, 0x12, 0x13, 0x14, 0x15}); in TEST() local 112 ASSERT_EQ(raw, general_case.extract<Address>()); in TEST() 125 Address raw({0x15, 0x14, 0x13, 0x12, 0x11, 0x10}); in TEST() local 126 ASSERT_EQ(raw, general_case.extract<Address>()); in TEST()
|
/system/bt/vendor_libs/test_vendor_lib/packets/test/ |
D | packet_view_test.cc | 108 Address raw({0x10, 0x11, 0x12, 0x13, 0x14, 0x15}); in TEST() local 109 ASSERT_EQ(raw, general_case.extract<Address>()); in TEST() 122 Address raw({0x15, 0x14, 0x13, 0x12, 0x11, 0x10}); in TEST() local 123 ASSERT_EQ(raw, general_case.extract<Address>()); in TEST()
|
/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/26.0/private/ |
D | bluetooth.te | 75 # Bluetooth requires net_{admin,raw,bind_service} and wake_alarm and block_suspend and sys_nice.
|
/system/core/libziparchive/ |
D | zip_archive_test.cc | 434 static void ZipArchiveStreamTest(ZipArchiveHandle& handle, const std::string& entry_name, bool raw, in ZipArchiveStreamTest() argument 440 if (raw) { in ZipArchiveStreamTest() 466 const std::vector<uint8_t>& contents, bool raw) { in ZipArchiveStreamTestUsingContents() argument 472 ZipArchiveStreamTest(handle, entry_name, raw, true, &entry, &read_data); in ZipArchiveStreamTestUsingContents()
|