Home
last modified time | relevance | path

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

12345678910>>...41

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
Dpv_mp3dec_fxd_op_msc_evc.h57 __inline int32 fxp_mul32_Q30(const int32 a, const int32 b) in fxp_mul32_Q30()
63 __inline int32 fxp_mac32_Q30(const int32 a, const int32 b, int32 L_add) in fxp_mac32_Q30()
73 #define fxp_mul32_Q32( a, b) _MulHigh( b, a) argument
77 __inline int32 fxp_mul32_Q28(const int32 a, const int32 b) in fxp_mul32_Q28()
83 __inline int32 fxp_mul32_Q27(const int32 a, const int32 b) in fxp_mul32_Q27()
90 __inline int32 fxp_mul32_Q26(const int32 a, const int32 b) in fxp_mul32_Q26()
96 __inline int32 fxp_mac32_Q32(int32 L_add, const int32 a, const int32 b) in fxp_mac32_Q32()
102 __inline int32 fxp_msb32_Q32(int32 L_sub, const int32 a, const int32 b) in fxp_msb32_Q32()
109 __inline int32 fxp_mul32_Q29(const int32 a, const int32 b) in fxp_mul32_Q29()
118 int32 b = (a < 0) ? -a : a; in pv_abs() local
Dpv_mp3dec_fxd_op_c_equivalent.h56 int32 b = (a < 0) ? -a : a; in pv_abs() local
64 __inline Int32 fxp_mul32_Q30(const Int32 a, const Int32 b) in fxp_mul32_Q30()
70 __inline Int32 fxp_mac32_Q30(const Int32 a, const Int32 b, Int32 L_add) in fxp_mac32_Q30()
76 __inline Int32 fxp_mul32_Q32(const Int32 a, const Int32 b) in fxp_mul32_Q32()
83 __inline Int32 fxp_mul32_Q28(const Int32 a, const Int32 b) in fxp_mul32_Q28()
89 __inline Int32 fxp_mul32_Q27(const Int32 a, const Int32 b) in fxp_mul32_Q27()
95 __inline Int32 fxp_mul32_Q26(const Int32 a, const Int32 b) in fxp_mul32_Q26()
102 __inline Int32 fxp_mac32_Q32(Int32 L_add, const Int32 a, const Int32 b) in fxp_mac32_Q32()
108 __inline Int32 fxp_msb32_Q32(Int32 L_sub, const Int32 a, const Int32 b) in fxp_msb32_Q32()
115 __inline Int32 fxp_mul32_Q29(const Int32 a, const Int32 b) in fxp_mul32_Q29()
Dpv_mp3dec_fxd_op_arm_gcc.h58 static inline int32 fxp_mul32_Q30(const int32 a, const int32 b) in fxp_mul32_Q30()
75 static inline int32 fxp_mac32_Q30(const int32 a, const int32 b, int32 L_add) in fxp_mac32_Q30()
97 static inline int32 fxp_mul32_Q32(const int32 a, const int32 b) in fxp_mul32_Q32()
114 static inline int32 fxp_mul32_Q29(const int32 a, const int32 b) in fxp_mul32_Q29()
131 static inline int32 fxp_mul32_Q28(const int32 a, const int32 b) in fxp_mul32_Q28()
150 static inline int32 fxp_mul32_Q27(const int32 a, const int32 b) in fxp_mul32_Q27()
168 static inline int32 fxp_mul32_Q26(const int32 a, const int32 b) in fxp_mul32_Q26()
187 static inline int32 fxp_mac32_Q32(int32 L_add, const int32 a, const int32 b) in fxp_mac32_Q32()
207 static inline int32 fxp_msb32_Q32(int32 L_sub, const int32 a, const int32 b) in fxp_msb32_Q32()
/frameworks/native/services/surfaceflinger/
Dclz.h28 static inline T min(T a, T b) { in min()
32 static inline T min(T a, T b, T c) { in min()
36 static inline T min(T a, T b, T c, T d) { in min()
41 static inline T max(T a, T b) { in max()
45 static inline T max(T a, T b, T c) { in max()
49 static inline T max(T a, T b, T c, T d) { in max()
55 void swap(T& a, T& b) { in swap()
/frameworks/support/core/ktx/src/androidTest/java/androidx/core/graphics/
DRectTest.kt31 val (l, t, r, b) = Rect(4, 8, 16, 24) in destructuringInt() constant
39 val (l, t, r, b) = RectF(4.0f, 8.0f, 16.0f, 24.0f) in destructuringFloat() constant
47 val (l, t, r, b) = Rect(0, 0, 4, 4) + Rect(-1, -1, 6, 6) in unionInt() constant
55 val (l, t, r, b) = Rect(0, 0, 4, 4) and Rect(-1, -1, 6, 6) in unionAsAndInt() constant
63 val (l, t, r, b) = RectF(0.0f, 0.0f, 4.0f, 4.0f) + RectF(-1.0f, -1.0f, 6.0f, 6.0f) in unionFloat() constant
71 val (l, t, r, b) = RectF(0.0f, 0.0f, 4.0f, 4.0f) and RectF(-1.0f, -1.0f, 6.0f, 6.0f) in unionAsAndFloat() constant
89 val (l, t, r, b) = Rect(0, 0, 4, 4) or Rect(2, 2, 6, 6) in intersectionAsOrInt() constant
97 val (l, t, r, b) = RectF(0.0f, 0.0f, 4.0f, 4.0f) or RectF(2.0f, 2.0f, 6.0f, 6.0f) in intersectionAsOrFloat() constant
117 val (l, t, r, b) = Rect(0, 0, 2, 2) + 2 in offsetInt() constant
125 val (l, t, r, b) = Rect(0, 0, 2, 2) + Point(1, 2) in offsetPoint() constant
[all …]
DBitmapTest.kt46 val b = createBitmap(7, 9).scale(3, 5) in scale() constant
60 val b = createBitmap(2, 2).applyCanvas { in getPixel() constant
67 val b = createBitmap(2, 2) in setPixel() constant
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/app/
DAlertDialogUsage.java70 AlertDialog.Builder b = new AlertDialog.Builder(this); in showSimpleDialog() local
77 AlertDialog.Builder b = new AlertDialog.Builder(this); in showSimpleButtonsDialog() local
86 AlertDialog.Builder b = new AlertDialog.Builder(this); in showSingleChoiceDialog() local
94 AlertDialog.Builder b = new AlertDialog.Builder(this); in showMultiChoiceDialog() local
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/synthetic/
DTestInterface.java31 native long nDestroy(long b); in nDestroy()
32 native float nGetData(long b, float[] data); in nGetData()
33 native boolean nRunPowerManagementTest(long b, long options); in nRunPowerManagementTest()
34 native boolean nRunCPUHeatSoakTest(long b, long options); in nRunCPUHeatSoakTest()
36 native boolean nMemTestStart(long b); in nMemTestStart()
37 native float nMemTestBandwidth(long b, long size); in nMemTestBandwidth()
38 native float nMemTestLatency(long b, long size); in nMemTestLatency()
39 native void nMemTestEnd(long b); in nMemTestEnd()
41 native float nGFlopsTest(long b, long opt); in nGFlopsTest()
104 long b = mTI.nInit(0); in run() local
[all …]
/frameworks/base/core/tests/coretests/src/android/graphics/
DColorSpaceRendererTest.java34 Bitmap b = ColorSpace.createRenderer() in testRendererSize() local
49 Bitmap b = ColorSpace.createRenderer() in testRenderer() local
63 Bitmap b = ColorSpace.createRenderer() in testUcsRenderer() local
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DPackageParserTest.java193 public static void assertPackagesEqual(PackageParser.Package a, PackageParser.Package b) { in assertPackagesEqual()
220 assertSame(b.permissions.get(i).owner, b); in assertPackagesEqual() local
283 private static void assertBundleApproximateEquals(Bundle a, Bundle b) { in assertBundleApproximateEquals()
296 PackageParser.Component<?> b) { in assertComponentsEqual()
322 PackageParser.Permission b) { in assertPermissionsEqual()
341 PackageParser.Instrumentation b) { in assertInstrumentationEqual()
351 private static void assertServicesEqual(PackageParser.Service a, PackageParser.Service b) { in assertServicesEqual()
359 private static void assertProvidersEqual(PackageParser.Provider a, PackageParser.Provider b) { in assertProvidersEqual()
367 private static void assertActivitiesEqual(PackageParser.Activity a, PackageParser.Activity b) { in assertActivitiesEqual()
376 PackageParser.PermissionGroup b) { in assertPermissionGroupsEqual()
/frameworks/base/rs/java/android/renderscript/
DShort2.java66 public static Short2 add(Short2 a, Short2 b) { in add()
91 public static Short2 add(Short2 a, short b) { in add()
116 public static Short2 sub(Short2 a, Short2 b) { in sub()
141 public static Short2 sub(Short2 a, short b) { in sub()
166 public static Short2 mul(Short2 a, Short2 b) { in mul()
191 public static Short2 mul(Short2 a, short b) { in mul()
216 public static Short2 div(Short2 a, Short2 b) { in div()
241 public static Short2 div(Short2 a, short b) { in div()
266 public static Short2 mod(Short2 a, Short2 b) { in mod()
291 public static Short2 mod(Short2 a, short b) { in mod()
[all …]
DLong3.java67 public static Long3 add(Long3 a, Long3 b) { in add()
94 public static Long3 add(Long3 a, long b) { in add()
121 public static Long3 sub(Long3 a, Long3 b) { in sub()
148 public static Long3 sub(Long3 a, long b) { in sub()
175 public static Long3 mul(Long3 a, Long3 b) { in mul()
202 public static Long3 mul(Long3 a, long b) { in mul()
229 public static Long3 div(Long3 a, Long3 b) { in div()
256 public static Long3 div(Long3 a, long b) { in div()
283 public static Long3 mod(Long3 a, Long3 b) { in mod()
310 public static Long3 mod(Long3 a, long b) { in mod()
[all …]
DInt2.java63 public static Int2 add(Int2 a, Int2 b) { in add()
88 public static Int2 add(Int2 a, int b) { in add()
113 public static Int2 sub(Int2 a, Int2 b) { in sub()
138 public static Int2 sub(Int2 a, int b) { in sub()
163 public static Int2 mul(Int2 a, Int2 b) { in mul()
188 public static Int2 mul(Int2 a, int b) { in mul()
213 public static Int2 div(Int2 a, Int2 b) { in div()
238 public static Int2 div(Int2 a, int b) { in div()
263 public static Int2 mod(Int2 a, Int2 b) { in mod()
288 public static Int2 mod(Int2 a, int b) { in mod()
[all …]
DShort3.java67 public static Short3 add(Short3 a, Short3 b) { in add()
94 public static Short3 add(Short3 a, short b) { in add()
121 public static Short3 sub(Short3 a, Short3 b) { in sub()
148 public static Short3 sub(Short3 a, short b) { in sub()
175 public static Short3 mul(Short3 a, Short3 b) { in mul()
202 public static Short3 mul(Short3 a, short b) { in mul()
229 public static Short3 div(Short3 a, Short3 b) { in div()
256 public static Short3 div(Short3 a, short b) { in div()
283 public static Short3 mod(Short3 a, Short3 b) { in mod()
310 public static Short3 mod(Short3 a, short b) { in mod()
[all …]
DLong2.java63 public static Long2 add(Long2 a, Long2 b) { in add()
88 public static Long2 add(Long2 a, long b) { in add()
113 public static Long2 sub(Long2 a, Long2 b) { in sub()
138 public static Long2 sub(Long2 a, long b) { in sub()
163 public static Long2 mul(Long2 a, Long2 b) { in mul()
188 public static Long2 mul(Long2 a, long b) { in mul()
213 public static Long2 div(Long2 a, Long2 b) { in div()
238 public static Long2 div(Long2 a, long b) { in div()
263 public static Long2 mod(Long2 a, Long2 b) { in mod()
288 public static Long2 mod(Long2 a, long b) { in mod()
[all …]
DInt3.java67 public static Int3 add(Int3 a, Int3 b) { in add()
94 public static Int3 add(Int3 a, int b) { in add()
121 public static Int3 sub(Int3 a, Int3 b) { in sub()
148 public static Int3 sub(Int3 a, int b) { in sub()
175 public static Int3 mul(Int3 a, Int3 b) { in mul()
202 public static Int3 mul(Int3 a, int b) { in mul()
229 public static Int3 div(Int3 a, Int3 b) { in div()
256 public static Int3 div(Int3 a, int b) { in div()
283 public static Int3 mod(Int3 a, Int3 b) { in mod()
310 public static Int3 mod(Int3 a, int b) { in mod()
[all …]
DInt4.java71 public static Int4 add(Int4 a, Int4 b) { in add()
100 public static Int4 add(Int4 a, int b) { in add()
129 public static Int4 sub(Int4 a, Int4 b) { in sub()
158 public static Int4 sub(Int4 a, int b) { in sub()
187 public static Int4 mul(Int4 a, Int4 b) { in mul()
216 public static Int4 mul(Int4 a, int b) { in mul()
245 public static Int4 div(Int4 a, Int4 b) { in div()
274 public static Int4 div(Int4 a, int b) { in div()
303 public static Int4 mod(Int4 a, Int4 b) { in mod()
332 public static Int4 mod(Int4 a, int b) { in mod()
[all …]
DLong4.java71 public static Long4 add(Long4 a, Long4 b) { in add()
100 public static Long4 add(Long4 a, long b) { in add()
129 public static Long4 sub(Long4 a, Long4 b) { in sub()
158 public static Long4 sub(Long4 a, long b) { in sub()
187 public static Long4 mul(Long4 a, Long4 b) { in mul()
216 public static Long4 mul(Long4 a, long b) { in mul()
245 public static Long4 div(Long4 a, Long4 b) { in div()
274 public static Long4 div(Long4 a, long b) { in div()
303 public static Long4 mod(Long4 a, Long4 b) { in mod()
332 public static Long4 mod(Long4 a, long b) { in mod()
[all …]
DShort4.java71 public static Short4 add(Short4 a, Short4 b) { in add()
100 public static Short4 add(Short4 a, short b) { in add()
129 public static Short4 sub(Short4 a, Short4 b) { in sub()
158 public static Short4 sub(Short4 a, short b) { in sub()
187 public static Short4 mul(Short4 a, Short4 b) { in mul()
216 public static Short4 mul(Short4 a, short b) { in mul()
245 public static Short4 div(Short4 a, Short4 b) { in div()
274 public static Short4 div(Short4 a, short b) { in div()
303 public static Short4 mod(Short4 a, Short4 b) { in mod()
332 public static Short4 mod(Short4 a, short b) { in mod()
[all …]
DByte2.java59 public static Byte2 add(Byte2 a, Byte2 b) { in add()
84 public static Byte2 add(Byte2 a, byte b) { in add()
109 public static Byte2 sub(Byte2 a, Byte2 b) { in sub()
134 public static Byte2 sub(Byte2 a, byte b) { in sub()
159 public static Byte2 mul(Byte2 a, Byte2 b) { in mul()
184 public static Byte2 mul(Byte2 a, byte b) { in mul()
209 public static Byte2 div(Byte2 a, Byte2 b) { in div()
234 public static Byte2 div(Byte2 a, byte b) { in div()
276 public static byte dotProduct(Byte2 a, Byte2 b) { in dotProduct()
307 public void setValues(byte a, byte b) { in setValues()
DSampler.java104 Builder b = new Builder(rs); in CLAMP_NEAREST() local
128 Builder b = new Builder(rs); in CLAMP_LINEAR() local
152 Builder b = new Builder(rs); in CLAMP_LINEAR_MIP_LINEAR() local
176 Builder b = new Builder(rs); in WRAP_NEAREST() local
200 Builder b = new Builder(rs); in WRAP_LINEAR() local
224 Builder b = new Builder(rs); in WRAP_LINEAR_MIP_LINEAR() local
248 Builder b = new Builder(rs); in MIRRORED_REPEAT_NEAREST() local
272 Builder b = new Builder(rs); in MIRRORED_REPEAT_LINEAR() local
296 Builder b = new Builder(rs); in MIRRORED_REPEAT_LINEAR_MIP_LINEAR() local
DByte3.java63 public static Byte3 add(Byte3 a, Byte3 b) { in add()
90 public static Byte3 add(Byte3 a, byte b) { in add()
117 public static Byte3 sub(Byte3 a, Byte3 b) { in sub()
144 public static Byte3 sub(Byte3 a, byte b) { in sub()
171 public static Byte3 mul(Byte3 a, Byte3 b) { in mul()
198 public static Byte3 mul(Byte3 a, byte b) { in mul()
225 public static Byte3 div(Byte3 a, Byte3 b) { in div()
252 public static Byte3 div(Byte3 a, byte b) { in div()
296 public static byte dotProduct(Byte3 a, Byte3 b) { in dotProduct()
330 public void setValues(byte a, byte b, byte c) { in setValues()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
DVectorUtil.java23 public static void sub(double[] a, double[] b, double[] out) { in sub()
29 public static void mult(double[] a, double b, double[] out) { in mult()
35 public static double dot(double[] a, double[] b) { in dot()
43 public static void cross(double[] a, double[] b, double[] out) { in cross()
59 public static void add(double[] a, double[] b, in add()
/frameworks/base/core/java/android/app/
DSystemServiceRegistry.java203 public AccountManager createService(ContextImpl ctx) throws ServiceNotFoundException { in registerService()
219 public AlarmManager createService(ContextImpl ctx) throws ServiceNotFoundException { in registerService()
249 public HdmiControlManager createService() throws ServiceNotFoundException { in registerService()
277 public ConnectivityManager createService(Context context) throws ServiceNotFoundException { in registerService()
286 public IpSecManager createService(ContextImpl ctx) throws ServiceNotFoundException { in registerService()
295 public CountryDetector createService() throws ServiceNotFoundException { in registerService()
303 public DevicePolicyManager createService(ContextImpl ctx) throws ServiceNotFoundException { in registerService()
305 return new DevicePolicyManager(ctx, IDevicePolicyManager.Stub.asInterface(b)); in registerService()
336 public DropBoxManager createService(ContextImpl ctx) throws ServiceNotFoundException { in registerService()
387 public LocationManager createService(ContextImpl ctx) throws ServiceNotFoundException { in registerService()
[all …]
/frameworks/base/core/java/com/android/internal/util/function/pooled/
DOmniFunction.java49 abstract R invoke(A a, B b, C c, D d, E e, F f); in invoke()
106 public R apply(A a, B b, C c) { in apply()
111 public void accept(A a, B b, C c) { in accept()
116 public R apply(A a, B b, C c, D d) { in apply()
121 public R apply(A a, B b, C c, D d, E e) { in apply()
126 public R apply(A a, B b, C c, D d, E e, F f) { in apply()
131 public void accept(A a, B b, C c, D d) { in accept()
136 public void accept(A a, B b, C c, D d, E e) { in accept()
141 public void accept(A a, B b, C c, D d, E e, F f) { in accept()

12345678910>>...41