Home
last modified time | relevance | path

Searched refs:sse (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/net/
DIpSecManager.java938 private static void maybeHandleServiceSpecificException(ServiceSpecificException sse) { in maybeHandleServiceSpecificException() argument
940 if (sse.errorCode == OsConstants.EINVAL) { in maybeHandleServiceSpecificException()
941 throw new IllegalArgumentException(sse); in maybeHandleServiceSpecificException()
942 } else if (sse.errorCode == OsConstants.EAGAIN) { in maybeHandleServiceSpecificException()
943 throw new IllegalStateException(sse); in maybeHandleServiceSpecificException()
944 } else if (sse.errorCode == OsConstants.EOPNOTSUPP) { in maybeHandleServiceSpecificException()
945 throw new UnsupportedOperationException(sse); in maybeHandleServiceSpecificException()
956 rethrowUncheckedExceptionFromServiceSpecificException(ServiceSpecificException sse) { in rethrowUncheckedExceptionFromServiceSpecificException() argument
957 maybeHandleServiceSpecificException(sse); in rethrowUncheckedExceptionFromServiceSpecificException()
958 throw new RuntimeException(sse); in rethrowUncheckedExceptionFromServiceSpecificException()
[all …]
/frameworks/rs/driver/runtime/arch/
Dx86_sse2.ll4 declare <4 x float> @llvm.x86.sse.min.ps(<4 x float>, <4 x float>)
5 declare <4 x float> @llvm.x86.sse.max.ps(<4 x float>, <4 x float>)
6 declare <4 x float> @llvm.x86.sse.min.ss(<4 x float>, <4 x float>)
7 declare <4 x float> @llvm.x86.sse.max.ss(<4 x float>, <4 x float>)
18 …%1 = tail call <4 x float> @llvm.x86.sse.min.ps(<4 x float> %in, <4 x float> %high) nounwind readn…
19 …%2 = tail call <4 x float> @llvm.x86.sse.max.ps(<4 x float> %1, <4 x float> %low) nounwind readnone
45 %4 = tail call <4 x float> @llvm.x86.sse.min.ss(<4 x float> %1, <4 x float> %3) nounwind readnone
46 %5 = tail call <4 x float> @llvm.x86.sse.max.ss(<4 x float> %4, <4 x float> %2) nounwind readnone
/frameworks/base/core/java/android/hardware/camera2/
DCameraManager.java384 ServiceSpecificException sse = new ServiceSpecificException( in openCameraDeviceUserAsync()
387 deviceImpl.setRemoteFailure(sse); in openCameraDeviceUserAsync()
388 throwAsPublicException(sse); in openCameraDeviceUserAsync()