Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 482) sorted by relevance

12345678910>>...20

/packages/modules/NeuralNetworks/common/operations/
DReduce.cpp171 return compute<_Float16>(context, 1, [](_Float16 a, _Float16 b) -> _Float16 { in executeProd()
177 return compute<float>(context, 1, [](float a, float b) -> float { in executeProd()
190 return compute<_Float16>(context, 0, [](_Float16 a, _Float16 b) { return a + b; }); in executeSum()
192 return compute<float>(context, 0, [](float a, float b) { return a + b; }); in executeSum()
202 [](_Float16 a, _Float16 b) { return std::max(a, b); }); in executeMax()
205 [](float a, float b) { return std::max(a, b); }); in executeMax()
208 [](uint8_t a, uint8_t b) { return std::max(a, b); }); in executeMax()
211 [](int8_t a, int8_t b) { return std::max(a, b); }); in executeMax()
221 [](_Float16 a, _Float16 b) { return std::min(a, b); }); in executeMin()
224 [](float a, float b) { return std::min(a, b); }); in executeMin()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DPositionController.java251 Box b = mBoxes.get(0); in setViewSize() local
296 Box b = mBoxes.get(i); in setBoxSize() local
392 Box b = mBoxes.get(i); in updateScaleAndGapLimit() local
408 Box b = mBoxes.get(i + 1); in getDefaultGapSize() local
424 private int gapToSide(Box b) { in gapToSide()
446 Box b = mBoxes.get(i); in skipAnimation() local
478 Box b = mBoxes.get(0); in zoomIn() local
496 Box b = mBoxes.get(0); in resetToFullView() local
503 Box b = mBoxes.get(0); in beginScale() local
518 Box b = mBoxes.get(0); in scaleBy() local
[all …]
/packages/apps/DevCamera/src/com/android/devcamera/
DBitmapUtility.java37 Bitmap b = BitmapFactory.decodeByteArray(data, 0, data.length, opts); in bitmapFromJpeg() local
54 Bitmap b = Bitmap.createBitmap(colors, w, h, Bitmap.Config.ARGB_8888); in bitmapFromYuvImage() local
62 private static Bitmap rotatedBitmap(Bitmap b) { in rotatedBitmap()
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
Ddb_utilities_poly.h39 inline void db_SolveQuadratic(double *roots,int *nr_roots,double a,double b,double c) in db_SolveQuadratic()
96 inline void db_MultiplyPoly1_1(double *d,const double *a,const double *b) in db_MultiplyPoly1_1()
108 inline void db_MultiplyPoly0_2(double *d,const double *a,const double *b) in db_MultiplyPoly0_2()
120 inline void db_MultiplyPoly1_2(double *d,const double *a,const double *b) in db_MultiplyPoly1_2()
134 inline void db_MultiplyPoly1_3(double *d,const double *a,const double *b) in db_MultiplyPoly1_3()
149 inline void db_AddPolyProduct0_1(double *d,const double *a,const double *b) in db_AddPolyProduct0_1()
159 inline void db_AddPolyProduct0_2(double *d,const double *a,const double *b) in db_AddPolyProduct0_2()
172 inline void db_SubtractPolyProduct0_0(double *d,const double *a,const double *b) in db_SubtractPolyProduct0_0()
182 inline void db_SubtractPolyProduct0_1(double *d,const double *a,const double *b) in db_SubtractPolyProduct0_1()
193 inline void db_SubtractPolyProduct0_2(double *d,const double *a,const double *b) in db_SubtractPolyProduct0_2()
[all …]
/packages/modules/NeuralNetworks/common/
DTypeUtils.cpp915 bool operator==(const Timing& a, const Timing& b) { in operator ==()
918 bool operator!=(const Timing& a, const Timing& b) { in operator !=()
922 bool operator==(const Capabilities::PerformanceInfo& a, const Capabilities::PerformanceInfo& b) { in operator ==()
925 bool operator!=(const Capabilities::PerformanceInfo& a, const Capabilities::PerformanceInfo& b) { in operator !=()
930 const Capabilities::OperandPerformance& b) { in operator ==()
934 const Capabilities::OperandPerformance& b) { in operator !=()
938 bool operator==(const Capabilities& a, const Capabilities& b) { in operator ==()
946 bool operator!=(const Capabilities& a, const Capabilities& b) { in operator !=()
951 const Extension::OperandTypeInformation& b) { in operator ==()
955 const Extension::OperandTypeInformation& b) { in operator !=()
[all …]
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/
DMetricsTestUtil.java50 static Consumer<Parcel> aBool(boolean b) { in aBool()
54 static Consumer<Parcel> aByte(byte b) { in aByte()
78 static byte b(int i) { in b() method in MetricsTestUtil
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java576 PersistableBundle b = in isCarrierVideoPauseSupported() local
589 PersistableBundle b = in isCarrierVideoPresenceSupported() local
618 PersistableBundle b = in isCarrierInstantLetteringSupported() local
630 PersistableBundle b = in isCarrierAdhocConferenceCallSupported() local
643 PersistableBundle b = in isCarrierMergeCallSupported() local
655 PersistableBundle b = in isCarrierMergeImsCallSupported() local
666 PersistableBundle b = in isCarrierEmergencyVideoCallsAllowed() local
678 PersistableBundle b = in isCarrierVideoConferencingSupported() local
692 PersistableBundle b = in isCarrierMergeOfWifiCallsAllowedWhenVoWifiOff() local
705 PersistableBundle b = in isCarrierManageImsConferenceCallSupported() local
[all …]
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
DCountedDataInputStream.java45 public int read(byte[] b) throws IOException { in read()
52 public int read(byte[] b, int off, int len) throws IOException { in read()
85 private void readOrThrow(byte[] b, int off, int len) throws IOException { in readOrThrow()
92 private void readOrThrow(byte[] b) throws IOException { in readOrThrow()
/packages/modules/Connectivity/tests/unit/java/android/net/
DIpMemoryStoreTest.java143 final Blob b = new Blob(); in testPrivateData() local
202 final Blob b = new Blob(); in testEnqueuedIpMsRequests() local
248 final Blob b = new Blob(); in testEnqueuedIpMsRequestsWithException() local
291 final Blob b = new Blob(); in testEnqueuedIpMsRequestsCallbackFunctionWithException() local
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DColorSpaceMatrix.java185 public float getRed(int r, int g, int b) { in getRed()
197 public float getGreen(int r, int g, int b) { in getGreen()
209 public float getBlue(int r, int g, int b) { in getBlue()
213 private float getRedf(float r, float g, float b) { in getRedf()
217 private float getGreenf(float r, float g, float b) { in getGreenf()
221 private float getBluef(float r, float g, float b) { in getBluef()
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
DCountedDataInputStream.java44 public int read(byte[] b) throws IOException { in read()
51 public int read(byte[] b, int off, int len) throws IOException { in read()
82 public void readOrThrow(byte[] b, int off, int len) throws IOException { in readOrThrow()
87 public void readOrThrow(byte[] b) throws IOException { in readOrThrow()
/packages/apps/Messaging/src/com/android/messaging/util/exif/
DCountedDataInputStream.java44 public int read(byte[] b) throws IOException { in read()
51 public int read(byte[] b, int off, int len) throws IOException { in read()
84 public void readOrThrow(byte[] b, int off, int len) throws IOException { in readOrThrow()
91 public void readOrThrow(byte[] b) throws IOException { in readOrThrow()
/packages/apps/Camera2/src/com/android/camera/exif/
DCountedDataInputStream.java44 public int read(byte[] b) throws IOException { in read()
51 public int read(byte[] b, int off, int len) throws IOException { in read()
82 public void readOrThrow(byte[] b, int off, int len) throws IOException { in readOrThrow()
87 public void readOrThrow(byte[] b) throws IOException { in readOrThrow()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/p2p/
DWifiP2pConfigTest.java40 WifiP2pConfig.Builder b = new WifiP2pConfig.Builder(); in testBuilderInvalidNetworkName() local
100 WifiP2pConfig.Builder b = new WifiP2pConfig.Builder(); in testBuilderInvalidPassphrase() local
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
DAppManagementActivity.java51 final Bundle b = new Bundle(1); in newInstance() local
60 final Bundle b = new Bundle(); in onPreferenceStartInitialScreen() local
/packages/apps/Gallery2/jni/filters/
Dfilters.h27 #define SetColor(a, r, g, b) (((a) << 24) | ((b) << 16) | ((g) << 8) | ((r) << 0)); argument
33 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument
34 #define MAX(a, b) ((a) > (b) ? (a) : (b)) argument
DredEyeMath.c22 int value(int r, int g, int b) { in value()
27 int b = src[p + 2]; in isRed() local
45 int b = src[p + 2]; in findPossible() local
84 char b = (mask[row + x] | mask[row + x + 1] | mask[row + x - 1] in dialateMaskIfRed() local
106 void stuff(int r, int g, int b, unsigned char *img, int off) { in stuff()
143 int b = src[p + 2]; in filterRedEye() local
/packages/apps/TV/tuner/src/com/android/tv/tuner/util/
DByteArrayBuffer.java57 public void append(final byte[] b, int off, int len) { in append()
79 public void append(int b) { in append()
88 public void append(final char[] b, int off, int len) { in append()
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dbigintegertest.cpp56 BigInteger b = kUint64Max; in TEST() local
70 BigInteger b = kOne; in TEST() local
92 BigInteger b = kOne; in TEST() local
/packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
DPoint.java60 public float crossProduct(Point a, Point b) { in crossProduct()
68 public float dotProduct(Point a, Point b) { in dotProduct()
78 public float getAngle(Point a, Point b) { in getAngle()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/
DPeekableInputStream.java55 public int read(byte[] b, int offset, int length) throws IOException { in read()
71 public int read(byte[] b) throws IOException { in read()
DFixedLengthInputStream.java52 public int read(byte[] b, int offset, int length) throws IOException { in read()
67 public int read(byte[] b) throws IOException { in read()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DBitmapPool.java194 Bitmap b = null; in decodeSampledBitmapFromResource() local
233 Bitmap b = null; in decodeSampledBitmapFromInputStream() local
273 Bitmap b = null; in decodeByteArray() local
305 Bitmap b = findPoolBitmap(width, height); in createOrReuseBitmap() local
327 public void reclaimBitmap(@NonNull final Bitmap b) { in reclaimBitmap()
/packages/apps/TvSettings/TwoPanelSettingsLib/src/com/android/tv/twopanelsettings/slices/builders/
DTemplateBuilderImpl.java33 protected TemplateBuilderImpl(Slice.Builder b, SliceSpec spec) { in TemplateBuilderImpl()
37 protected TemplateBuilderImpl(Slice.Builder b, SliceSpec spec, Clock clock) { in TemplateBuilderImpl()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
DUtility.java51 public static String fromAscii(byte[] b) { in fromAscii()
65 private static String decode(Charset charset, byte[] b) { in decode()

12345678910>>...20