Home
last modified time | relevance | path

Searched refs:up (Results 1 – 25 of 99) sorted by relevance

1234

/packages/modules/NeuralNetworks/runtime/test/fuzzing/operation_signatures/
DOperationSignatureUtils.h104 inline T getUniformValue(int valueProperties, T low, T up, T zeroPoint) {
106 NN_FUZZER_CHECK(up >= zeroPoint);
110 return getUniformNonZero(low, up, zeroPoint);
112 return getUniform(low, up);
121 inline void uniform(T low, T up, T zeroPoint, RandomOperand* op) {
125 data[i] = getUniformValue<T>(op->valueProperties, low, up, zeroPoint);
379 #define PARAMETER_VEC_RANGE(opType, len, low, up) \
383 PARAMETER_FILL_BUFFER_HELPER(opType, len, getUniform, low, up); \
388 #define PARAMETER_RANGE(opType, low, up) PARAMETER_VEC_RANGE(opType, 1, low, up)
393 #define PARAMETER_FLOAT_RANGE(low, up) \
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DNetdWrapper.java66 void interfaceStatusChanged(String iface, boolean up); in interfaceStatusChanged() argument
74 void interfaceLinkStateChanged(String iface, boolean up); in interfaceLinkStateChanged() argument
119 public void onInterfaceChanged(String ifName, boolean up) in onInterfaceChanged() argument
121 mHandler.post(() -> notifyInterfaceStatusChanged(ifName, up)); in onInterfaceChanged()
125 public void onInterfaceLinkStateChanged(String ifName, boolean up) in onInterfaceLinkStateChanged() argument
127 mHandler.post(() -> notifyInterfaceLinkStateChanged(ifName, up)); in onInterfaceLinkStateChanged()
481 private void notifyInterfaceStatusChanged(String iface, boolean up) { in notifyInterfaceStatusChanged() argument
483 observer.interfaceStatusChanged(iface, up); in notifyInterfaceStatusChanged()
491 private void notifyInterfaceLinkStateChanged(String iface, boolean up) { in notifyInterfaceLinkStateChanged() argument
493 observer.interfaceLinkStateChanged(iface, up); in notifyInterfaceLinkStateChanged()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/
DTemperatureTextAnimator.java136 private Animation createTranslateFadeAnimation(boolean in, boolean up) { in createTranslateFadeAnimation() argument
140 int fromYDelta = in ? (up ? 1 : -1) : 0; in createTranslateFadeAnimation()
141 int toYDelta = in ? 0 : (up ? -1 : 1); in createTranslateFadeAnimation()
151 private Animation createRotateFadeAnimation(boolean in, boolean isLeft, boolean up) { in createRotateFadeAnimation() argument
156 float degrees = isLeft == up ? -ROTATION_DEGREES : ROTATION_DEGREES; in createRotateFadeAnimation()
/packages/modules/NetworkStack/src/com/android/server/
DNetworkObserverRegistry.java156 public void onInterfaceChanged(String ifName, boolean up) { in onInterfaceChanged() argument
157 invokeForAllObservers(o -> o.onInterfaceChanged(ifName, up)); in onInterfaceChanged()
161 public void onInterfaceLinkStateChanged(String ifName, boolean up) { in onInterfaceLinkStateChanged() argument
162 invokeForAllObservers(o -> o.onInterfaceLinkStateChanged(ifName, up)); in onInterfaceLinkStateChanged()
DNetworkObserver.java30 default void onInterfaceChanged(String ifName, boolean up) {} in onInterfaceChanged() argument
52 default void onInterfaceLinkStateChanged(String ifName, boolean up) {} in onInterfaceLinkStateChanged() argument
/packages/apps/TV/src/com/android/tv/
DChannelTuner.java185 public boolean moveToAdjacentBrowsableChannel(boolean up) { in moveToAdjacentBrowsableChannel() argument
186 Channel channel = getAdjacentBrowsableChannel(up); in moveToAdjacentBrowsableChannel()
198 public Channel getAdjacentBrowsableChannel(boolean up) { in getAdjacentBrowsableChannel() argument
214 int nextChannelIndex = up ? channelIndex + 1 + i : channelIndex - 1 - i + size; in getAdjacentBrowsableChannel()
/packages/apps/Car/libs/car-ui-lib/
DREADME.md17 …e as an example RRO for OEMs, and should be kept reasonably functional and up-to-date because we u…
40up the shared library is mostly the same as setting up paintbooth. However, when you attempt to in…
46 Once you've set up paintbooth as described above, just open one of the test classes in car-ui-lib >…
/packages/apps/Launcher3/
Dbuglist_with_title.txt7 160568387 twickham P2 FIXED Can't get to app switcher by swiping up (motion pause not de…
10 160759508 twickham P2 FIXED Swipe up cannot back to home screen in overview. ----
13 … FIXED Screen still stay at the quick settings/notification when I swipe up with 3 finger to che…
/packages/modules/Connectivity/service/src/com/android/server/connectivity/
DNat464Xlat.java449 private void handleInterfaceLinkStateChanged(String iface, boolean up) { in handleInterfaceLinkStateChanged() argument
464 if (!isStarting() || !up || !Objects.equals(mIface, iface)) { in handleInterfaceLinkStateChanged()
501 public void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() argument
502 mNetwork.handler().post(() -> { handleInterfaceLinkStateChanged(iface, up); }); in interfaceLinkStateChanged()
/packages/apps/Car/RotaryController/
Dreadme.md35 To nudge the controller up, run:
39 Use KeyCode ```280``` for nudge up, ```281``` for nudge down,```282``` for nudge left,```283``` for
/packages/modules/Virtualization/docs/getting_started/
Dyukawa.md9 in AOSP is currently not GKI, but it is close and kept up to date.
16 * [Manufaturer's wiki](https://docs.khadas.com/vim3/index.html) for things like setting up UART
/packages/apps/Gallery2/src/com/android/photos/views/
DGalleryThumbnailView.java396 final boolean up; in trackMotionScroll()
400 up = true; in trackMotionScroll()
403 up = false; in trackMotionScroll()
406 offsetChildren(up ? movedBy : -movedBy); in trackMotionScroll()
/packages/services/Telecomm/proto/
Dtelecom.proto165 // Keep this up-to-date with com.android.server.telecom.InCallController.
216 // such as hanging up.
220 // such as the other party hanging up.
/packages/modules/Wifi/service/java/com/android/server/wifi/
DREADME.txt42 ActiveModeWarden: Tracks the various states on STA and AP connectivity and handles bring up and shu…
48 …ioned, turning off Wi-Fi from settings or from a third party app will show up a dialog reminding t…
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DTethering.java491 public void onInterfaceChanged(String ifName, boolean up) { in onInterfaceChanged() argument
492 mHandler.post(() -> interfaceStatusChanged(ifName, up)); in onInterfaceChanged()
496 public void onInterfaceLinkStateChanged(String ifName, boolean up) { in onInterfaceLinkStateChanged() argument
497 mHandler.post(() -> interfaceLinkStateChanged(ifName, up)); in onInterfaceLinkStateChanged()
542 void interfaceStatusChanged(String iface, boolean up) { in interfaceStatusChanged() argument
545 if (VDBG) Log.d(TAG, "interfaceStatusChanged " + iface + ", " + up); in interfaceStatusChanged()
548 if (!up && type != TETHERING_BLUETOOTH && type != TETHERING_WIGIG) { in interfaceStatusChanged()
557 processInterfaceStateChange(iface, up); in interfaceStatusChanged()
560 void interfaceLinkStateChanged(String iface, boolean up) { in interfaceLinkStateChanged() argument
561 interfaceStatusChanged(iface, up); in interfaceLinkStateChanged()
/packages/modules/DnsResolver/
DREADME-DoT.md39 that it is cleaned up appropriately.
61 up on inputs from the query threads. Therefore, inputs from the query
87 `DnsTlsQueryMap` imposes a retry limit of 3. `DnsTlsTransport` will retry the query up
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/volume/
DCarAudioZoneVolumeFragment.java173 public void adjustVolumeByOne(int groupId, boolean up) { in adjustVolumeByOne() argument
179 int volume = current + (up ? 1 : -1); in adjustVolumeByOne()
/packages/apps/LegacyCamera/jni/
Dfeature_mos_jni.cpp317 int up = vp + frameSize; in decodeYUV444SP() local
319 for (int i = 0; i < width; i++, yp++, vp++, up++) in decodeYUV444SP()
325 u = (0xff & yuv420sp[up]) - 128; in decodeYUV444SP()
/packages/services/Car/tests/BugReportApp/
DREADME.md75 * Long press Rear Defrost hardware button (hold up to 6 seconds)
79 4. Bug report collection might take up to 7 minutes to finish.
/packages/services/Car/cpp/computepipe/sepolicy/private/
Dcomputepiperunnerdomain.te8 # Allow look up using service manager
Dcomputepipeclientdomain.te8 # Allow look up using service manager
/packages/modules/common/sdk/
DModuleDefaults.bp49 // TODO: remove the hiding when server classes are cleaned up.
93 // but it cannot yet be turned on because some usages have not been cleaned up.
/packages/providers/ContactsProvider/tests/assets/testSynced/
Dreadme.txt2 Contacts up to ID=6 were created and synchronized. The synch was then disabled and the others
/packages/modules/Virtualization/microdroid/
Dinit.rc17 # Set up linker config subdirectories based on mount namespaces
92 # Remove a file to wake up anything waiting for firmware.
/packages/services/Car/service/proto/
Doperation_type.proto19 // The payload contains handshake messages needed to set up encryption.

1234