Home
last modified time | relevance | path

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

12

/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
51 static_cast<unsigned int>(desired)); in exchange()
58 inline uint32_t AtomicUint32::operator=(uint32_t desired) {
59 store(desired);
60 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.h47 bool operator=(bool desired);
71 void store(bool desired);
80 bool exchange(bool desired);
105 uint32_t operator=(uint32_t desired);
129 void store(uint32_t desired);
138 uint32_t exchange(uint32_t desired);
/system/media/audio_utils/include/audio_utils/
Dsndfile.h71 sf_count_t sf_readf_short(SNDFILE *handle, int16_t *ptr, sf_count_t desired);
72 sf_count_t sf_readf_float(SNDFILE *handle, float *ptr, sf_count_t desired);
73 sf_count_t sf_readf_int(SNDFILE *handle, int *ptr, sf_count_t desired);
79 sf_count_t sf_writef_short(SNDFILE *handle, const int16_t *ptr, sf_count_t desired);
80 sf_count_t sf_writef_float(SNDFILE *handle, const float *ptr, sf_count_t desired);
81 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.cpp1706 status_t Parcel::restartWrite(size_t desired) in restartWrite() argument
1708 if (desired > INT32_MAX) { in restartWrite()
1716 return continueWrite(desired); in restartWrite()
1719 uint8_t* data = (uint8_t*)realloc(mData, desired); in restartWrite()
1720 if (!data && desired > mDataCapacity) { in restartWrite()
1728 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired); in restartWrite()
1729 if (mDataCapacity > desired) { in restartWrite()
1730 gParcelGlobalAllocSize -= (mDataCapacity - desired); in restartWrite()
1732 gParcelGlobalAllocSize += (desired - mDataCapacity); in restartWrite()
1739 mDataCapacity = desired; 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/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.
Dapp.te328 # Others are either allowed elsewhere or not desired.
/system/sepolicy/prebuilts/api/29.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/sepolicy/prebuilts/api/28.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/prebuilts/api/26.0/private/
Dmls_decl5 # Generate the desired number of sensitivities and categories.
Dapp.te315 # Others are either allowed elsewhere or not desired.
/system/core/adb/
DSOCKET-ACTIVATION.txt39 accept(2) connections and that's already bound to the desired address
/system/libhwbinder/include/hwbinder/
DParcel.h262 status_t restartWrite(size_t desired);
263 status_t continueWrite(size_t 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/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…
/system/chre/build/sys_support/qcom/
Dchre.scons32 # 1. Set the flags below to True/False depending on which features are desired
/system/sepolicy/prebuilts/api/28.0/public/
Dapp.te346 # Others are either allowed elsewhere or not desired.
/system/update_engine/
DREADME.md503 run the desired `unittest.p`y files.
533 file `/mnt/stateful_partition/etc/lsb-release` with desired customized
/system/sepolicy/public/
Dapp.te341 # Others are either allowed elsewhere or not desired.

12