Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 1597) sorted by relevance

12345678910>>...64

/packages/services/Car/service/src/com/android/car/telemetry/publisher/statsconverters/
DAppCrashOccurredConverter.java36 a -> a.hasUid(),
37 a -> a.getUid()
41 a -> a.hasEventType(),
42 a -> a.getEventType()
46 a -> a.hasProcessName(),
47 a -> a.getProcessName()
51 a -> a.hasPid(),
52 a -> a.getPid()
56 a -> a.hasPackageName(),
57 a -> a.getPackageName()
[all …]
DAnrOccurredConverter.java35 a -> a.hasUid(),
36 a -> a.getUid()
40 a -> a.hasProcessName(),
41 a -> a.getProcessName()
45 a -> a.hasShortComponentName(),
46 a -> a.getShortComponentName()
50 a -> a.hasReason(),
51 a -> a.getReason()
55 a -> a.hasIsInstantApp(),
56 a -> a.getIsInstantApp().getNumber()
[all …]
DProcessStartTimeConverter.java35 a -> a.hasUid(),
36 a -> a.getUid()
40 a -> a.hasPid(),
41 a -> a.getPid()
45 a -> a.hasProcessName(),
46 a -> a.getProcessName()
50 a -> a.hasType(),
51 a -> a.getType().getNumber()
55 a -> a.hasProcessStartTimeMillis(),
56 a -> a.getProcessStartTimeMillis()
[all …]
DProcessMemorySnapshotConverter.java36 a -> a.hasUid(),
37 a -> a.getUid()
41 a -> a.hasProcessName(),
42 a -> a.getProcessName()
46 a -> a.hasPid(),
47 a -> a.getPid()
51 a -> a.hasOomScoreAdj(),
52 a -> a.getOomScoreAdj()
56 a -> a.hasRssInKilobytes(),
57 a -> a.getRssInKilobytes()
[all …]
DProcessMemoryStateConverter.java35 a -> a.hasUid(),
36 a -> a.getUid()
40 a -> a.hasProcessName(),
41 a -> a.getProcessName()
45 a -> a.hasOomAdjScore(),
46 a -> a.getOomAdjScore()
50 a -> a.hasPageFault(),
51 a -> a.getPageFault()
55 a -> a.hasPageMajorFault(),
56 a -> a.getPageMajorFault()
[all …]
DAppStartMemoryStateCapturedConverter.java37 a -> a.hasUid(),
38 a -> a.getUid()
42 a -> a.hasProcessName(),
43 a -> a.getProcessName()
47 a -> a.hasActivityName(),
48 a -> a.getActivityName()
52 a -> a.hasPageFault(),
53 a -> a.getPageFault()
57 a -> a.hasPageMajorFault(),
58 a -> a.getPageMajorFault()
[all …]
DWtfOccurredConverter.java36 a -> a.hasUid(),
37 a -> a.getUid()
41 a -> a.hasTag(),
42 a -> a.getTag()
46 a -> a.hasProcessName(),
47 a -> a.getProcessName()
51 a -> a.hasPid(),
52 a -> a.getPid()
56 a -> a.hasErrorSource(),
57 a -> a.getErrorSource().getNumber()
/packages/modules/Bluetooth/system/gd/security/ecc/
Dmultprecision.cc40 void multiprecision_copy(uint32_t* c, const uint32_t* a) { in multiprecision_copy() argument
41 for (uint32_t i = 0; i < KEY_LENGTH_DWORDS_P256; i++) c[i] = a[i]; in multiprecision_copy()
44 int multiprecision_compare(const uint32_t* a, const uint32_t* b) { in multiprecision_compare() argument
46 if (a[i] > b[i]) return 1; in multiprecision_compare()
47 if (a[i] < b[i]) return -1; in multiprecision_compare()
52 int multiprecision_iszero(const uint32_t* a) { in multiprecision_iszero() argument
54 if (a[i]) return 0; in multiprecision_iszero()
59 uint32_t multiprecision_dword_bits(uint32_t a) { in multiprecision_dword_bits() argument
61 for (i = 0; i < DWORD_BITS; i++, a >>= 1) in multiprecision_dword_bits()
62 if (a == 0) break; in multiprecision_dword_bits()
[all …]
Dmultprecision.h34 int multiprecision_compare(const uint32_t* a, const uint32_t* b);
35 int multiprecision_iszero(const uint32_t* a);
37 void multiprecision_copy(uint32_t* c, const uint32_t* a);
38 uint32_t multiprecision_dword_bits(uint32_t a);
39 uint32_t multiprecision_most_signdwords(const uint32_t* a);
40 uint32_t multiprecision_most_signbits(const uint32_t* a);
41 void multiprecision_inv_mod(uint32_t* aminus, uint32_t* a, const uint32_t* modp);
42 uint32_t multiprecision_add(uint32_t* c, const uint32_t* a, const uint32_t* b); // c=a+b
43 void multiprecision_add_mod(uint32_t* c, const uint32_t* a, const uint32_t* b, const uint32_t* modp…
44 uint32_t multiprecision_sub(uint32_t* c, const uint32_t* a, const uint32_t* b); // c=a-b
[all …]
/packages/modules/Bluetooth/system/stack/smp/
Dp_256_multprecision.cc34 void multiprecision_copy(uint32_t* c, uint32_t* a) { in multiprecision_copy() argument
35 for (uint32_t i = 0; i < KEY_LENGTH_DWORDS_P256; i++) c[i] = a[i]; in multiprecision_copy()
38 int multiprecision_compare(uint32_t* a, uint32_t* b) { in multiprecision_compare() argument
40 if (a[i] > b[i]) return 1; in multiprecision_compare()
41 if (a[i] < b[i]) return -1; in multiprecision_compare()
46 int multiprecision_iszero(uint32_t* a) { in multiprecision_iszero() argument
48 if (a[i]) return 0; in multiprecision_iszero()
53 uint32_t multiprecision_dword_bits(uint32_t a) { in multiprecision_dword_bits() argument
55 for (i = 0; i < DWORD_BITS; i++, a >>= 1) in multiprecision_dword_bits()
56 if (a == 0) break; in multiprecision_dword_bits()
[all …]
Dp_256_multprecision.h34 int multiprecision_compare(uint32_t* a, uint32_t* b);
35 int multiprecision_iszero(uint32_t* a);
37 void multiprecision_copy(uint32_t* c, uint32_t* a);
38 uint32_t multiprecision_dword_bits(uint32_t a);
39 uint32_t multiprecision_most_signdwords(uint32_t* a);
40 uint32_t multiprecision_most_signbits(uint32_t* a);
41 void multiprecision_inv_mod(uint32_t* aminus, uint32_t* a);
42 uint32_t multiprecision_add(uint32_t* c, uint32_t* a, uint32_t* b); // c=a+b
43 void multiprecision_add_mod(uint32_t* c, uint32_t* a, uint32_t* b);
44 uint32_t multiprecision_sub(uint32_t* c, uint32_t* a, uint32_t* b); // c=a-b
[all …]
/packages/modules/Bluetooth/system/embdrv/lc3/test/neon/
Dneon.h56 static int32x4_t vmull_s16(int16x4_t a, int16x4_t b) in vmull_s16() argument
58 return (int32x4_t){ { a.e[0] * b.e[0], a.e[1] * b.e[1], in vmull_s16()
59 a.e[2] * b.e[2], a.e[3] * b.e[3] } }; in vmull_s16()
63 static int32x4_t vmlal_s16(int32x4_t r, int16x4_t a, int16x4_t b) in vmlal_s16() argument
66 r.e[0] + a.e[0] * b.e[0], r.e[1] + a.e[1] * b.e[1], in vmlal_s16()
67 r.e[2] + a.e[2] * b.e[2], r.e[3] + a.e[3] * b.e[3] } }; in vmlal_s16()
71 static int64x2_t vpadalq_s32(int64x2_t a, int32x4_t b) in vpadalq_s32() argument
75 r.e[0] = a.e[0] + ((int64_t)b.e[0] + b.e[1]); in vpadalq_s32()
76 r.e[1] = a.e[1] + ((int64_t)b.e[2] + b.e[3]); in vpadalq_s32()
104 static int16x4_t vext_s16(int16x4_t a, int16x4_t b, const int n) in vext_s16() argument
[all …]
/packages/modules/NeuralNetworks/tools/systrace_parser/parser/test/
Domr1.txt8 Application n/a n/a n/a n/a n/a n/a
11 Driver 74.51 - 544.97 n/a n/a n/a
15 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
23 Application n/a n/a n/a n/a n/a n/a
26 Driver - - 522.53 n/a n/a n/a
30 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
38 Application n/a n/a n/a n/a n/a n/a
41 Driver - - 544.36 n/a n/a n/a
45 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
53 Application n/a n/a n/a n/a n/a n/a
[all …]
/packages/providers/MediaProvider/tests/src/com/android/providers/media/util/
DLongArrayTest.java33 LongArray a = new LongArray(); in testLongArray() local
34 a.add(1); in testLongArray()
35 a.add(2); in testLongArray()
36 a.add(3); in testLongArray()
37 verify(new long[]{1, 2, 3}, a); in testLongArray()
40 a.addAll(b); in testLongArray()
41 verify(new long[]{1, 2, 3, 4, 5, 6}, a); in testLongArray()
43 a.resize(2); in testLongArray()
44 verify(new long[]{1, 2}, a); in testLongArray()
46 a.resize(8); in testLongArray()
[all …]
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dbigintegertest.cpp34 const BigInteger a(123); in TEST() local
35 EXPECT_TRUE(a == a); in TEST()
36 EXPECT_TRUE(a == BIGINTEGER_LITERAL("123")); in TEST()
37 EXPECT_TRUE(a == BIGINTEGER_LITERAL("0123")); in TEST()
45 BigInteger a = kZero; in TEST() local
46 a += 0u; in TEST()
47 EXPECT_TRUE(kZero == a); in TEST()
49 a += 1u; in TEST()
50 EXPECT_TRUE(kOne == a); in TEST()
52 a += 1u; in TEST()
[all …]
Ddocumenttest.cpp62 const ValueType& a = doc["a"]; in ParseCheck() local
63 EXPECT_TRUE(a.IsArray()); in ParseCheck()
64 EXPECT_EQ(4u, a.Size()); in ParseCheck()
66 EXPECT_EQ(i + 1, a[i].GetUint()); in ParseCheck()
198 Document::AllocatorType& a = d1.GetAllocator(); in TEST() local
200 d1.SetArray().PushBack(1, a).PushBack(2, a); in TEST()
203 o.SetObject().AddMember("a", 1, a); in TEST()
213 d2.SetArray().PushBack(3, a); in TEST()
217 EXPECT_EQ(&d2.GetAllocator(), &a); in TEST()
226 EXPECT_NE(&d2.GetAllocator(), &a); in TEST()
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
Ddb_utilities.h78 inline double db_sqr(double a) in db_sqr() argument
80 return(a*a); in db_sqr()
86 inline long db_sqr(long a) in db_sqr() argument
88 return(a*a); in db_sqr()
94 inline long db_sqr(int a) in db_sqr() argument
96 return(a*a); in db_sqr()
102 inline double db_maxd(double a,double b) in db_maxd() argument
104 if(b>a) return(b); in db_maxd()
105 else return(a); in db_maxd()
110 inline double db_mind(double a,double b) in db_mind() argument
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DDelaunay.h96 EdgePointer connectLeft(EdgePointer a, EdgePointer b);
97 EdgePointer connectRight(EdgePointer a, EdgePointer b);
98 int ccw(SitePointer a, SitePointer b, SitePointer c);
99 int incircle(SitePointer a, SitePointer b, SitePointer c, SitePointer d);
112 #define onext(a) next[a] argument
113 #define oprev(a) rot(onext(rot(a))) argument
114 #define lnext(a) rot(onext(rotinv(a))) argument
115 #define lprev(a) sym(onext(a)) argument
116 #define rnext(a) rotinv(onext(rot(a))) argument
117 #define rprev(a) onext(sym(a)) argument
[all …]
/packages/modules/GeoTZ/validation/geonames/known_diffs/
Dknown_diffs1000.prototxt12 comment: "Add a comment here"
27 comment: "Add a comment here"
42 comment: "Add a comment here"
57 comment: "Add a comment here"
72 comment: "Add a comment here"
87 comment: "Add a comment here"
102 comment: "Add a comment here"
117 comment: "Add a comment here"
132 comment: "Add a comment here"
149 comment: "Add a comment here"
[all …]
Dknown_diffs15000.prototxt10 comment: "Add a comment here"
25 comment: "Add a comment here"
40 comment: "Add a comment here"
55 comment: "Add a comment here"
70 comment: "Add a comment here"
87 comment: "Add a comment here"
102 comment: "Add a comment here"
117 comment: "Add a comment here"
132 comment: "Add a comment here"
147 comment: "Add a comment here"
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/
DInvariantDeviceProfile.java305 .reduce(0, (a, b) -> a | b); in getDeviceType()
652 Collections.sort(points, (a, b) -> in invDistWeightedInterpolate()
653 Float.compare(dist(width, height, a.minWidthDps, a.minHeightDps), in invDistWeightedInterpolate()
807 TypedArray a = context.obtainStyledAttributes( in GridOption() local
809 name = a.getString(R.styleable.GridDisplayOption_name); in GridOption()
810 numRows = a.getInt(R.styleable.GridDisplayOption_numRows, 0); in GridOption()
811 numColumns = a.getInt(R.styleable.GridDisplayOption_numColumns, 0); in GridOption()
812 numSearchContainerColumns = a.getInt( in GridOption()
815 dbFile = a.getString(R.styleable.GridDisplayOption_dbFile); in GridOption()
816 defaultLayoutId = a.getResourceId( in GridOption()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyStylesSet.java62 public String[] getStringArray(final TypedArray a, final int index) { in getStringArray() argument
63 return parseStringArray(a, index); in getStringArray()
68 public String getString(final TypedArray a, final int index) { in getString() argument
69 return parseString(a, index); in getString()
73 public int getInt(final TypedArray a, final int index, final int defaultValue) { in getInt() argument
74 return a.getInt(index, defaultValue); in getInt()
78 public int getFlags(final TypedArray a, final int index) { in getFlags() argument
79 return a.getInt(index, 0); in getFlags()
98 public String[] getStringArray(final TypedArray a, final int index) { in getStringArray() argument
99 if (a.hasValue(index)) { in getStringArray()
[all …]
/packages/modules/Bluetooth/system/gd/packet/parser/doc/
Dreference.md18 | [x-y] | [`a`-`z`] | Any of the characters in the range from x to y …
42 The structure of a `.pdl`file is:
50 // Brew a coffee
59 - Identifiers can denote a field; an enumeration tag; or a declared type.
61 - Field identifiers declared in a [packet](#packet) (resp. [struct](#struct)) belong to the _scope_…
64 - Field identifiers declared in a [group](#group) belong to the _scope_ that
65 extends to the packets declaring a [group field](#group_field) for this group.
82 A *declaration* defines a type inside a `.pdl` file. A declaration can reference
87 - a [Packet](#packet) declaration
88 - a [Struct](#struct) declaration
[all …]
/packages/modules/NeuralNetworks/common/cpu_operations/
DReduce.cpp106 return compute<_Float16>(context, 1, [](_Float16 a, _Float16 b) -> _Float16 { in executeProd() argument
108 if (a == 0 || b == 0) return 0; in executeProd()
109 return a * b; in executeProd()
112 return compute<float>(context, 1, [](float a, float b) -> float { in executeProd() argument
114 if (a == 0 || b == 0) return 0; in executeProd()
115 return a * b; in executeProd()
125 return compute<_Float16>(context, 0, [](_Float16 a, _Float16 b) { return a + b; }); in executeSum() argument
127 return compute<float>(context, 0, [](float a, float b) { return a + b; }); in executeSum() argument
137 [](_Float16 a, _Float16 b) { return std::max(a, b); }); in executeMax() argument
140 [](float a, float b) { return std::max(a, b); }); in executeMax() argument
[all …]
/packages/modules/NeuralNetworks/runtime/test/android_fuzzing/
DREADME.md5 2. [Preparing a device](#preparing_a_device)
19 # Background <a id="background"></a>
21 This document seeks to be a crash-course and cheat-sheet for running the NNAPI
33 which tests at the NNAPI NDK layer (testing libneuralnetworks as a static
37 defines an NNAPI fuzzing test harness and packages it in a blueprint default
53 # Setting up the test <a id="setting_up_the_test"></a>
55 ## Developing an NNAPI fuzz test <a id="developing_an_nnapi_fuzz_test"></a>
57 ### Creating a new fuzz test using `libneuralnetworks_fuzzer_defaults`
59 To create a new fuzz test:
62 2. Create a blueprint `cc_fuzz` target that includes
[all …]

12345678910>>...64