Home
last modified time | relevance | path

Searched refs:desired (Results 1 – 25 of 43) sorted by relevance

12

/system/chre/platform/freertos/include/chre/target_platform/
Datomic_base_impl.h28 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/
Datomic_base_impl.h34 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/
Datomic_base_impl.h28 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/
Datomic.h46 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/
Dsndfile.h72 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/
Dsndfile_fuzzer.cpp63 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/
DParcel.cpp1768 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/
DREADME.md16 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/prebuilts/api/29.0/private/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
/system/sepolicy/prebuilts/api/26.0/private/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
/system/sepolicy/reqd_mask/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
/system/sepolicy/private/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
/system/sepolicy/prebuilts/api/31.0/private/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
/system/sepolicy/prebuilts/api/27.0/private/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
/system/sepolicy/prebuilts/api/28.0/private/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
/system/sepolicy/prebuilts/api/30.0/private/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
/system/unwinding/libunwindstack/
DMapInfo.cpp373 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/
DParcel.h273 status_t restartWrite(size_t desired);
274 status_t continueWrite(size_t desired);
/system/chre/doc/
Dporting_guide.md78 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.
Dvendor_extensions.md14 module to provide the desired functionality
133 nanoapps, depending on what error handling is desired in the case that the event
Dnanoapp_developer_guide.md137 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/
Dgtest.md44 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/
DQUICKSTART.md3 This guide focuses on integrating and porting CHPP to your desired platform. For implementation det…
/system/extras/app-launcher/
DREADME50 as desired.
/system/extras/partition_tools/
DREADME.md19 … to 1MiB boundaries. However, an alternate alignment can be specified if desired. This is useful f…

12