Home
last modified time | relevance | path

Searched refs:C (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/frameworks/native/services/sensorservice/
Dmat.h27 template <typename TYPE, size_t C, size_t R>
32 template <typename TYPE, size_t C, size_t R>
33 mat<TYPE, C, R>& doAssign( in doAssign() argument
34 mat<TYPE, C, R>& lhs, in doAssign()
36 for (size_t i=0 ; i<C ; i++) in doAssign()
42 template <typename TYPE, size_t C, size_t R, size_t D>
43 mat<TYPE, C, R> PURE doMul( in doMul() argument
45 const mat<TYPE, C, D>& rhs) in doMul()
47 mat<TYPE, C, R> res; in doMul()
48 for (size_t c=0 ; c<C ; c++) { in doMul()
[all …]
/frameworks/compile/slang/
Dslang_rs_object_ref_count.cpp43 void RSObjectRefCount::GetRSRefCountingFunctions(clang::ASTContext &C) { in GetRSRefCountingFunctions() argument
49 clang::TranslationUnitDecl *TUDecl = C.getTranslationUnitDecl(); in GetRSRefCountingFunctions()
96 static clang::CompoundStmt* BuildCompoundStmt(clang::ASTContext &C, in BuildCompoundStmt() argument
111 clang::CompoundStmt *CS = new(C) clang::CompoundStmt( in BuildCompoundStmt()
112 C, llvm::makeArrayRef(CompoundStmtList, CompoundStmtCount), Loc, Loc); in BuildCompoundStmt()
119 static void AppendAfterStmt(clang::ASTContext &C, in AppendAfterStmt() argument
164 CS->setStmts(C, UpdatedStmtList, UpdatedStmtCount); in AppendAfterStmt()
212 DestructorVisitor(clang::ASTContext &C,
266 DestructorVisitor::DestructorVisitor(clang::ASTContext &C, in DestructorVisitor() argument
270 : mCtx(C), in DestructorVisitor()
[all …]
Dslang_rs_check_ast.h33 clang::ASTContext &C; variable
52 C(Con->getASTContext()), in RSCheckAST()
53 mSM(C.getSourceManager()), in RSCheckAST()
Dslang_rs_object_ref_count.h87 static void GetRSRefCountingFunctions(clang::ASTContext &C);
99 clang::ASTContext &C,
103 explicit RSObjectRefCount(clang::ASTContext &C) in RSObjectRefCount() argument
104 : mCtx(C), in RSObjectRefCount()
Dslang_rs_export_foreach.cpp78 clang::ASTContext &C = Context->getASTContext(); in validateAndConstructOldStyleParams() local
79 if (mResultType != C.VoidTy) { in validateAndConstructOldStyleParams()
151 clang::ASTContext &C = Context->getASTContext(); in validateAndConstructKernelParams() local
165 mHasReturnType = (mResultType != C.VoidTy); in validateAndConstructKernelParams()
232 clang::ASTContext &C = Context->getASTContext(); in validateIterationParameters() local
268 if (UT != C.UnsignedIntTy && UT != C.IntTy) { in validateIterationParameters()
362 const clang::ASTContext &C = Context->getASTContext(); in Create() local
364 C.VoidTy) { in Create()
525 const clang::ASTContext &C = FD->getASTContext(); in validateSpecialFuncDecl() local
558 if (FD->getReturnType().getCanonicalType() != C.VoidTy) { in validateSpecialFuncDecl()
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
DLVM_Macros.h36 #define MUL32x32INTO32(A,B,C,ShiftR) \ argument
59 (C) = MUL32x32INTO32_temp2;\
75 #define MUL32x16INTO32(A,B,C,ShiftR) \ argument
85 (C)=MUL32x16INTO32_HH+(LVM_INT32)(MUL32x16INTO32_LL>>shiftValue);\
89 (C)=MUL32x16INTO32_HH+(LVM_INT32)(MUL32x16INTO32_LL>>shiftValue);\
92 (C)=MUL32x16INTO32_HH>>(shiftValue-16);}\
103 #define ADD2_SAT_32x32(A,B,C) \ argument
104 {(C)=(A)+(B);\
105 if ((((C) ^ (A)) & ((C) ^ (B))) >> 31)\
108 (C)=0x80000000l;\
[all …]
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
DArrayUtilsTest.java31 final Object C = new Object(); in testContains() local
34 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, A)); in testContains()
35 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, B)); in testContains()
36 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, C)); in testContains()
37 assertTrue(ArrayUtils.contains(new Object[] { A, null, C }, null)); in testContains()
39 assertFalse(ArrayUtils.contains(new Object[] { A, B, C }, null)); in testContains()
47 final Object C = new Object(); in testIndexOf() local
50 assertEquals(0, ArrayUtils.indexOf(new Object[] { A, B, C }, A)); in testIndexOf()
51 assertEquals(1, ArrayUtils.indexOf(new Object[] { A, B, C }, B)); in testIndexOf()
52 assertEquals(2, ArrayUtils.indexOf(new Object[] { A, B, C }, C)); in testIndexOf()
[all …]
/frameworks/compile/mclinker/include/mcld/Support/
DCXADemangle.tcc33 template <class C>
34 const char* parse_type(const char* first, const char* last, C& db);
35 template <class C>
36 const char* parse_encoding(const char* first, const char* last, C& db);
37 template <class C>
38 const char* parse_name(const char* first, const char* last, C& db,
40 template <class C>
41 const char* parse_expression(const char* first, const char* last, C& db);
42 template <class C>
43 const char* parse_template_args(const char* first, const char* last, C& db);
[all …]
/frameworks/av/services/audioflinger/
DAudioResamplerFirGen.h222 inline double Poly4(double A, double B, double C, double D, double x) {
223 return A + x * (B + x * (C + x * (D)));
226 inline double Poly7(double A, double B, double C, double D, double E, double F, double G,
228 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G))))));
231 inline double Poly9(double A, double B, double C, double D, double E, double F, double G,
233 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G + x * (H + x * (I))))))));
248 inline double Poly3(double A, double B, double C, double x, double x2) {
249 return Poly2(A, B, x) + C * x2;
252 inline double Poly3(double A, double B, double C, double x) {
253 return Poly2(A, B, x) + C * x * x;
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dmp4def.h46 #define PV_MEDIAN(A,B,C) ((A) > (B) ? ((A) < (C) ? (A) : (B) > (C) ? (B) : (C)): (B) < (C) ? (B) : … argument
Dpost_filter.cpp189 int mbnum, strength, A_D, d1_2, d1, d2, A, B, C, D, b_size; in H263_Deblock() local
226 C = *rec_y; in H263_Deblock()
228 d = (((C - B) << 2) + A_D); in H263_Deblock()
278 tmpvar = C - d1; in H263_Deblock()
323 C = *rec_y; in H263_Deblock()
325 d = (((C - B) << 2) + A_D); in H263_Deblock()
375 tmpvar = C - d1; in H263_Deblock()
414 C = *rec_y; in H263_Deblock()
416 d = (((C - B) << 2) + A_D); in H263_Deblock()
466 tmpvar = C - d1; in H263_Deblock()
[all …]
/frameworks/opt/vcard/tests/res/raw/
Dv21_japanese_2.vcf3 FN;CHARSET=SHIFT_JIS:���� ���C�h 1
4 N;CHARSET=SHIFT_JIS:����;���C�h1;;;
6 ADR;HOME;CHARSET=SHIFT_JIS;ENCODING=QUOTED-PRINTABLE:;=93=8C=8B=9E=93=73=
Dv21_multiple_entry.vcf3 N;CHARSET=SHIFT_JIS:�������C�h3;;;;
14 N;CHARSET=SHIFT_JIS:�������C�h4;;;;
25 N;CHARSET=SHIFT_JIS:�������C�h5;;;;
Dv21_backslash.vcf3 N:;A\;B\\;C\\\;;D;\:E;\\\\;
4 FN:A;B\C\;D:E\\
/frameworks/native/include/ui/
Dvec4.h77 template<typename A, typename B, typename C, typename D>
78 tvec4(A x, B y, C z, D w) : x(x), y(y), z(z), w(w) { } in tvec4()
80 template<typename A, typename B, typename C>
81 tvec4(const tvec2<A>& v, B z, C w) : x(v.x), y(v.y), z(z), w(w) { } in tvec4()
103 template<typename A, typename B, typename C>
104 tvec4(const Impersonator< tvec2<A> >& v, B z, C w) in tvec4()
Dmat4.h112 template <typename A, typename B, typename C, typename D>
113 tmat44(const tvec4<A>& v0, const tvec4<B>& v1, const tvec4<C>& v2, const tvec4<D>& v3);
117 typename A, typename B, typename C, typename D,
121 tmat44( A m00, B m01, C m02, D m03,
138 template <typename A, typename B, typename C>
139 static tmat44 lookAt(const tvec3<A>& eye, const tvec3<B>& center, const tvec3<C>& up);
189 typename A, typename B, typename C, typename D,
193 tmat44<T>::tmat44( A m00, B m01, C m02, D m03, in tmat44()
211 template <typename A, typename B, typename C, typename D>
212 tmat44<T>::tmat44(const tvec4<A>& v0, const tvec4<B>& v1, const tvec4<C>& v2, const tvec4<D>& v3) { in tmat44()
[all …]
/frameworks/base/core/java/android/text/style/
DTtsSpan.java516 public static class Builder<C extends Builder<?>> {
544 public C setStringArgument(String arg, String value) { in setStringArgument()
546 return (C) this; in setStringArgument()
555 public C setIntArgument(String arg, int value) { in setIntArgument()
557 return (C) this; in setIntArgument()
566 public C setLongArgument(String arg, long value) { in setLongArgument()
568 return (C) this; in setLongArgument()
578 public static class SemioticClassBuilder<C extends SemioticClassBuilder<?>>
579 extends Builder<C> {
591 public C setGender(String gender) { in setGender()
[all …]
/frameworks/base/docs/html-intl/intl/es/training/monitoring-device-state/
Ddocking-monitoring.jd1 page.title=Cómo determinar y controlar el tipo de conector y el estado de la conexión
2 parent.title=Cómo optimizar la duración de la batería
6 previous.title=Cómo controlar el nivel de batería y el estado de carga
8 next.title=Cómo determinar y controlar el estado de la conectividad
18 <li><a href="#CurrentDockState">Cómo solicitar el foco de audio</a></li>
19 <li><a href="#DockType">Cómo determinar el tipo de conector actual</a></li>
20 …<li><a href="#MonitorDockState">Cómo supervisar los cambios en el tipo de conector o en el estado …
39 <h2 id="CurrentDockState">Cómo determinar el estado de conexión actual</h2>
52 <h2 id="DockType">Cómo determinar el tipo de conector actual</h2>
68 <h2 id="MonitorDockState">Cómo supervisar los cambios en el tipo de conector o en el estado del mis…
Dconnectivity-monitoring.jd1 page.title=Cómo determinar y controlar el estado de la conectividad
2 parent.title=Cómo optimizar la duración de la batería
7 previous.title=Cómo determinar y controlar el tipo de conector y el estado de la conexión
9 next.title=Cómo manipular los receptores de emisión bajo demanda
19 <li><a href="#DetermineConnection">Cómo determinar si tienes conexión a Internet</a></li>
20 <li><a href="#DetermineType">Cómo determinar el tipo de conexión a Internet</a></li>
21 <li><a href="#MonitorChanges">Cómo supervisar los cambios en la conectividad</a></li>
38 <h2 id="DetermineConnection">Cómo determinar si tienes conexión a Internet</h2>
49 <h2 id="DetermineType">Cómo determinar el tipo de conexión a Internet</h2>
62 <h2 id="MonitorChanges">Cómo supervisar los cambios en la conectividad</h2>
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.h54 BitcodeReaderValueList(LLVMContext &C) : Context(C) {} in BitcodeReaderValueList() argument
104 BitcodeReaderMDValueList(LLVMContext& C) : Context(C) {} in BitcodeReaderMDValueList() argument
222 explicit BitcodeReader(MemoryBuffer *buffer, LLVMContext &C) in BitcodeReader() argument
223 : Context(C), TheModule(0), Buffer(buffer), BufferOwned(false), in BitcodeReader()
225 ValueList(C), MDValueList(C), in BitcodeReader()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.h54 BitcodeReaderValueList(LLVMContext &C) : Context(C) {} in BitcodeReaderValueList() argument
104 BitcodeReaderMDValueList(LLVMContext& C) : Context(C) {} in BitcodeReaderMDValueList() argument
217 explicit BitcodeReader(MemoryBuffer *buffer, LLVMContext &C) in BitcodeReader() argument
218 : Context(C), TheModule(0), Buffer(buffer), BufferOwned(false), in BitcodeReader()
220 ValueList(C), MDValueList(C), in BitcodeReader()
/frameworks/compile/slang/BitWriter_2_9/
DBitcodeWriter.cpp817 const Constant *C = cast<Constant>(V); in WriteConstants() local
820 if (C->isNullValue()) { in WriteConstants()
822 } else if (isa<UndefValue>(C)) { in WriteConstants()
824 } else if (const ConstantInt *IV = dyn_cast<ConstantInt>(C)) { in WriteConstants()
849 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { in WriteConstants()
869 } else if (isa<ConstantDataSequential>(C) && in WriteConstants()
870 cast<ConstantDataSequential>(C)->isString()) { in WriteConstants()
871 const ConstantDataSequential *Str = cast<ConstantDataSequential>(C); in WriteConstants()
897 dyn_cast<ConstantDataSequential>(C)) { in WriteConstants()
906 } else if (isa<ConstantArray>(C) || isa<ConstantStruct>(C) || in WriteConstants()
[all …]
/frameworks/compile/slang/BitWriter_2_9_func/
DBitcodeWriter.cpp771 const Constant *C = cast<Constant>(V); in WriteConstants() local
774 if (C->isNullValue()) { in WriteConstants()
776 } else if (isa<UndefValue>(C)) { in WriteConstants()
778 } else if (const ConstantInt *IV = dyn_cast<ConstantInt>(C)) { in WriteConstants()
803 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { in WriteConstants()
823 } else if (isa<ConstantDataSequential>(C) && in WriteConstants()
824 cast<ConstantDataSequential>(C)->isString()) { in WriteConstants()
825 const ConstantDataSequential *Str = cast<ConstantDataSequential>(C); in WriteConstants()
851 dyn_cast<ConstantDataSequential>(C)) { in WriteConstants()
860 } else if (isa<ConstantArray>(C) || isa<ConstantStruct>(C) || in WriteConstants()
[all …]
/frameworks/compile/slang/BitWriter_3_2/
DBitcodeWriter.cpp841 const Constant *C = cast<Constant>(V); in WriteConstants() local
844 if (C->isNullValue()) { in WriteConstants()
846 } else if (isa<UndefValue>(C)) { in WriteConstants()
848 } else if (const ConstantInt *IV = dyn_cast<ConstantInt>(C)) { in WriteConstants()
850 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { in WriteConstants()
870 } else if (isa<ConstantDataSequential>(C) && in WriteConstants()
871 cast<ConstantDataSequential>(C)->isString()) { in WriteConstants()
872 const ConstantDataSequential *Str = cast<ConstantDataSequential>(C); in WriteConstants()
898 dyn_cast<ConstantDataSequential>(C)) { in WriteConstants()
918 } else if (isa<ConstantArray>(C) || isa<ConstantStruct>(C) || in WriteConstants()
[all …]
/frameworks/base/media/tests/contents/media_api/music/
Dtest_amr_ietf.amr9 …�ݖzF����/L9��-~PJB(�<z_1�&���˷��|D�p�B����5���<m!���CՒ|L2�{D�g����5��s���p<���������…
19 0$)�C��C�88���>�yң` .б!�� <vI�����|q���v���0�����4�< 3\�A��
43 …b�:�\W�C���E�M�������<�y:��!�R�.UCR�p��.�2�}`����<�)��)�l��T�h���~\�(�_��<������K�…
67 ?�\�C�Q*��(�<�4���/��{��/��⽺���%c���`<,�i���O��2�$r(*r���אAXm�P<0��)홄��d�-���.��!�}Wd�…
78 !� 6����n�P�6�<1�w��\�6�'ǣ�J�VЗ�+��@<�d]�����,��;1�$�>C�4_2A��< ��z���B�,�-���ėy�t…
100 C����'DB�
118 …A��{Av7�J/��>-���@N+��<q׆c��a��J����Cs��rG)�����Ru`<}h?�|�A����k����e��C�p�"�̌�<D�`�~��� �…
120 2\v�}� Z���<B$C����(�7�QN����3��Ὶw(%˾�<R[{D��������*���{�aW��<@4=`<['�������hn�^_F�XZ��…
142 H*ebp<C�+v�=�������f>��cv��;Wop<��[�t���Th�m�B��x��ݑ6�<�}�W���zG���'�/���bt�c������<…
171 …5�/�t����qϭ��}��ah]��O�<ɉ'Fv��|/z�;Z[��jƩ�3b�r�<���x��z�Ys=�mɞ�C x����D�2�<� ��zX�ݚ…
[all …]

12345678910>>...13