Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 231) sorted by relevance

12345678910

/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Dtype_operators.h27 template <typename A, typename B>
28 using IsEquivalent = typename std::is_same<Decay<A>, Decay<B>>::type;
33 template <typename A, typename B>
34 struct And<A, B> : std::integral_constant<bool, A::value && B::value> {};
35 template <typename A, typename B, typename... Rest>
36 struct And<A, B, Rest...> : And<A, And<B, Rest...>> {};
52 template <typename A, typename B>
53 struct IsConvertible : IsEquivalent<A, B> {};
57 template <template <typename, typename...> class TT, typename A, typename B,
59 struct IsConvertible<TT<A, AnyA...>, TT<B, AnyB...>>
[all …]
/frameworks/base/cmds/incidentd/testdata/
Dkmsg.txt.gz
Dkmsg.txt2 B - 626409 - [INFO][XBL]: Bypass appsbl verification on DEVELOPMENT device
3 B - 729255 - [INFO][XBL]: Bypass appsbl verification on DEVELOPMENT device
4 B - 729285 - boot_elf_load_and_verify_image: boot_auth_compute_verify_hash for 9:0
6 B - 729468 - SBL1, End
11 B - 482296 - Basic DDR tests done
12 B - 544638 - clock_init, Start
14 B - 544913 - HTC RPM DATARAM UPDATE info: Done
15 B - 545004 - Image Load, Start
16 B - 548359 - boot_elf_load_and_verify_image: boot_auth_compute_verify_hash for 5:0
18 B - 548725 - Image Load, Start
[all …]
/frameworks/base/core/java/com/android/internal/util/function/pooled/
DPooledLambda.java264 static <A, B> PooledRunnable obtainRunnable( in obtainRunnable()
265 BiConsumer<? super A, ? super B> function, in obtainRunnable()
266 A arg1, B arg2) { in obtainRunnable()
282 static <A, B> PooledSupplier<Boolean> obtainSupplier( in obtainSupplier()
283 BiPredicate<? super A, ? super B> function, in obtainSupplier()
284 A arg1, B arg2) { in obtainSupplier()
300 static <A, B, R> PooledSupplier<R> obtainSupplier( in obtainSupplier()
301 BiFunction<? super A, ? super B, ? extends R> function, in obtainSupplier() argument
302 A arg1, B arg2) { in obtainSupplier()
318 static <A, B> PooledConsumer<A> obtainConsumer( in obtainConsumer()
[all …]
DOmniFunction.java46 abstract class OmniFunction<A, B, C, D, E, F, G, H, I, R> implements
47 PooledFunction<A, R>, BiFunction<A, B, R>, TriFunction<A, B, C, R>,
48 QuadFunction<A, B, C, D, R>, QuintFunction<A, B, C, D, E, R>,
49 HexFunction<A, B, C, D, E, F, R>, HeptFunction<A, B, C, D, E, F, G, R>,
50 OctFunction<A, B, C, D, E, F, G, H, R>, NonaFunction<A, B, C, D, E, F, G, H, I, R>,
51 PooledConsumer<A>, BiConsumer<A, B>, TriConsumer<A, B, C>, QuadConsumer<A, B, C, D>,
52 QuintConsumer<A, B, C, D, E>, HexConsumer<A, B, C, D, E, F>,
53 HeptConsumer<A, B, C, D, E, F, G>, OctConsumer<A, B, C, D, E, F, G, H>,
54 NonaConsumer<A, B, C, D, E, F, G, H, I>, PooledPredicate<A>, BiPredicate<A, B>,
58 abstract R invoke(A a, B b, C c, D d, E e, F f, G g, H h, I i); in invoke()
[all …]
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
DArrayUtilsTest.java31 final Object B = new Object(); in testContains() local
35 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, A)); in testContains()
36 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, B)); in testContains()
37 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, C)); in testContains()
40 assertFalse(ArrayUtils.contains(new Object[] { A, B, C }, null)); in testContains()
47 final Object B = new Object(); in testIndexOf() local
51 assertEquals(0, ArrayUtils.indexOf(new Object[] { A, B, C }, A)); in testIndexOf()
52 assertEquals(1, ArrayUtils.indexOf(new Object[] { A, B, C }, B)); in testIndexOf()
53 assertEquals(2, ArrayUtils.indexOf(new Object[] { A, B, C }, C)); in testIndexOf()
54 assertEquals(-1, ArrayUtils.indexOf(new Object[] { A, B, C }, D)); in testIndexOf()
[all …]
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
DLVM_Macros.h31 #define MUL32x32INTO32(A,B,C,ShiftR) \ argument
36 MUL32x32INTO32_HH= ((LVM_INT32)((LVM_INT16)((A)>>16))*((LVM_INT16)((B)>>16)) );\
37 MUL32x32INTO32_HL= ((LVM_INT32)((B)&MUL32x32INTO32_mask)*((LVM_INT16)((A)>>16))) ;\
38 MUL32x32INTO32_LH= ((LVM_INT32)((A)&MUL32x32INTO32_mask)*((LVM_INT16)((B)>>16)));\
39 … MUL32x32INTO32_LL= (LVM_INT32)((A)&MUL32x32INTO32_mask)*(LVM_INT32)((B)&MUL32x32INTO32_mask);\
68 #define MUL32x16INTO32(A,B,C,ShiftR) \ argument
73 MUL32x16INTO32_HH= ((LVM_INT32)(B)*((LVM_INT16)((A)>>16)));\
74 MUL32x16INTO32_LL= ((LVM_INT32)((A)&MUL32x16INTO32_mask)*(B));\
94 #define ADD2_SAT_32x32(A,B,C) \ argument
95 {(C)=(A)+(B);\
[all …]
/frameworks/av/media/libaudioprocessing/
DAudioResamplerFirGen.h221 inline double Poly2(double A, double B, double x) {
222 return A + x * B;
225 inline double Poly4(double A, double B, double C, double D, double x) {
226 return A + x * (B + x * (C + x * (D)));
229 inline double Poly7(double A, double B, double C, double D, double E, double F, double G,
231 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G))))));
234 inline double Poly9(double A, double B, double C, double D, double E, double F, double G,
236 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G + x * (H + x * (I))))))));
247 inline double Poly2(double A, double B, double x) {
248 return A + B * x;
[all …]
/frameworks/av/media/libstagefright/
DAHierarchicalStateMachine.cpp90 Vector<sp<AState> > B; in changeState() local
93 B.push(cur); in changeState()
101 while (A.size() > 0 && B.size() > 0 && A.top() == B.top()) { in changeState()
103 B.pop(); in changeState()
112 for (size_t i = B.size(); i > 0;) { in changeState()
114 B.editItemAt(i)->stateEntered(); in changeState()
/frameworks/base/rs/java/android/renderscript/
DScriptIntrinsicBLAS.java2259 …static void validateL3(Element e, int TransA, int TransB, int Side, Allocation A, Allocation B, Al… in validateL3() argument
2262 (B != null && !B.getType().getElement().isCompatible(e)) || in validateL3()
2274 if ((A == null && B != null) || (A != null && B == null)) { in validateL3()
2277 if (B != null) { in validateL3()
2282 aM = B.getType().getY(); in validateL3()
2283 aN = B.getType().getX(); in validateL3()
2295 if (B != null) { in validateL3()
2297 bN = B.getType().getY(); in validateL3()
2298 bM = B.getType().getX(); in validateL3()
2300 bM = B.getType().getY(); in validateL3()
[all …]
/frameworks/rs/cpp/
DScriptIntrinsicBLAS.cpp109 float alpha, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Single() argument
114 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Single()
123 double alpha, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Double() argument
128 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Double()
136 float alphaX, float alphaY, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Complex() argument
141 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Complex()
149 double alphaX, double alphaY, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Z() argument
154 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Z()
162 RsAllocation A, int a_offset, RsAllocation B, int b_offset, in nScriptIntrinsicBLAS_BNNM() argument
175 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_BNNM()
[all …]
/frameworks/rs/support/java/src/androidx/renderscript/
DScriptIntrinsicBLAS.java2862 …static void validateL3(Element e, int TransA, int TransB, int Side, Allocation A, Allocation B, Al… in validateL3() argument
2865 (B != null && !B.getType().getElement().isCompatible(e)) || in validateL3()
2877 if ((A == null && B != null) || (A != null && B == null)) { in validateL3()
2880 if (B != null) { in validateL3()
2885 aM = B.getType().getY(); in validateL3()
2886 aN = B.getType().getX(); in validateL3()
2898 if (B != null) { in validateL3()
2900 bN = B.getType().getY(); in validateL3()
2901 bM = B.getType().getX(); in validateL3()
2903 bM = B.getType().getY(); in validateL3()
[all …]
/frameworks/ml/nn/tools/systrace_parser/
Dcontract-between-code-and-parser.txt35 ... funcP(...) { t0: t_m_w:B|T1|[NN_LR_PP]funcP …
45 ... funcA1(...) { t0: t_m_w:B|T1|[NN_LA_PP]funcE1 …
46 …NNTRACE_APP(NNTRACE_PHASE_PREPARATION, t1: t_m_w:B|T1|[NN_LR_PP]funcC1 …
68 ... funcC1(...) { t0: t_m_w:B|T1|[NN_LC_PTR]funcC1 …
69 …NNTRACE_TRANS("funcC1"); t1: t_m_w:B|T1|[SW][NN_LC_PCO]funcC1 …
82 ... funcR2(...) { t0: t_m_w:B|T1|[NN_LR_PE]funcR2 …
83 …NNTRACE_RT(NNTRACE_PHASE_EXECUTION, t1: t_m_w:B|T1|[NN_LC_PCO]funcC2 …
97 ... funcR3(...) { t0: t_m_w:B|T1|[NN_LR_PE]funcR3 …
98 …NNTRACE_RT(NNTRACE_PHASE_EXECUTION, t1: t_m_w:B|T1|[NN_LR_PE]funcR4 …
114 ... funcR5(...) { t0: t_m_w:B|T1|[NN_LR_PC]funcR5 …
[all …]
/frameworks/opt/vcard/tests/res/raw/
Dv21_japanese_2.vcf6 ADR;HOME;CHARSET=SHIFT_JIS;ENCODING=QUOTED-PRINTABLE:;=93=8C=8B=9E=93=73=
7 =8F=61=92=4A=8B=E6=8D=F7=8B=75=92=AC26-1=83=5A=83=8B=83=8A=83=41=83=93=
8 =83=5E=83=8F=81=5B6=8A=4B;;;;150-8512;
/frameworks/base/media/tests/contents/media_api/music/
Dtest_amr_ietf.amr5 �T�c�<(E���A��&��B��T�-nAd�Ѵ%��<=�@
9 …�ݖzF����/L9��-~PJB(�<z_1�&���˷��|D�p�B����5���<m!���CՒ|L2�{D�g����5��s���p<���������…
11 ��������FXkX^@<~`zhŚ'��Pp���443�__�]����<B:20�Q(���T��A���������=v�`<POI���6��J�*���g���…
20 1�s��<)���U0X����<�,OG���+4uxkw�**�m>�;.��e��<�>d��B��z�����D�v��gW����Q���<�Uと�7qNu&�{��…
21 ؠ<���W%�g-KLo�}�G�@J��bҗ�Z�<[›�'����?��K���B�j˞|���!�`<4���k��3�::�۩m�O�$�q��`+� <Y���"��…
69 …�����L%_���<�X�8��U�&מ�l�+C_x[�q:^�@ٲ�<44WE(�� U��"Pz�B�D,��D�$�1��<"?vG�2���B�m�Y�D��d�Q�
78 !� 6����n�P�6�<1�w��\�6�'ǣ�J�VЗ�+��@<�d]�����,��;1�$�>C�4_2A��< ��z���B�,�-���ėy�t…
85 H�B�<J{W�Բ��?�mN7�Sh��N������v�<O&q�c��3�-�e�VӶ�q�u�ͶO�y��<T�g��H!��+��b�_��9fFD����(p<…
94 …�|��F�܌0�N��tT�E�'���<�g�?��AK���t^�x�������(5�@<�B(<�"����Y��l����B�Z��G�<�u�iJ+c�3{�…
98 3�Q� ���G�\qξB,b@�<8>9I�2?�ʧm�r(���L�z
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpost_filter.cpp43 int mbnum, strength, A_D, d1_2, d1, d2, A, B, C, D, b_size; in H263_Deblock() local
81 B = *(rec_y - width); in H263_Deblock()
82 d = (((C - B) << 2) + A_D); in H263_Deblock()
129 tmpvar = B + d1; in H263_Deblock()
178 B = *(rec_y - width); in H263_Deblock()
179 d = (((C - B) << 2) + A_D); in H263_Deblock()
226 tmpvar = B + d1; in H263_Deblock()
269 B = *(rec_y - 1); in H263_Deblock()
270 d = (((C - B) << 2) + A_D); in H263_Deblock()
317 tmpvar = B + d1; in H263_Deblock()
[all …]
/frameworks/base/core/tests/coretests/src/android/content/pm/
DSignatureTest.java31 …private static final Signature B = new Signature("308204a830820390a003020102020900a1573d0f45bea193… field in SignatureTest
37 assertFalse(Signature.areExactMatch(asArray(A), asArray(B))); in testExactlyEqual()
48 assertFalse(Signature.areEffectiveMatch(asArray(A), asArray(B))); in testEffectiveMatch()
53 assertTrue(Signature.areEffectiveMatch(asArray(A, B), asArray(M, B))); in testEffectiveMatch()
54 assertFalse(Signature.areEffectiveMatch(asArray(A, M), asArray(A, B))); in testEffectiveMatch()
/frameworks/rs/cpu_ref/
DrsCpuIntrinsicBLAS.cpp66 void** B, in initABC() argument
77 *B = ain[1]->mHal.drvState.lod[0].mallocPtr; in initABC()
151 void *B = nullptr; in walk_tiled_gemm() local
161 initABC(ain, sizeof(T_data) * vecSize, &A, &B, &C, &lda, &ldb, &ldc); in walk_tiled_gemm()
186 (T_data *)B + nStart * nStride * vecSize, ldb, beta, in walk_tiled_gemm()
252 void *B = nullptr; in invokeForEach() local
642 initABC(ain, sizeof(float), &A, &B, &C, &lda, &ldb, &ldc); in invokeForEach()
644 (float*)A, lda, (float*)B, ldb, call->beta.f, (float*)C, ldc); in invokeForEach()
648 initABC(ain, sizeof(float), &A, &B, &C, &lda, &ldb, &ldc); in invokeForEach()
650 lda, (float*)B, ldb, call->beta.f, (float*)C, ldc); in invokeForEach()
[all …]
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/test/
Dtest_macros.h13 template <int N, typename A, typename B, typename T>
16 const A& expected, const B& actual, const T& tolerance) { in CmpArrayLikeFloatEq()
31 template <int N, typename A, typename B, typename T>
34 const A& expected, const B& actual, const T& tolerance) { in CmpMatrixLikeFloatEq()
51 template <int N, typename A, typename B, typename T>
54 const A& expected, const B& actual, const T& tolerance) { in CmpArrayLikeFloatNe()
69 template <int N, typename A, typename B, typename T>
72 const A& expected, const B& actual, const T& tolerance) { in CmpMatrixLikeFloatNe()
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
DUT_ctxt_default.java30 private Allocation B; field in UT_ctxt_default
45 B = Allocation.createTyped(RS, T); in initializeGlobals()
46 s.set_B(B); in initializeGlobals()
55 s.forEach_root(A, B); in run()
61 B.destroy(); in run()
DUT_kernel3d.java30 private Allocation B; field in UT_kernel3d
51 B = Allocation.createTyped(RS, T); in initializeGlobals()
52 s.set_B(B); in initializeGlobals()
61 s.forEach_root(A, B); in run()
67 B.destroy(); in run()
DUT_kernel2d_oldstyle.java30 private Allocation B; field in UT_kernel2d_oldstyle
48 B = Allocation.createTyped(RS, T); in initializeGlobals()
49 s.set_B(B); in initializeGlobals()
58 s.forEach_xform(A, B); in run()
64 B.destroy(); in run()
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
DUT_ctxt_default.java28 private Allocation B; field in UT_ctxt_default
43 B = Allocation.createTyped(RS, T); in initializeGlobals()
44 s.set_B(B); in initializeGlobals()
53 s.forEach_root(A, B); in run()
59 B.destroy(); in run()
DUT_kernel2d.java28 private Allocation B; field in UT_kernel2d
46 B = Allocation.createTyped(RS, T); in initializeGlobals()
47 s.set_B(B); in initializeGlobals()
56 s.forEach_root(A, B); in run()
62 B.destroy(); in run()
DUT_kernel2d_oldstyle.java28 private Allocation B; field in UT_kernel2d_oldstyle
46 B = Allocation.createTyped(RS, T); in initializeGlobals()
47 s.set_B(B); in initializeGlobals()
56 s.forEach_xform(A, B); in run()
62 B.destroy(); in run()

12345678910