Home
last modified time | relevance | path

Searched refs:n (Results 1 – 25 of 878) sorted by relevance

12345678910>>...36

/frameworks/ml/nn/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 …]
Dunittest.txt8 Application n/a 0.46 1.77 n/a n/a 6.58 …
11 Driver 1.04 - 1779.21 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 1.46 0.01 n/a n/a 2.54 …
26 Driver - - - n/a n/a n/a …
31 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
Dold.txt8 …ication n/a n/a n/a n/a n/a n/a …
11 Driver 0.06 - 69.54 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…
Dcpu.txt8 Application n/a n/a n/a n/a n/a n/a …
11 Driver 0.90 - - n/a n/a n/a …
16 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
Dhdrnet.txt8 Application n/a n/a n/a n/a n/a n/a …
11 Driver 0.91 - 204.60 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…
/frameworks/base/core/java/android/hardware/
DGeomagneticField.java198 for (int n = 1; n < MAX_N; n++) { in GeomagneticField()
199 for (int m = 0; m <= n; m++) { in GeomagneticField()
201 float g = G_COEFF[n][m] + yearsSinceBase * DELTA_G[n][m]; in GeomagneticField()
202 float h = H_COEFF[n][m] + yearsSinceBase * DELTA_H[n][m]; in GeomagneticField()
209 gcX += relativeRadiusPower[n+2] in GeomagneticField()
211 * legendre.mPDeriv[n][m] in GeomagneticField()
212 * SCHMIDT_QUASI_NORM_FACTORS[n][m]; in GeomagneticField()
216 gcY += relativeRadiusPower[n+2] * m in GeomagneticField()
218 * legendre.mP[n][m] in GeomagneticField()
219 * SCHMIDT_QUASI_NORM_FACTORS[n][m] in GeomagneticField()
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Drate_control.cpp60 Int n; in RC_Initialize() local
62 for (n = 0; n < numLayers; n++) in RC_Initialize()
65 rc[n]->fine_frame_skip = encParams->FineFrameSkip_Enabled; in RC_Initialize()
66 rc[n]->no_frame_skip = encParams->NoFrameSkip_Enabled; in RC_Initialize()
67 rc[n]->no_pre_skip = encParams->NoPreSkip_Enabled; in RC_Initialize()
68 rc[n]->skip_next_frame = 0; /* must be initialized */ in RC_Initialize()
71 rc[n]->Bs = video->encParams->BufferSize[n]; in RC_Initialize()
72 rc[n]->TMN_W = 0; in RC_Initialize()
73 rc[n]->VBV_fullness = (Int)(rc[n]->Bs * 0.5); /* rc[n]->Bs */ in RC_Initialize()
74 rc[n]->encoded_frames = 0; in RC_Initialize()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dbytestream.cc40 void ByteSource::CopyTo(ByteSink* sink, size_t n) { in CopyTo() argument
41 while (n > 0) { in CopyTo()
47 std::size_t fragment_size = std::min<std::size_t>(n, fragment.size()); in CopyTo()
50 n -= fragment_size; in CopyTo()
56 void UncheckedArrayByteSink::Append(const char* data, size_t n) { in Append() argument
59 GOOGLE_DCHECK(!(dest_ <= data && data < (dest_ + n))) in Append()
61 memcpy(dest_, data, n); in Append()
63 dest_ += n; in Append()
70 void CheckedArrayByteSink::Append(const char* bytes, size_t n) { in Append() argument
72 if (n > available) { in Append()
[all …]
Dfastmem.h65 inline bool memeq(const char* a, const char* b, size_t n) { in memeq() argument
66 size_t n_rounded_down = n & ~static_cast<size_t>(7); in memeq()
68 return memcmp(a, b, n) == 0; in memeq()
72 uint64 v = GOOGLE_UNALIGNED_LOAD64(a + n - 8) ^ GOOGLE_UNALIGNED_LOAD64(b + n - 8); in memeq()
78 n = n_rounded_down - 8; in memeq()
79 if (n > 128) { in memeq()
83 return memcmp(a, b, n) == 0; in memeq()
85 for (; n >= 16; n -= 16) { in memeq()
95 return n == 0 || GOOGLE_UNALIGNED_LOAD64(a) == GOOGLE_UNALIGNED_LOAD64(b); in memeq()
98 inline int fastmemcmp_inlined(const char *a, const char *b, size_t n) { in fastmemcmp_inlined() argument
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DMatrix.java23 public final int n; field in Matrix
34 n = rows; in Matrix()
49 n = (values.length + stride - 1) / stride; in Matrix()
52 if (mem.length != n * m) throw new IllegalArgumentException(); in Matrix()
61 n = that.n; in Matrix()
78 if (!(0 <= i && i < n && 0 <= j && j < m)) throw new IndexOutOfBoundsException(); in get()
91 if (!(0 <= i && i < n && 0 <= j && j < m)) throw new IndexOutOfBoundsException(); in put()
103 return plus(that, new Matrix(n, m)); in plus()
116 if (!(this.n == that.n && this.m == that.m && this.n == result.n && this.m == result.m)) { in plus()
133 return minus(that, new Matrix(n, m)); in minus()
[all …]
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
DVectorArithmetic.h35 LVM_INT16 n );
39 LVM_INT16 n );
43 LVM_INT16 n );
49 LVM_INT16 n );
63 LVM_INT16 n );
78 LVM_INT16 n);
83 LVM_INT16 n);
97 LVM_INT16 n);
104 LVM_INT16 n) ; /* Number of stereo samples */
111 LVM_INT16 n);
[all …]
/frameworks/base/core/java/android/text/format/
DTime.java269 int n = DAYS_PER_MONTH[this.month]; in getActualMaximum() local
270 if (n != 28) { in getActualMaximum()
271 return n; in getActualMaximum()
432 int n = getChar(s, 0, 1000); in parseInternal() local
433 n += getChar(s, 1, 100); in parseInternal()
434 n += getChar(s, 2, 10); in parseInternal()
435 n += getChar(s, 3, 1); in parseInternal()
436 year = n; in parseInternal()
439 n = getChar(s, 4, 10); in parseInternal()
440 n += getChar(s, 5, 1); in parseInternal()
[all …]
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
DNotificationTestList.java124 Notification n = new Notification.Builder(NotificationTestList.this,
129 mNM.notify(7001, n);
136 Notification n = new Notification.Builder(NotificationTestList.this,
141 mNM.notify("default", 7004, n);
154 Notification n = new Notification.Builder(NotificationTestList.this,
159 mNM.notify("default", 7004, n);
171 Notification n = new Notification.Builder(NotificationTestList.this, "min")
176 mNM.notify(6000, n);
177 n = new Notification.Builder(NotificationTestList.this, "low")
182 mNM.notify(6001, n);
[all …]
/frameworks/av/media/libstagefright/foundation/
DABitReader.cpp54 uint32_t ABitReader::getBits(size_t n) { in getBits() argument
56 CHECK(getBitsGraceful(n, &ret)); in getBits()
60 uint32_t ABitReader::getBitsWithFallback(size_t n, uint32_t fallback) { in getBitsWithFallback() argument
62 (void)getBitsGraceful(n, &ret); in getBitsWithFallback()
66 bool ABitReader::getBitsGraceful(size_t n, uint32_t *out) { in getBitsGraceful() argument
67 if (n > 32) { in getBitsGraceful()
72 while (n > 0) { in getBitsGraceful()
79 size_t m = n; in getBitsGraceful()
88 n -= m; in getBitsGraceful()
95 bool ABitReader::skipBits(size_t n) { in skipBits() argument
[all …]
/frameworks/base/core/java/android/net/
DNetworkFactory.java267 NetworkRequestInfo n = mNetworkRequests.get(request.requestId); in handleAddRequest() local
268 if (n == null) { in handleAddRequest()
273 n = new NetworkRequestInfo(request, score, servingFactorySerialNumber); in handleAddRequest()
274 mNetworkRequests.put(n.request.requestId, n); in handleAddRequest()
280 n.score = score; in handleAddRequest()
281 n.factorySerialNumber = servingFactorySerialNumber; in handleAddRequest()
285 evalRequest(n); in handleAddRequest()
290 NetworkRequestInfo n = mNetworkRequests.get(request.requestId); in handleRemoveRequest() local
291 if (n != null) { in handleRemoveRequest()
293 if (n.requested) releaseNetworkFor(n.request); in handleRemoveRequest()
[all …]
/frameworks/base/tests/JankBench/scripts/external/
Dstatistics.py155 n, d = _exact_ratio(start)
156 partials = {d: n}
161 for n,d in map(_exact_ratio, values):
163 partials[d] = partials_get(d, 0) + n
172 total = sum(Fraction(n, d) for d, n in sorted(partials.items()))
328 n = len(data)
329 if n < 1:
332 assert count == n
333 return _convert(total/n, T)
351 n = len(data)
[all …]
/frameworks/av/media/libstagefright/webm/
DEbmlUtil.cpp38 uint64_t highestOneBit(uint64_t n) { in highestOneBit() argument
39 n |= (n >> 1); in highestOneBit()
40 n |= (n >> 2); in highestOneBit()
41 n |= (n >> 4); in highestOneBit()
42 n |= (n >> 8); in highestOneBit()
43 n |= (n >> 16); in highestOneBit()
44 n |= (n >> 32); in highestOneBit()
45 return n - (n >> 1); in highestOneBit()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/data/
DEuiccNotificationTest.java31 EuiccNotification n = in testEqualsHashCode() local
33 assertTrue(n.equals(n)); in testEqualsHashCode()
34 assertFalse(n.equals(new Object())); in testEqualsHashCode()
37 assertFalse(n.equals(t)); in testEqualsHashCode()
40 assertTrue(n.equals(t)); in testEqualsHashCode()
41 assertEquals(n.hashCode(), t.hashCode()); in testEqualsHashCode()
44 assertFalse(n.equals(t)); in testEqualsHashCode()
45 assertNotEquals(n.hashCode(), t.hashCode()); in testEqualsHashCode()
48 assertFalse(n.equals(t)); in testEqualsHashCode()
49 assertNotEquals(n.hashCode(), t.hashCode()); in testEqualsHashCode()
[all …]
/frameworks/rs/
DrsScriptGroup.cpp63 Node *n = mNodes[ct]; in findNode() local
64 for (size_t ct2=0; ct2 < n->mKernels.size(); ct2++) { in findNode()
65 if (n->mKernels[ct2]->mScript == s) { in findNode()
66 return n; in findNode()
74 bool ScriptGroup::calcOrderRecurse(Node *n, int depth) { in calcOrderRecurse() argument
75 n->mSeen = true; in calcOrderRecurse()
76 if (n->mOrder < depth) { in calcOrderRecurse()
77 n->mOrder = depth; in calcOrderRecurse()
81 for (size_t ct=0; ct < n->mOutputs.size(); ct++) { in calcOrderRecurse()
82 const Link *l = n->mOutputs[ct]; in calcOrderRecurse()
[all …]
/frameworks/av/media/libeffects/lvm/lib/Common/src/
DMixSoft_2St_D32C31_SAT.c34 LVM_INT16 n) in MixSoft_2St_D32C31_SAT() argument
37 if(n <= 0) return; in MixSoft_2St_D32C31_SAT()
44 MixSoft_1St_D32C31_WRA((Mix_1St_Cll_FLOAT_t*)pInstance, src1, dst, n); in MixSoft_2St_D32C31_SAT()
47 src2, dst, n); in MixSoft_2St_D32C31_SAT()
59 src2, dst, n); in MixSoft_2St_D32C31_SAT()
61 MixSoft_1St_D32C31_WRA((Mix_1St_Cll_FLOAT_t*) pInstance, src1, dst, n); in MixSoft_2St_D32C31_SAT()
63 Core_MixHard_2St_D32C31_SAT(pInstance, src1, src2, dst, n); in MixSoft_2St_D32C31_SAT()
71 LVM_INT16 n) in MixSoft_2St_D32C31_SAT() argument
74 if(n<=0) return; in MixSoft_2St_D32C31_SAT()
81 MixSoft_1St_D32C31_WRA( (Mix_1St_Cll_t*) pInstance, src1, dst, n); in MixSoft_2St_D32C31_SAT()
[all …]
DJoinTo2i_32x32.c31 LVM_INT16 n ) in JoinTo2i_32x32() argument
35 srcL += n-1; in JoinTo2i_32x32()
36 srcR += n-1; in JoinTo2i_32x32()
37 dst += ((2*n)-1); in JoinTo2i_32x32()
39 for (ii = n; ii != 0; ii--) in JoinTo2i_32x32()
56 LVM_INT16 n ) in JoinTo2i_Float() argument
60 srcL += n - 1; in JoinTo2i_Float()
61 srcR += n - 1; in JoinTo2i_Float()
62 dst += ((2 * n) - 1); in JoinTo2i_Float()
64 for (ii = n; ii != 0; ii--) in JoinTo2i_Float()
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
Dconvolve.c37 Word32 i, n; in Convolve() local
42 for (n = 0; n < 64;) in Convolve()
44 tmpH = h+n; in Convolve()
46 i=n+1; in Convolve()
56 y[n] = voround(L_shl(s, 1)); in Convolve()
57 n++; in Convolve()
59 tmpH = h+n; in Convolve()
61 i=n+1; in Convolve()
75 y[n] = voround(L_shl(s, 1)); in Convolve()
76 n++; in Convolve()
[all …]
/frameworks/base/core/java/android/os/
DHwBlob.java326 final int n = array.length; in wrapArray() local
327 Boolean[] wrappedArray = new Boolean[n]; in wrapArray()
328 for (int i = 0; i < n; ++i) { in wrapArray()
341 final int n = array.length; in wrapArray() local
342 Long[] wrappedArray = new Long[n]; in wrapArray()
343 for (int i = 0; i < n; ++i) { in wrapArray()
356 final int n = array.length; in wrapArray() local
357 Byte[] wrappedArray = new Byte[n]; in wrapArray()
358 for (int i = 0; i < n; ++i) { in wrapArray()
371 final int n = array.length; in wrapArray() local
[all …]
DRevocableFileDescriptor.java120 int n = 0;
121 while (n < size) {
123 n += Os.pread(mInner, data, n, size - n, offset + n);
126 n += e.bytesTransferred;
129 return n;
135 int n = 0;
136 while (n < size) {
138 n += Os.pwrite(mInner, data, n, size - n, offset + n);
141 n += e.bytesTransferred;
144 return n;
/frameworks/opt/calendar/src/com/android/calendarcommon2/
DDuration.java92 int n = 0; in parse() local
96 n *= 10; in parse()
97 n += ((int)(c-'0')); in parse()
100 weeks = n; in parse()
101 n = 0; in parse()
104 hours = n; in parse()
105 n = 0; in parse()
108 minutes = n; in parse()
109 n = 0; in parse()
112 seconds = n; in parse()
[all …]

12345678910>>...36