Home
last modified time | relevance | path

Searched refs:val1 (Results 1 – 7 of 7) sorted by relevance

/frameworks/wilhelm/src/android/
Dandroid_GenericPlayer.cpp422 int32_t val1, val2; in onNotify() local
423 if (msg->findInt32(PLAYEREVENT_PREFETCHSTATUSCHANGE, &val1)) { in onNotify()
424 SL_LOGV("GenericPlayer notifying %s = %d", PLAYEREVENT_PREFETCHSTATUSCHANGE, val1); in onNotify()
425 notifClient(kEventPrefetchStatusChange, val1, 0, notifUser); in onNotify()
427 } else if (msg->findInt32(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, &val1)) { in onNotify()
428 SL_LOGV("GenericPlayer notifying %s = %d", PLAYEREVENT_PREFETCHFILLLEVELUPDATE, val1); in onNotify()
429 notifClient(kEventPrefetchFillLevelUpdate, val1, 0, notifUser); in onNotify()
430 } else if (msg->findInt32(PLAYEREVENT_ENDOFSTREAM, &val1)) { in onNotify()
431 SL_LOGV("GenericPlayer notifying %s = %d", PLAYEREVENT_ENDOFSTREAM, val1); in onNotify()
432 notifClient(kEventEndOfStream, val1, 0, notifUser); in onNotify()
[all …]
/frameworks/ml/nn/common/operations/
DPRelu.cpp83 [&](const T& val1, const T& val2) -> uint8_t { in evalQuant8() argument
84 const int32_t input = input_offset + static_cast<int32_t>(val1); in evalQuant8()
132 [](const _Float16& val1, const _Float16& val2) -> _Float16 { in execute() argument
133 return val1 >= 0.0f ? val1 : val1 * val2; in execute()
143 [](const float& val1, const float& val2) -> float { in execute() argument
144 return val1 >= 0.0f ? val1 : val1 * val2; in execute()
/frameworks/opt/colorpicker/src/com/android/colorpicker/
DHsvColorComparator.java34 float val1 = hsv[2]; in compare() local
52 if (val1 < val2) { in compare()
54 } else if (val1 > val2) { in compare()
/frameworks/av/media/libaaudio/examples/utils/
DAAudioExampleUtils.h136 android::status_t sys_futex(void *addr1, int op, int val1, in sys_futex() argument
139 op, val1, timeout, in sys_futex()
/frameworks/base/services/core/java/com/android/server/audio/
DAudioServiceEvents.java115 VolumeEvent(int op, int stream, int val1, int val2, String caller) { in VolumeEvent() argument
118 mVal1 = val1; in VolumeEvent()
/frameworks/base/media/jni/
DJetPlayer.h30 typedef void (*jetevent_callback)(int eventType, int val1, int val2, void *cookie);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DHalDeviceManager.java1659 private boolean compareIfaceCreationData(IfaceCreationData val1, IfaceCreationData val2) { in compareIfaceCreationData() argument
1660 if (VDBG) Log.d(TAG, "compareIfaceCreationData: val1=" + val1 + ", val2=" + val2); in compareIfaceCreationData()
1663 if (val1 == null) { in compareIfaceCreationData()
1672 if (val1.chipInfo.currentModeIdValid in compareIfaceCreationData()
1673 && val1.chipInfo.currentModeId != val1.chipModeId) { in compareIfaceCreationData()
1674 numIfacesToDelete1 = val1.chipInfo.ifaces[type].length; in compareIfaceCreationData()
1676 numIfacesToDelete1 = val1.interfacesToBeRemovedFirst.size(); in compareIfaceCreationData()