Home
last modified time | relevance | path

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

123

/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
Ddb_utilities_poly.h302 double C[16],n0,n1,n2,n3,m; in db_EigenVector4x4() local
329 C[0]= (a5 *e23-A[6]*e13+A[7]*e12); in db_EigenVector4x4()
330 C[1]= -(A[4]*e23-A[6]*e03+A[7]*e02); in db_EigenVector4x4()
331 C[2]= (A[4]*e13-a5 *e03+A[7]*e01); in db_EigenVector4x4()
332 C[3]= -(A[4]*e12-a5 *e02+A[6]*e01); in db_EigenVector4x4()
334 C[4]= -(A[1]*e23-A[2]*e13+A[3]*e12); in db_EigenVector4x4()
335 C[5]= (a0 *e23-A[2]*e03+A[3]*e02); in db_EigenVector4x4()
336 C[6]= -(a0 *e13-A[1]*e03+A[3]*e01); in db_EigenVector4x4()
337 C[7]= (a0 *e12-A[1]*e02+A[2]*e01); in db_EigenVector4x4()
339 C[8]= (A[13]*d23-A[14]*d13+a15 *d12); in db_EigenVector4x4()
[all …]
Ddb_utilities.h328 inline void db_Multiply3x3_3x3(double C[9], const double A[9],const double B[9]) in db_Multiply3x3_3x3()
330 C[0]=A[0]*B[0]+A[1]*B[3]+A[2]*B[6]; in db_Multiply3x3_3x3()
331 C[1]=A[0]*B[1]+A[1]*B[4]+A[2]*B[7]; in db_Multiply3x3_3x3()
332 C[2]=A[0]*B[2]+A[1]*B[5]+A[2]*B[8]; in db_Multiply3x3_3x3()
334 C[3]=A[3]*B[0]+A[4]*B[3]+A[5]*B[6]; in db_Multiply3x3_3x3()
335 C[4]=A[3]*B[1]+A[4]*B[4]+A[5]*B[7]; in db_Multiply3x3_3x3()
336 C[5]=A[3]*B[2]+A[4]*B[5]+A[5]*B[8]; in db_Multiply3x3_3x3()
338 C[6]=A[6]*B[0]+A[7]*B[3]+A[8]*B[6]; in db_Multiply3x3_3x3()
339 C[7]=A[6]*B[1]+A[7]*B[4]+A[8]*B[7]; in db_Multiply3x3_3x3()
340 C[8]=A[6]*B[2]+A[7]*B[5]+A[8]*B[8]; in db_Multiply3x3_3x3()
Ddb_utilities_indexing.h60 inline void db_MultiplyMatricesAB(double **C,const double * const *A,const double * const *B,int ar… in db_MultiplyMatricesAB() argument
69 C[i][j]=acc; in db_MultiplyMatricesAB()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DQueryTask.java30 public class QueryTask<C extends SuggestionCursor> implements NamedTask {
36 private final SuggestionCursorProvider<C> mProvider;
38 private final Consumer<C> mConsumer;
50 public QueryTask(String query, int queryLimit, SuggestionCursorProvider<C> provider, in QueryTask()
51 Handler handler, Consumer<C> consumer) { in QueryTask()
66 final C cursor = mProvider.getSuggestions(mQuery, mQueryLimit); in run()
76 public static <C extends SuggestionCursor> void startQuery(String query, in startQuery()
78 SuggestionCursorProvider<C> provider, in startQuery()
80 Consumer<C> consumer) { in startQuery()
82 QueryTask<C> task = new QueryTask<C>(query, maxResults, provider, handler, in startQuery()
DSuggestionCursorProvider.java23 public interface SuggestionCursorProvider<C extends SuggestionCursor> {
38 C getSuggestions(String query, int queryLimit); in getSuggestions()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
DNow.java21 public class Now<C> implements NowOrLater<C> {
23 private final C mValue;
25 public Now(C value) { in Now()
29 public void getLater(Consumer<? super C> consumer) { in getLater()
33 public C getNow() { in getNow()
DNowOrLater.java23 public interface NowOrLater<C> {
34 C getNow(); in getNow()
41 void getLater(Consumer<? super C> consumer); in getLater()
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
Dmeta.h55 template <bool C> struct SelectIfImpl { template <typename T1, typename T2> struct Apply { typedef …
57 template <bool C, typename T1, typename T2> struct SelectIfCond : SelectIfImpl<C>::template Apply<T…
58 template <typename C, typename T1, typename T2> struct SelectIf : SelectIfCond<C::Value, T1, T2> {};
65 template <typename C> struct BoolExpr : SelectIf<C,TrueType,FalseType>::Type {};
66 template <typename C> struct NotExpr : SelectIf<C,FalseType,TrueType>::Type {};
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
Dtouch_position_correction_utils.h33 static const float C = 1.20f; in getSweetSpotFactor() local
39 return std::min(C, x); in getSweetSpotFactor()
56 return (B * (R2 - x) + C * (x - R1)) / (R2 - R1); in getSweetSpotFactor()
58 return C; in getSweetSpotFactor()
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
DIconLoaderTest.java66 protected static class AssertConsumer<C> implements Consumer<C> {
92 public AssertConsumer<C> reset() { in reset()
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dfaq.md9 …RapidJSON is a C++ library for parsing and generating JSON. You may check all [features](doc/featu…
27 RapidJSON depends on C++ standard library only.
37 8. Does RapidJSON support C++03? C++11?
39 …for C++03. Later it added optional support of some C++11 features (e.g., move constructor, `noexce…
55 …ps://github.com/miloyip/nativejson-benchmark) has a listing of open-source C/C++ JSON libraries. […
115 …Alternatively, use equivalent of the [C++ swap with temporary idiom](https://en.wikibooks.org/wiki…
177 …Since C string is null-terminated, the length of string needs to be computed via `strlen()`, with …
251 …https://github.com/miloyip/nativejson-benchmark) for evaluating performance of C/C++ JSON libaries.
Dpointer.md63 Value x("C++");
66 // { "project" : "RapidJSON", "stars" : 11, "a" : { "b" : [ null ] }, "hello" : "C++" }
95 Value x("C++");
190 …coding in UTF-8 sequence. For example, the following table shows different C/C++ string literals o…
Dfeatures.md14 * Without C++ exception, RTTI
89 * Support standard CRT(C-runtime) allocator.
94 * Some C++11 support (optional)
Dtutorial.md17 Assumes we have a JSON stored in a C string (`const char* json`):
80 JSON number type represents all numeric values. However, C++ needs more specific type for manipulat…
176 As C++ provides several integer and floating point number types, the DOM tries to handle these with…
207 …racter `U+0000`, which must be escaped as `"\u0000"`. The problem is that, C/C++ often uses null-t…
329 This is called move assignment operator in C++11. As RapidJSON supports C++03, it adopts move seman…
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
DAccountTypeTest.java94 final AccountTypeForDisplayLabelTest C = new AccountTypeForDisplayLabelTest("c"); in testDisplayLabelComparator() local
97 assertTrue(compareDisplayLabel(BBB, C) < 0); in testDisplayLabelComparator()
98 assertTrue(compareDisplayLabel(AA, C) < 0); in testDisplayLabelComparator()
/packages/apps/Test/connectivity/sl4n/rapidjson/
Dreadme.md5 ## A fast JSON parser/generator for C++ with both SAX/DOM style API
9 Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
32 RapidJSON is a JSON parser and generator for C++. It was inspired by [RapidXml](http://rapidxml.sou…
54 * Visual C++ 2008/2010/2013 on Windows (32/64-bit)
55 * GNU C++ 3.8.x on Cygwin
63 RapidJSON is a header-only C++ library. Just copy the `include/rapidjson` folder to system or proje…
DCHANGELOG.md29 * Visual C++ 32-bit compilation error in `diyfp.h` (#317).
57 * C++11 compatibility and support (#128)
/packages/inputmethods/OpenWnn/
DREADME.txt6 (C) Copyright OMRON SOFTWARE Co., Ltd. 2008-2012 All Rights Reserved.
27 . IME native library source code (C)
61 libs/ IME native library source code (C language)
/packages/apps/TV/usbtuner/src/com/android/usbtuner/exoplayer/cache/
DSimpleSampleBuffer.java22 import com.google.android.exoplayer.C;
39 private long mLastBufferedPositionUs = C.UNKNOWN_TIME_US;
DRecordingSampleBuffer.java26 import com.google.android.exoplayer.C;
86 private long mLastBufferedPositionUs = C.UNKNOWN_TIME_US;
/packages/apps/TV/usbtuner/src/com/android/usbtuner/exoplayer/
DMpegTsSampleSource.java18 import com.google.android.exoplayer.C;
141 mPendingSeekPositionUs = C.UNKNOWN_TIME_US; in readData()
/packages/services/Car/bluetooth/bt-map-service/
Dbt_hci_startup_issues.txt13168 <6>[ 0.541351] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
13465 <6>[ 1.122497] ip_tables: (C) 2000-2006 Netfilter Core Team
13466 <6>[ 1.123077] arp_tables: (C) 2002 David S. Miller
13471 <6>[ 1.126525] ip6_tables: (C) 2000-2006 Netfilter Core Team
40599 01-13 23:19:11.007 2653 2684 D BluetoothAdapterProperties: Address is:00:00:00:2A:7C:E5
44440 ProcessMarkStack: Sum: 211.849ms 99% C.I. 0.006ms-74.048ms Avg: 17.654ms Max: 74.920ms
44441 SweepMallocSpace: Sum: 18.400ms 99% C.I. 0.001ms-6.228ms Avg: 2.300ms Max: 6.256ms
44442 UpdateAndMarkImageModUnionTable: Sum: 17.271ms 99% C.I. 3.784ms-5.523ms Avg: 4.317ms Max: 5.523ms
44443 MarkRootsCheckpoint: Sum: 13.912ms 99% C.I. 0.335ms-6.424ms Avg: 1.739ms Max: 6.500ms
44444 ScanGrayAllocSpaceObjects: Sum: 7.841ms 99% C.I. 0.500us-3350us Avg: 980.125us Max: 3387us
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile161 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
163 # The new default is to treat a multi-line C++ comment block as a detailed
194 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
195 # sources only. Doxygen will then generate output that is more tailored for C.
224 # the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP,
225 # Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat
226 # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran),
227 # use: inc=Fortran f=C. Note that for custom extensions you also need to set
241 # If you use Microsoft's C++/CLI language, you should set this option to YES to
247 # Doxygen will parse them like normal C++ but will assume all classes use public
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile161 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
163 # The new default is to treat a multi-line C++ comment block as a detailed
194 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
195 # sources only. Doxygen will then generate output that is more tailored for C.
224 # the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP,
225 # Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat
226 # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran),
227 # use: inc=Fortran f=C. Note that for custom extensions you also need to set
241 # If you use Microsoft's C++/CLI language, you should set this option to YES to
247 # Doxygen will parse them like normal C++ but will assume all classes use public
[all …]
/packages/apps/Messaging/
Dproguard-release.flags1 # Copyright (C) 2015 The Android Open Source Project

123