Home
last modified time | relevance | path

Searched defs:v (Results 1 – 25 of 81) sorted by relevance

1234

/hardware/google/av/media/sfplugin/
DCCodecConfig.cpp96 mMapper = [](C2Value v) -> C2Value { in withC2Mappers()
104 mReverse = [](C2Value v) -> C2Value { in withC2Mappers()
327 ConfigMapper::Mapper makeFloat = [](C2Value v) -> C2Value { in initializeStandardParams()
339 ConfigMapper::Mapper negate = [](C2Value v) -> C2Value { in initializeStandardParams()
361 .withMapper([](C2Value v) -> C2Value { in initializeStandardParams()
374 .withMappers(makeFloat, [](C2Value v) -> C2Value { in initializeStandardParams()
492 .withMapper([](C2Value v) -> C2Value { in initializeStandardParams()
506 .withMapper([](C2Value v) -> C2Value { in initializeStandardParams()
522 .withMappers(makeFloat, [](C2Value v) -> C2Value { in initializeStandardParams()
586 .withMappers([](C2Value v) -> C2Value { in initializeStandardParams()
[all …]
/hardware/interfaces/memtrack/1.0/vts/functional/
DVtsHalMemtrackV1_0TargetTest.cpp75 auto generate_cb(MemtrackStatus *s, hidl_vec<MemtrackRecord> *v) { in generate_cb()
86 hidl_vec<MemtrackRecord> v; in TEST_P() local
101 hidl_vec<MemtrackRecord> v; in TEST_P() local
119 hidl_vec<MemtrackRecord> v; in TEST_P() local
/hardware/st/secure_element2/secure_element/1.0/esehal/src/
Dcompiler.h41 # define check_printf(f, v) __attribute__((format(printf, f, v))) argument
43 # define check_printf(f, v) argument
/hardware/google/av/codec2/vndk/util/
DC2Debug.cpp77 std::string v = StringPrintf("%c%c", in attribParamIndex() local
160 std::ostream& operator<<(std::ostream &os, const c2_cntr_t<T> &v) { in operator <<()
191 for (const T &v : i.flags()) { in operator <<() local
215 for (const T &v : i.values()) { in operator <<() local
DC2InterfaceUtils.cpp188 for (const C2Value::Primitive &v : _mValues) { in contains() local
219 …std::remove_if(values.begin(), values.end(), [&limit, minMask](const C2Value::Primitive &v) -> boo… in limitedTo()
223 for (const C2Value::Primitive &v : _mValues) { in limitedTo() local
267 std::remove_if(values.begin(), values.end(), [&limit](const C2Value::Primitive &v) -> bool { in limitedTo()
275 std::remove_if(values.begin(), values.end(), [&limit](const C2Value::Primitive &v) -> bool { in limitedTo()
283 std::remove_if(values.begin(), values.end(), [&limit](const C2Value::Primitive &v) -> bool { in limitedTo()
/hardware/interfaces/identity/support/include/cppbor/
Dcppbor.h218 explicit Uint(uint64_t v) : mValue(v) {} in Uint()
290 explicit Bstr(std::vector<uint8_t> v) : mValue(std::move(v)) {} in Bstr()
293 explicit Bstr(const std::string& v) in Bstr()
343 explicit Tstr(std::string v) : mValue(std::move(v)) {} in Tstr()
346 explicit Tstr(const std::string_view& v) : mValue(v) {} in Tstr()
349 explicit Tstr(const char* v) : mValue(std::string(v)) {} in Tstr()
602 explicit Bool(bool v) : mValue(v) {} in Bool()
653 std::unique_ptr<T> downcastItem(std::unique_ptr<Item>&& v) { in downcastItem()
/hardware/libhardware/include/hardware/
Daudio_effect.h40 #define EFFECT_API_VERSION_MAJOR(v) ((v)>>16) argument
41 #define EFFECT_API_VERSION_MINOR(v) ((m) & 0xFFFF) argument
/hardware/interfaces/camera/common/1.0/default/
DCameraParameters.cpp198 String8 k, v; in flatten() local
233 String8 v(a); in unflatten() local
238 String8 v(a, (size_t)(b-a)); in unflatten() local
277 String8 v = mMap.valueFor(String8(key)); in get() local
285 const char *v = get(key); in getInt() local
293 const char *v = get(key); in getFloat() local
469 String8 k, v; in dump() local
484 String8 k, v; in dump() local
/hardware/interfaces/audio/core/all-versions/default/include/core/default/
DUtil.h44 inline bool element_in(T e, const std::vector<T>& v) { in element_in()
/hardware/qcom/display/msm8909/sdm/libs/core/drm/
Dhw_scale_drm.h52 explicit HWScaleDRM(Version v) : version_(v) {} in HWScaleDRM()
/hardware/qcom/sdm845/display/sdm/libs/core/drm/
Dhw_scale_drm.h52 explicit HWScaleDRM(Version v) : version_(v) {} in HWScaleDRM()
/hardware/qcom/display/msm8909w_3100/sdm/libs/core/drm/
Dhw_scale_drm.h52 explicit HWScaleDRM(Version v) : version_(v) {} in HWScaleDRM()
/hardware/qcom/sm8150/display/sdm/libs/core/drm/
Dhw_scale_drm.h52 explicit HWScaleDRM(Version v) : version_(v) {} in HWScaleDRM()
/hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/
Dconfirmationui_utils.h85 explicit array(const T& v) { fill(v); } in array()
96 void fill(const T& v) { in fill()
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
DLinearFakeValueGenerator.cpp33 const auto& v = request.value; in LinearFakeValueGenerator() local
DEmulatedVehicleHal.cpp108 VehiclePropValuePtr v = nullptr; in get() local
301 VehiclePropValuePtr v; in onContinuousPropertyTimer() local
372 const auto& v = request.value; in handleGenerateFakeDataRequest() local
/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
DVehicleHal.h89 void doHalEvent(VehiclePropValuePtr v) { in doHalEvent()
DVehicleObjectPool.h229 delete v; variable
/hardware/interfaces/sensors/common/vts/utils/include/sensors-vts-utils/
DSensorEventsChecker.h57 android::hardware::sensors::V1_0::Vec3 v = event.u.vec3; in checkEvent() local
/hardware/interfaces/ir/1.0/vts/functional/
DVtsHalIrV1_0TargetTest.cpp51 auto cb = [&](bool s, hidl_vec<ConsumerIrFreqRange> v) { in TEST_P()
/hardware/interfaces/confirmationui/support/src/
Dcbor.cpp26 inline uint8_t getByte(const uint64_t& v, const uint8_t index) { in getByte()
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
DStreamIoUtil.h154 unsigned char v = *i; in hexdumpToStream() local
/hardware/qcom/msm8998/json-c/
Dlinkhash.c493 int lh_table_insert(struct lh_table *t, void *k, const void *v) in lh_table_insert()
552 json_bool lh_table_lookup_ex(struct lh_table* t, const void* k, void **v) in lh_table_lookup_ex()
/hardware/libhardware_legacy/audio/
DAudioHardwareGeneric.cpp141 status_t AudioHardwareGeneric::setVoiceVolume(float v) in setVoiceVolume()
147 status_t AudioHardwareGeneric::setMasterVolume(float v) in setMasterVolume()
DA2dpAudioInterface.cpp208 status_t A2dpAudioInterface::setVoiceVolume(float v) in setVoiceVolume()
213 status_t A2dpAudioInterface::setMasterVolume(float v) in setMasterVolume()

1234