Home
last modified time | relevance | path

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

12345678910>>...16

/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 …]
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…
/packages/modules/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 …]
/packages/modules/DnsResolver/
Dgethnamaddr.cpp132 int n; in getanswer() local
177 n = dn_expand(answer->buf, eom, cp, bp, (int) (ep - bp)); in getanswer()
178 if ((n < 0) || !name_ok(bp)) goto no_recovery; in getanswer()
180 BOUNDED_INCR(n + QFIXEDSZ); in getanswer()
186 n = (int) strlen(bp) + 1; /* for the \0 */ in getanswer()
187 if (n >= MAXHOSTNAMELEN) goto no_recovery; in getanswer()
189 bp += n; in getanswer()
198 n = dn_expand(answer->buf, eom, cp, bp, (int) (ep - bp)); in getanswer()
199 if ((n < 0) || !name_ok(bp)) { in getanswer()
203 cp += n; /* name */ in getanswer()
[all …]
Dres_query.cpp111 int n; in res_nquery() local
120 n = res_nmkquery(QUERY, name, cl, type, /*data=*/nullptr, 0, buf, sizeof(buf), in res_nquery()
122 if (n > 0 && in res_nquery()
126 n = res_nopt(statp, n, buf, sizeof(buf), anslen); in res_nquery()
127 if (n <= 0) { in res_nquery()
130 return n; in res_nquery()
132 n = res_nsend(statp, buf, n, answer, anslen, &rcode, 0); in res_nquery()
133 if (n < 0) { in res_nquery()
168 return n; in res_nquery()
195 return n; in res_nquery()
[all …]
Dgetaddrinfo.cpp123 int n = 0; // result length member
849 int n; in getanswer() local
889 n = dn_expand(answer.data(), eom, cp, bp, ep - bp); in getanswer()
890 if ((n < 0) || !(*name_ok)(bp)) { in getanswer()
894 BOUNDED_INCR(n + QFIXEDSZ); in getanswer()
900 n = strlen(bp) + 1; /* for the \0 */ in getanswer()
901 if (n >= MAXHOSTNAMELEN) { in getanswer()
906 bp += n; in getanswer()
913 n = dn_expand(answer.data(), eom, cp, bp, ep - bp); in getanswer()
914 if ((n < 0) || !(*name_ok)(bp)) { in getanswer()
[all …]
/packages/apps/Gallery2/src/com/android/photos/data/
DSparseArrayBitmapPool.java85 private void unlinkAndRecycleNode(Node n, boolean recycleBitmap) { in unlinkAndRecycleNode() argument
87 if (n.prevInBucket != null) { in unlinkAndRecycleNode()
89 n.prevInBucket.nextInBucket = n.nextInBucket; in unlinkAndRecycleNode()
92 mStore.put(n.bitmap.getWidth(), n.nextInBucket); in unlinkAndRecycleNode()
94 if (n.nextInBucket != null) { in unlinkAndRecycleNode()
96 n.nextInBucket.prevInBucket = n.prevInBucket; in unlinkAndRecycleNode()
100 if (n.prevInPool != null) { in unlinkAndRecycleNode()
102 n.prevInPool.nextInPool = n.nextInPool; in unlinkAndRecycleNode()
105 mPoolNodesHead = n.nextInPool; in unlinkAndRecycleNode()
107 if (n.nextInPool != null) { in unlinkAndRecycleNode()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DUtils.java52 for (int n = 0; n < s.length(); n++) { in parseMac()
53 int nibble = Utils.fromHex(s.charAt(n), true); // Set lenient to not blow up on ':' in parseMac()
69 for (int n = (len - 1)*Byte.SIZE; n >= 0; n -= Byte.SIZE) { in macToString()
76 sb.append(String.format("%02x", (mac >>> n) & Constants.BYTE_MASK)); in macToString()
86 for (int n = 0; n < PLMNText.length; n++ ) { in getMccMnc()
87 String expect = PLMNText[n]; in getMccMnc()
89 if (!domain.get(n).regionMatches(0, expect, 0, len)) { in getMccMnc()
95 for (int n = 0; n < prefix.length(); n++) { in getMccMnc()
96 char ch = prefix.charAt(n); in getMccMnc()
135 for (int n = 0; n < s.length(); n++) { in toUnicodeEscapedString()
[all …]
/packages/apps/WallpaperPicker/src/com/android/gallery3d/common/
DUtils.java41 public static int nextPowerOf2(int n) { in nextPowerOf2() argument
42 if (n <= 0 || n > (1 << 30)) throw new IllegalArgumentException("n is invalid: " + n); in nextPowerOf2()
43 n -= 1; in nextPowerOf2()
44 n |= n >> 16; in nextPowerOf2()
45 n |= n >> 8; in nextPowerOf2()
46 n |= n >> 4; in nextPowerOf2()
47 n |= n >> 2; in nextPowerOf2()
48 n |= n >> 1; in nextPowerOf2()
49 return n + 1; in nextPowerOf2()
55 public static int prevPowerOf2(int n) { in prevPowerOf2() argument
[all …]
/packages/modules/NeuralNetworks/runtime/
DExecutionBuilder.cpp203 int n; in setInput() local
204 std::tie(n, mInputs[index]) = ModelArgumentInfo::createFromPointer( in setInput()
208 return n; in setInput()
251 int n; in setInputFromMemory() local
252 std::tie(n, mInputs[index]) = in setInputFromMemory()
256 return n; in setInputFromMemory()
285 int n; in setOutput() local
286 std::tie(n, mOutputs[index]) = ModelArgumentInfo::createFromPointer( in setOutput()
289 return n; in setOutput()
331 int n; in setOutputFromMemory() local
[all …]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
DUtils.java79 public static int nextPowerOf2(int n) { in nextPowerOf2() argument
80 if (n <= 0 || n > (1 << 30)) throw new IllegalArgumentException("n is invalid: " + n); in nextPowerOf2()
81 n -= 1; in nextPowerOf2()
82 n |= n >> 16; in nextPowerOf2()
83 n |= n >> 8; in nextPowerOf2()
84 n |= n >> 4; in nextPowerOf2()
85 n |= n >> 2; in nextPowerOf2()
86 n |= n >> 1; in nextPowerOf2()
87 return n + 1; in nextPowerOf2()
93 public static int prevPowerOf2(int n) { in prevPowerOf2() argument
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
DPhonebookEntry.java43 Name n = ((Name) o); in equals() local
44 return (Objects.equals(family, n.family) || family != null && family.equals(n.family)) in equals()
45 && (Objects.equals(given, n.given) || given != null && given.equals(n.given)) in equals()
46 && (Objects.equals(middle, n.middle) || middle != null && middle.equals( in equals()
47 n.middle)) && (Objects.equals(prefix, n.prefix) in equals()
48 || prefix != null && prefix.equals(n.prefix)) && ( in equals()
49 Objects.equals(suffix, n.suffix) || suffix != null && suffix.equals(n.suffix)); in equals()
128 VCardEntry.NameData n = v.getNameData(); in PhonebookEntry() local
129 name.family = n.getFamily(); in PhonebookEntry()
130 name.given = n.getGiven(); in PhonebookEntry()
[all …]
/packages/providers/MediaProvider/src/com/android/providers/media/util/
DRedactingFileDescriptor.java157 int n = 0;
158 while (n < size) {
160 final int res = Os.pread(mInnerFd, data, n, size - n, offset + n);
164 n += res;
167 n += e.bytesTransferred;
189 return n;
194 int n = 0;
195 while (n < size) {
197 final int res = Os.pwrite(mInnerFd, data, n, size - n, offset + n);
201 n += res;
[all …]
/packages/modules/ExtServices/java/tests/src/android/ext/services/notification/
DNotificationEntryTest.java76 Notification n = new Notification.Builder(mContext, channelId) in generateSbn() local
80 return new StatusBarNotification(mPkg, mPkg, 0, "tag", mUid, mUid, 0, n, in generateSbn()
85 Notification n = new Notification.Builder(mContext, channelId) in generateSbn() local
89 return new StatusBarNotification(packageName, packageName, 0, "tag", mUid, mUid, 0, n, in generateSbn()
93 private StatusBarNotification generateSbn(Notification n) { in generateSbn() argument
94 return new StatusBarNotification(mPkg, mPkg, 0, "tag", mUid, mUid, 0, n, in generateSbn()
153 Notification n = new Notification.Builder(mContext, channel.getId()) in testIsInboxStyle() local
157 mContext, mPackageManager, generateSbn(n), channel, mSmsHelper); in testIsInboxStyle()
165 Notification n = new Notification.Builder(mContext, channel.getId()) in testIsMessagingStyle() local
169 mContext, mPackageManager, generateSbn(n), channel, mSmsHelper); in testIsMessagingStyle()
[all …]
/packages/apps/Settings/src/com/android/settings/notification/history/
DNotificationStation.java310 private static String getTitleString(Notification n) { in getTitleString() argument
312 if (n.extras != null) { in getTitleString()
313 title = n.extras.getCharSequence(Notification.EXTRA_TITLE); in getTitleString()
321 private static String getTextString(Context appContext, Notification n) { in getTextString() argument
323 if (n.extras != null) { in getTextString()
324 text = n.extras.getCharSequence(Notification.EXTRA_TEXT); in getTextString()
326 Notification.Builder nb = Notification.Builder.recoverBuilder(appContext, n); in getTextString()
339 text = n.extras.getCharSequence(Notification.EXTRA_TEXT); in getTextString()
406 final Notification n = sbn.getNotification(); in createFromSbn() local
417 info.title = getTitleString(n); in createFromSbn()
[all …]
/packages/modules/NeuralNetworks/runtime/test/fibonacci_extension/
DFibonacciDriver.cpp81 int64_t n; in prepare() local
83 n = static_cast<int64_t>(context->getInputValue<float>(kInputN)); in prepare()
85 n = context->getInputValue<int64_t>(kInputN); in prepare()
87 NN_RET_CHECK_GE(n, 1); in prepare()
89 output.dimensions = {static_cast<uint32_t>(n)}; in prepare()
94 bool compute(int32_t n, ScaleT outputScale, ZeroPointT outputZeroPoint, OutputT* output) { in compute() argument
96 if (n >= 1) { in compute()
99 if (n >= 2) { in compute()
102 if (n >= 3) { in compute()
103 for (int32_t i = 2; i < n; ++i) { in compute()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DMoreKeysKeyboard.java156 /* package */int getColumnPos(final int n) { in getColumnPos() argument
157 return mIsMoreKeysFixedOrder ? getFixedOrderColumnPos(n) : getAutomaticColumnPos(n); in getColumnPos()
160 private int getFixedOrderColumnPos(final int n) { in getFixedOrderColumnPos() argument
161 final int col = n % mNumColumns; in getFixedOrderColumnPos()
162 final int row = n / mNumColumns; in getFixedOrderColumnPos()
180 private int getAutomaticColumnPos(final int n) { in getAutomaticColumnPos() argument
181 final int col = n % mNumColumns; in getAutomaticColumnPos()
182 final int row = n / mNumColumns; in getAutomaticColumnPos()
234 public int getX(final int n, final int row) { in getX() argument
235 final int x = getColumnPos(n) * mColumnWidth + getDefaultKeyCoordX(); in getX()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DSplineMath.java7 SplineMath(int n) { in SplineMath() argument
8 mPoints = new double[n][2]; in SplineMath()
17 public float[][] calculatetCurve(int n) { in calculatetCurve() argument
18 float[][] curve = new float[n][2]; in calculatetCurve()
113 int n = points.length; in solveSystem() local
114 double[][] system = new double[n][3]; in solveSystem()
115 double[] result = new double[n]; // d in solveSystem()
116 double[] solution = new double[n]; // returned coefficients in solveSystem()
118 system[n - 1][1] = 1; in solveSystem()
125 for (int i = 1; i < n - 1; i++) { in solveSystem()
[all …]
/packages/apps/DocumentsUI/tests/res/raw/
Dimages_tar10 …��Z��O���U��5�T ��L|����{�I��Y�S;�T�A��ZY}����<c�uϠ� ��j�ڭ x�Βή!n�%c�PA/�����.���*…
12 ̇�n�Z���e�o��
14 …����=���ϋ������+�ar� � f����Go�'�5���vb�E�%X_�k.�d�G�����n�����n@d}5NWH���L �y];�n�v�b��…
17 …Q����z+�Ȫk O�q����:$B�_�;��䶢���o�s�e}�J�)��h)ΞD[�&Z�/��gY�MN7���n��p��4G|����P���7= ��…
19 …t�37��A�K�R�|��P�j<i��d�č%��&g��S���0��WaLB9�[%_��֦I��V2XOH�.�T_��v9��n�U4k�2���s�DmD�D��|/…
23 4���gFHS�$/iՙ'��?PЈ50�z�qЗ�Z7�b�M��iodHc�n�����)�oh�ho�jO���lW���$��zQ`�l���ךI��*��Q
27 …���Kט&g፿n|o��� ��ºϺ�4����Y����J@��B0-n�M�b˄�vu���>E�㖳a�p�}���oE����cK�67�Z?��F�D�=…
30 …�:r������a�Y����t[.���~a�����Z,ᣬ@j<Z�:� ���4)t����̷nW(�}�� {�s��O�!86����9�EG�A��5��n@υ…
41 �Zko�#�2�eOV0� �n��<��`mA��^�P1("=>�$B"�1$���v%�ʦ��F~ o�_$(��:QcG<Pm�w֥�A�:��d��rV�����7
45 ,�|��-�j��%b ���G��Z0�s��,�g4�Y��7�?�P�\����•��%�h贵��$��"�r�t���)�u�9��r�Y���n��&@�ܜ�˜�…
/packages/inputmethods/LatinIME/dictionaries/
Dtr_wordlist.combined.gz1dictionary=main:tr,locale=tr,description=Türkçe,date=1414726261, ...
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DPath.java113 int n = 0; in split() local
115 n++; in split()
117 String[] segments = new String[n]; in split()
118 int i = n - 1; in split()
127 int n = s.length(); in split() local
128 if (n == 0) return new String[0]; in split()
134 while (i < n) { in split()
137 for (j = i; j < n; j++) { in split()
157 int n = s.length(); in splitSequence() local
158 if (s.charAt(0) != '{' || s.charAt(n-1) != '}') { in splitSequence()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
DGLES11IdImpl.java38 public void glGenBuffers(int n, int[] buffers, int offset) { in glGenBuffers() argument
40 while (n-- > 0) { in glGenBuffers()
41 buffers[offset + n] = sNextId++; in glGenBuffers()
47 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) { in glDeleteTextures() argument
49 gl.glDeleteTextures(n, textures, offset); in glDeleteTextures()
54 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { in glDeleteBuffers() argument
56 gl.glDeleteBuffers(n, buffers, offset); in glDeleteBuffers()
61 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { in glDeleteFramebuffers() argument
63 gl11ep.glDeleteFramebuffersOES(n, buffers, offset); in glDeleteFramebuffers()

12345678910>>...16