Home
last modified time | relevance | path

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

12345678910>>...17

/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()
/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/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/data-binding/baseLibrary/src/main/java/android/databinding/
DCallbackRegistry.java44 public class CallbackRegistry<C, T, A> implements Cloneable {
48 private List<C> mCallbacks = new ArrayList<C>();
69 private final NotifierCallback<C, T, A> mNotifier;
75 public CallbackRegistry(NotifierCallback<C, T, A> notifier) { in CallbackRegistry() argument
212 public synchronized void add(C callback) { in add()
273 public synchronized void remove(C callback) { in remove()
309 public synchronized ArrayList<C> copyCallbacks() { in copyCallbacks()
310 ArrayList<C> callbacks = new ArrayList<C>(mCallbacks.size()); in copyCallbacks()
325 public synchronized void copyCallbacks(List<C> callbacks) { in copyCallbacks()
373 public synchronized CallbackRegistry<C, T, A> clone() { in clone()
[all …]
/frameworks/base/core/java/com/android/internal/util/
DCallbackRegistry.java42 public class CallbackRegistry<C, T, A> implements Cloneable {
46 private List<C> mCallbacks = new ArrayList<C>();
71 private final NotifierCallback<C, T, A> mNotifier;
77 public CallbackRegistry(NotifierCallback<C, T, A> notifier) { in CallbackRegistry() argument
215 public synchronized void add(C callback) { in add()
274 public synchronized void remove(C callback) { in remove()
310 public synchronized ArrayList<C> copyListeners() { in copyListeners()
311 ArrayList<C> callbacks = new ArrayList<C>(mCallbacks.size()); in copyListeners()
355 public synchronized CallbackRegistry<C, T, A> clone() { in clone()
356 CallbackRegistry<C, T, A> clone = null; in clone()
[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.h225 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))))))));
251 inline double Poly3(double A, double B, double C, double x, double x2) {
252 return Poly2(A, B, x) + C * x2;
255 inline double Poly3(double A, double B, double C, double x) {
256 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/base/rs/java/android/renderscript/
DScriptIntrinsicBLAS.java2259 …validateL3(Element e, int TransA, int TransB, int Side, Allocation A, Allocation B, Allocation C) { in validateL3() argument
2263 (C != null && !C.getType().getElement().isCompatible(e))) { in validateL3()
2266 if (C == null) { in validateL3()
2270 cM = C.getType().getY(); in validateL3()
2271 cN = C.getType().getX(); in validateL3()
2305 if (A != null && B != null && C != null) { in validateL3()
2309 } else if (A != null && C != null) { in validateL3()
2341 Allocation B, float beta, Allocation C) { in SGEMM() argument
2344 validateL3(Element.F32(mRS), TransA, TransB, 0, A, B, C); in SGEMM() local
2360 beta, C.getID(mRS), 0, 0, 0, 0); in SGEMM()
[all …]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
DScriptIntrinsicBLAS.java2862 …validateL3(Element e, int TransA, int TransB, int Side, Allocation A, Allocation B, Allocation C) { in validateL3() argument
2866 (C != null && !C.getType().getElement().isCompatible(e))) { in validateL3()
2869 if (C == null) { in validateL3()
2873 cM = C.getType().getY(); in validateL3()
2874 cN = C.getType().getX(); in validateL3()
2908 if (A != null && B != null && C != null) { in validateL3()
2912 } else if (A != null && C != null) { in validateL3()
2944 Allocation B, float beta, Allocation C) { in SGEMM() argument
2947 validateL3(Element.F32(mRS), TransA, TransB, 0, A, B, C); in SGEMM() local
2966 long cID = C.getID(mRS); in SGEMM()
[all …]
/frameworks/rs/cpu_ref/
DrsCpuIntrinsicBLAS.cpp73 void** C, in initABC() argument
87 *C = ain[2]->mHal.drvState.lod[0].mallocPtr; in initABC()
111 void *C = nullptr; in invokeForEach() local
494 initABC(ain, sizeof(float), &A, &B, &C, &lda, &ldb, &ldc); in invokeForEach()
496 (float*)A, lda, (float*)B, ldb, call->beta.f, (float*)C, ldc); in invokeForEach()
499 initABC(ain, sizeof(float), &A, &B, &C, &lda, &ldb, &ldc); in invokeForEach()
501 lda, (float*)B, ldb, call->beta.f, (float*)C, ldc); in invokeForEach()
504 initABC(ain, sizeof(float), &A, nullptr, &C, &lda, nullptr, &ldc); in invokeForEach()
506 lda, call->beta.f, (float*)C, ldc); in invokeForEach()
509 initABC(ain, sizeof(float), &A, &B, &C, &lda, &ldb, &ldc); in invokeForEach()
[all …]
DrsCpuBLASDispatch.h294 const float beta, float *C, const int ldc);
299 float *C, const int ldc);
303 const float beta, float *C, const int ldc);
308 float *C, const int ldc);
324 const double beta, double *C, const int ldc);
329 double *C, const int ldc);
333 const double beta, double *C, const int ldc);
338 double *C, const int ldc);
354 const void *beta, void *C, const int ldc);
359 void *C, const int ldc);
[all …]
/frameworks/base/docs/html/ndk/reference/
Dannotated.jd13 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
14 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
15 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
16 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
17 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
18 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
19 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
20 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
21 …="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
22 …v2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="…
/frameworks/base/docs/html/ndk/guides/
Dcpp-support.jd1 page.title=C++ Library Support
17 <p>The Android platform provides a very minimal C++ runtime support library ({@code libstdc++}).
21 <li>Standard C++ Library support (except a few trivial headers).</li>
22 <li>C++ exceptions support</li>
47 <td>The default minimal system C++ runtime library.</td>
54 <td>C++ Exceptions and RTTI</td>
60 <td>C++ Exceptions and RTTI</td>
66 <td> C++ Exceptions and RTTI; Standard Library</td>
72 <td> C++ Exceptions and RTTI; Standard Library</td>
78 <td> C++ Exceptions and RTTI; Standard Library</td>
[all …]
/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.java526 public static class Builder<C extends Builder<?>> {
554 public C setStringArgument(String arg, String value) { in setStringArgument()
556 return (C) this; in setStringArgument()
565 public C setIntArgument(String arg, int value) { in setIntArgument()
567 return (C) this; in setIntArgument()
576 public C setLongArgument(String arg, long value) { in setLongArgument()
578 return (C) this; in setLongArgument()
588 public static class SemioticClassBuilder<C extends SemioticClassBuilder<?>>
589 extends Builder<C> {
601 public C setGender(String gender) { in setGender()
[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=
/frameworks/compile/slang/BitWriter_2_9/
DBitcodeWriter.cpp842 const Constant *C = cast<Constant>(V); in WriteConstants() local
845 if (C->isNullValue()) { in WriteConstants()
847 } else if (isa<UndefValue>(C)) { in WriteConstants()
849 } else if (const ConstantInt *IV = dyn_cast<ConstantInt>(C)) { in WriteConstants()
874 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { in WriteConstants()
894 } else if (isa<ConstantDataSequential>(C) && in WriteConstants()
895 cast<ConstantDataSequential>(C)->isString()) { in WriteConstants()
896 const ConstantDataSequential *Str = cast<ConstantDataSequential>(C); in WriteConstants()
922 dyn_cast<ConstantDataSequential>(C)) { in WriteConstants()
931 } else if (isa<ConstantArray>(C) || isa<ConstantStruct>(C) || in WriteConstants()
[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…
/frameworks/compile/slang/BitWriter_2_9_func/
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()
873 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { in WriteConstants()
893 } else if (isa<ConstantDataSequential>(C) && in WriteConstants()
894 cast<ConstantDataSequential>(C)->isString()) { in WriteConstants()
895 const ConstantDataSequential *Str = cast<ConstantDataSequential>(C); in WriteConstants()
921 dyn_cast<ConstantDataSequential>(C)) { in WriteConstants()
930 } else if (isa<ConstantArray>(C) || isa<ConstantStruct>(C) || in WriteConstants()
[all …]
/frameworks/compile/slang/BitWriter_3_2/
DBitcodeWriter.cpp878 const Constant *C = cast<Constant>(V); in WriteConstants() local
881 if (C->isNullValue()) { in WriteConstants()
883 } else if (isa<UndefValue>(C)) { in WriteConstants()
885 } else if (const ConstantInt *IV = dyn_cast<ConstantInt>(C)) { in WriteConstants()
903 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { in WriteConstants()
923 } else if (isa<ConstantDataSequential>(C) && in WriteConstants()
924 cast<ConstantDataSequential>(C)->isString()) { in WriteConstants()
925 const ConstantDataSequential *Str = cast<ConstantDataSequential>(C); in WriteConstants()
951 dyn_cast<ConstantDataSequential>(C)) { in WriteConstants()
971 } else if (isa<ConstantArray>(C) || isa<ConstantStruct>(C) || in WriteConstants()
[all …]

12345678910>>...17