Home
last modified time | relevance | path

Searched refs:prevValue (Results 1 – 5 of 5) sorted by relevance

/system/chre/platform/arm/include/chre/target_platform/
Datomic_base.h32 uint32_t prevValue; in swapByte() local
39 : "=r"(prevValue), "=r"(storeFailed), "=r"(newValue), "=r"(byte) in swapByte()
44 return prevValue; in swapByte()
55 uint32_t prevValue; in swapWord() local
62 : "=r"(prevValue), "=r"(storeFailed), "=r"(newValue), "=r"(word) in swapWord()
67 return prevValue; in swapWord()
78 uint32_t prevValue; in addToWord() local
87 : "=r"(prevValue), "=r"(storeFailed), "=r"(tmp), "=r"(addend), in addToWord()
93 return prevValue; in addToWord()
104 uint32_t prevValue; in subFromWord() local
[all …]
/system/media/camera/docs/
DHidlMetadata.mako143 <% prevValue = None %>\
147 % if prevValue is None:
150 /** ${entry.name} enumeration values added since v${prevValue.hal_major_version}.${prevValue.hal_mi…
154 …ted_enum_type(entry) if prevValue is None else '\n @%d.%d::CameraMetadataEnum%s' % (prevVal…
163 <% prevValue = val %>\
/system/core/debuggerd/test_permissive_mte/src/com/android/tests/debuggerd/
DPermissiveMteTest.java102 String prevValue = getDevice().getProperty("persist.sys.mte.permissive"); in testCrashProperty() local
103 if (prevValue == null) { in testCrashProperty()
104 prevValue = ""; in testCrashProperty()
127 assertThat(getDevice().setProperty("persist.sys.mte.permissive", prevValue)).isTrue(); in testCrashProperty()
/system/tools/hidl/
DEnumType.cpp68 EnumValue* prevValue = nullptr; in resolveInheritance() local
73 prevValue = type->values().back(); in resolveInheritance()
79 value->autofill(prevType, prevValue, mStorageType->resolveToScalarType()); in resolveInheritance()
81 prevValue = value; in resolveInheritance()
837 void EnumValue::autofill(const EnumType* prevType, EnumValue* prevValue, const ScalarType* type) { in autofill() argument
841 CHECK((prevType == nullptr) == (prevValue == nullptr)); in autofill()
844 if (prevValue == nullptr) { in autofill()
847 std::string description = prevType->fullName() + "." + prevValue->name() + " implicitly"; in autofill()
849 Reference<LocalIdentifier>(prevValue->mName, prevValue, mLocation), description); in autofill()
DEnumType.h158 void autofill(const EnumType* prevType, EnumValue* prevValue, const ScalarType* type);