/system/chre/platform/freertos/include/chre/target_platform/ |
D | atomic_base_impl.h | 28 inline bool AtomicBool::operator=(bool desired) { 29 mAtomic = desired; 30 return desired; 37 inline void AtomicBool::store(bool desired) { in store() argument 38 mAtomic.store(desired); in store() 41 inline bool AtomicBool::exchange(bool desired) { in exchange() argument 42 return mAtomic.exchange(desired); in exchange() 49 inline uint32_t AtomicUint32::operator=(uint32_t desired) { 50 mAtomic = desired; 51 return desired; [all …]
|
/system/chre/platform/slpi/include/chre/target_platform/ |
D | atomic_base_impl.h | 34 inline bool AtomicBool::operator=(bool desired) { 35 store(desired); 36 return desired; 44 inline void AtomicBool::store(bool desired) { in store() argument 45 exchange(desired); in store() 48 inline bool AtomicBool::exchange(bool desired) { in exchange() argument 50 return qurt_atomic_set(&mValue, static_cast<unsigned int>(desired)); in exchange() 57 inline uint32_t AtomicUint32::operator=(uint32_t desired) { 58 store(desired); 59 return desired; [all …]
|
/system/chre/platform/linux/include/chre/target_platform/ |
D | atomic_base_impl.h | 28 inline bool AtomicBool::operator=(bool desired) { 29 return mAtomic = desired; 36 inline void AtomicBool::store(bool desired) { in store() argument 37 mAtomic.store(desired); in store() 40 inline bool AtomicBool::exchange(bool desired) { in exchange() argument 41 return mAtomic.exchange(desired); in exchange() 48 inline uint32_t AtomicUint32::operator=(uint32_t desired) { 49 return mAtomic = desired; 56 inline void AtomicUint32::store(uint32_t desired) { in store() argument 57 mAtomic.store(desired); in store() [all …]
|
/system/chre/platform/include/chre/platform/ |
D | atomic.h | 46 bool operator=(bool desired); 70 void store(bool desired); 79 bool exchange(bool desired); 103 uint32_t operator=(uint32_t desired); 127 void store(uint32_t desired); 136 uint32_t exchange(uint32_t desired);
|
/system/media/audio_utils/include/audio_utils/ |
D | sndfile.h | 72 sf_count_t sf_readf_short(SNDFILE *handle, int16_t *ptr, sf_count_t desired); 73 sf_count_t sf_readf_float(SNDFILE *handle, float *ptr, sf_count_t desired); 74 sf_count_t sf_readf_int(SNDFILE *handle, int *ptr, sf_count_t desired); 80 sf_count_t sf_writef_short(SNDFILE *handle, const int16_t *ptr, sf_count_t desired); 81 sf_count_t sf_writef_float(SNDFILE *handle, const float *ptr, sf_count_t desired); 82 sf_count_t sf_writef_int(SNDFILE *handle, const int *ptr, sf_count_t desired);
|
/system/media/audio_utils/fuzz/sndfile_fuzzer/ |
D | sndfile_fuzzer.cpp | 63 const void *ptr, sf_count_t desired) { in sfReadfWithType() argument 65 case 0: return sf_readf_short(handle, (short *)ptr, desired); in sfReadfWithType() 66 case 1: return sf_readf_int(handle, (int *)ptr, desired); in sfReadfWithType() 67 case 2: return sf_readf_float(handle, (float *)ptr, desired); in sfReadfWithType()
|
/system/libhwbinder/ |
D | Parcel.cpp | 1768 status_t Parcel::restartWrite(size_t desired) in restartWrite() argument 1770 if (desired > INT32_MAX) { in restartWrite() 1778 return continueWrite(desired); in restartWrite() 1781 uint8_t* data = reallocZeroFree(mData, mDataCapacity, desired, mDeallocZero); in restartWrite() 1782 if (!data && desired > mDataCapacity) { in restartWrite() 1789 if (data || desired == 0) { in restartWrite() 1790 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired); in restartWrite() 1791 if (mDataCapacity > desired) { in restartWrite() 1792 gParcelGlobalAllocSize -= (mDataCapacity - desired); in restartWrite() 1794 gParcelGlobalAllocSize += (desired - mDataCapacity); in restartWrite() [all …]
|
/system/extras/boottime_tools/bootio/ |
D | README.md | 16 Where the value of $TIMEOUT corresponds to the desired bootio period in 17 seconds and $SAMPLES corresponds to the desired number of samples.
|
/system/sepolicy/reqd_mask/ |
D | mls_decl | 5 # Generate the desired number of sensitivities and categories.
|
/system/sepolicy/prebuilts/api/30.0/private/ |
D | mls_decl | 5 # Generate the desired number of sensitivities and categories.
|
/system/sepolicy/prebuilts/api/29.0/private/ |
D | mls_decl | 5 # Generate the desired number of sensitivities and categories.
|
/system/sepolicy/prebuilts/api/26.0/private/ |
D | mls_decl | 5 # Generate the desired number of sensitivities and categories.
|
/system/sepolicy/private/ |
D | mls_decl | 5 # Generate the desired number of sensitivities and categories.
|
/system/sepolicy/prebuilts/api/27.0/private/ |
D | mls_decl | 5 # Generate the desired number of sensitivities and categories.
|
/system/sepolicy/prebuilts/api/31.0/private/ |
D | mls_decl | 5 # Generate the desired number of sensitivities and categories.
|
/system/sepolicy/prebuilts/api/28.0/private/ |
D | mls_decl | 5 # Generate the desired number of sensitivities and categories.
|
/system/unwinding/libunwindstack/ |
D | MapInfo.cpp | 373 std::unique_ptr<ElfFields> desired(new ElfFields()); in GetElfFields() local 376 if (elf_fields_.compare_exchange_strong(expected, desired.get())) { in GetElfFields() 377 return *desired.release(); // Success: we transferred the pointer ownership to the field. in GetElfFields()
|
/system/libhwbinder/include/hwbinder/ |
D | Parcel.h | 273 status_t restartWrite(size_t desired); 274 status_t continueWrite(size_t desired);
|
/system/chre/doc/ |
D | porting_guide.md | 78 functionality until the full desired feature set is achieved. An existing 115 desired optional feature areas, like sensors (potentially via their respective 128 implementations are able to choose a different protocol if desired, but would 153 support a desired nanoapp. CHRE feature areas include sensors, GNSS, audio, and 181 benefits of a common PAL binary are desired.
|
D | vendor_extensions.md | 14 module to provide the desired functionality 133 nanoapps, depending on what error handling is desired in the case that the event
|
D | nanoapp_developer_guide.md | 137 interactions in cases where the lowest memory footprint is desired, using only 201 Then in your nanoapp’s Makefile, populate `NANOPB_SRCS` with the desired
|
/system/bt/gd/docs/testing/ |
D | gtest.md | 44 run `source build/envsetup.sh` and `lunch` to a desired target. Then 76 1. Sync Android tree, run `build/envsetup` and `lunch` desired target, `cd`
|
/system/chre/chpp/ |
D | QUICKSTART.md | 3 This guide focuses on integrating and porting CHPP to your desired platform. For implementation det…
|
/system/extras/app-launcher/ |
D | README | 50 as desired.
|
/system/extras/partition_tools/ |
D | README.md | 19 … to 1MiB boundaries. However, an alternate alignment can be specified if desired. This is useful f…
|