Home
last modified time | relevance | path

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

12345678910>>...17

/packages/apps/Camera/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 …]
Ddb_utilities_poly.h39 inline void db_SolveQuadratic(double *roots,int *nr_roots,double a,double b,double c) in db_SolveQuadratic() argument
45 if(a==0.0) in db_SolveQuadratic()
56 rs=b*b-4.0*a*c; in db_SolveQuadratic()
62 roots[0]=q/a; in db_SolveQuadratic()
79 DB_API void db_SolveCubic(double *roots,int *nr_roots,double a,double b,double c,double d);
84 DB_API void db_SolveQuartic(double *roots,int *nr_roots,double a,double b,double c,double d,double …
89 DB_API void db_SolveQuarticForced(double *roots,int *nr_roots,double a,double b,double c,double d,d…
96 inline void db_MultiplyPoly1_1(double *d,const double *a,const double *b) in db_MultiplyPoly1_1() argument
100 a0=a[0];a1=a[1]; in db_MultiplyPoly1_1()
108 inline void db_MultiplyPoly0_2(double *d,const double *a,const double *b) in db_MultiplyPoly0_2() argument
[all …]
/packages/apps/Camera2/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 …]
Ddb_utilities_poly.h39 inline void db_SolveQuadratic(double *roots,int *nr_roots,double a,double b,double c) in db_SolveQuadratic() argument
45 if(a==0.0) in db_SolveQuadratic()
56 rs=b*b-4.0*a*c; in db_SolveQuadratic()
62 roots[0]=q/a; in db_SolveQuadratic()
79 DB_API void db_SolveCubic(double *roots,int *nr_roots,double a,double b,double c,double d);
84 DB_API void db_SolveQuartic(double *roots,int *nr_roots,double a,double b,double c,double d,double …
89 DB_API void db_SolveQuarticForced(double *roots,int *nr_roots,double a,double b,double c,double d,d…
96 inline void db_MultiplyPoly1_1(double *d,const double *a,const double *b) in db_MultiplyPoly1_1() argument
100 a0=a[0];a1=a[1]; in db_MultiplyPoly1_1()
108 inline void db_MultiplyPoly0_2(double *d,const double *a,const double *b) in db_MultiplyPoly0_2() argument
[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 …]
Ddb_utilities_poly.h39 inline void db_SolveQuadratic(double *roots,int *nr_roots,double a,double b,double c) in db_SolveQuadratic() argument
45 if(a==0.0) in db_SolveQuadratic()
56 rs=b*b-4.0*a*c; in db_SolveQuadratic()
62 roots[0]=q/a; in db_SolveQuadratic()
79 DB_API void db_SolveCubic(double *roots,int *nr_roots,double a,double b,double c,double d);
84 DB_API void db_SolveQuartic(double *roots,int *nr_roots,double a,double b,double c,double d,double …
89 DB_API void db_SolveQuarticForced(double *roots,int *nr_roots,double a,double b,double c,double d,d…
96 inline void db_MultiplyPoly1_1(double *d,const double *a,const double *b) in db_MultiplyPoly1_1() argument
100 a0=a[0];a1=a[1]; in db_MultiplyPoly1_1()
108 inline void db_MultiplyPoly0_2(double *d,const double *a,const double *b) in db_MultiplyPoly0_2() argument
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyStylesSet.java54 public String[] getStringArray(final TypedArray a, final int index) { in getStringArray() argument
55 return parseStringArray(a, index); in getStringArray()
59 public String getString(final TypedArray a, final int index) { in getString() argument
60 return parseString(a, index); in getString()
64 public int getInt(final TypedArray a, final int index, final int defaultValue) { in getInt() argument
65 return a.getInt(index, defaultValue); in getInt()
69 public int getFlags(final TypedArray a, final int index) { in getFlags() argument
70 return a.getInt(index, 0); in getFlags()
87 public String[] getStringArray(final TypedArray a, final int index) { in getStringArray() argument
88 if (a.hasValue(index)) { in getStringArray()
[all …]
/packages/apps/Camera2/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile4 # doxygen (www.doxygen.org) for a project
6 # All text after a hash (#) is considered a comment and will be ignored
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
38 # If a relative path is entered, it will be relative to the location
46 # Enabling this option can be useful when feeding doxygen a huge amount of
73 # the brief description of a member or function before the detailed description.
79 # This tag implements a quasi-intelligent brief description abbreviator
87 # "represents" "a" "an" "the"
97 a \
[all …]
/packages/apps/Camera/jni/feature_stab/doc/
Ddbreg_API_doxyfile4 # doxygen (www.doxygen.org) for a project
6 # All text after a hash (#) is considered a comment and will be ignored
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
38 # If a relative path is entered, it will be relative to the location
46 # Enabling this option can be useful when feeding doxygen a huge amount of
73 # the brief description of a member or function before the detailed description.
79 # This tag implements a quasi-intelligent brief description abbreviator
87 # "represents" "a" "an" "the"
97 a \
[all …]
/packages/apps/Camera2/jni/feature_stab/doc/
Ddbreg_API_doxyfile4 # doxygen (www.doxygen.org) for a project
6 # All text after a hash (#) is considered a comment and will be ignored
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
38 # If a relative path is entered, it will be relative to the location
46 # Enabling this option can be useful when feeding doxygen a huge amount of
73 # the brief description of a member or function before the detailed description.
79 # This tag implements a quasi-intelligent brief description abbreviator
87 # "represents" "a" "an" "the"
97 a \
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile4 # doxygen (www.doxygen.org) for a project
6 # All text after a hash (#) is considered a comment and will be ignored
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
38 # If a relative path is entered, it will be relative to the location
46 # Enabling this option can be useful when feeding doxygen a huge amount of
73 # the brief description of a member or function before the detailed description.
79 # This tag implements a quasi-intelligent brief description abbreviator
87 # "represents" "a" "an" "the"
97 a \
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile4 # doxygen (www.doxygen.org) for a project
6 # All text after a hash (#) is considered a comment and will be ignored
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
38 # If a relative path is entered, it will be relative to the location
46 # Enabling this option can be useful when feeding doxygen a huge amount of
73 # the brief description of a member or function before the detailed description.
79 # This tag implements a quasi-intelligent brief description abbreviator
87 # "represents" "a" "an" "the"
97 a \
[all …]
/packages/apps/Camera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile4 # doxygen (www.doxygen.org) for a project
6 # All text after a hash (#) is considered a comment and will be ignored
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
38 # If a relative path is entered, it will be relative to the location
46 # Enabling this option can be useful when feeding doxygen a huge amount of
73 # the brief description of a member or function before the detailed description.
79 # This tag implements a quasi-intelligent brief description abbreviator
87 # "represents" "a" "an" "the"
97 a \
[all …]
/packages/apps/Camera2/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/apps/Camera/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/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/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DKeyboard.java196 TypedArray a = res.obtainAttributes(Xml.asAttributeSet(parser), in Row() local
198 defaultWidth = getDimensionOrFraction(a, in Row()
201 defaultHeight = getDimensionOrFraction(a, in Row()
204 defaultHorizontalGap = getDimensionOrFraction(a, in Row()
207 verticalGap = getDimensionOrFraction(a, in Row()
210 a.recycle(); in Row()
211 a = res.obtainAttributes(Xml.asAttributeSet(parser), in Row()
213 rowEdgeFlags = a.getInt(android.R.styleable.Keyboard_Row_rowEdgeFlags, 0); in Row()
214 mode = a.getResourceId(android.R.styleable.Keyboard_Row_keyboardMode, in Row()
329 TypedArray a = res.obtainAttributes(Xml.asAttributeSet(parser), in Key() local
[all …]
/packages/apps/Camera/perftests/panorama/input/
Dtest_011.ppm45 …~eb������;�D E� C�V#*a/6׽����������������������������������������������������������������������…
120 _EHxabZCD6"'�7 <��% ���kQS�&;Ag'6a!,K A� M
122 …�#��%��������� ��7�P < 6 ) H*)B!&8R*1F&�� �%�����) �%a>C�mq[8=Q.36����…
128 …�������������������������������������������������������������B1,J:4SF-ZM4pk?a[0fg:lm?[d5 � �*�'…
233 5��1��Z%x<C/�AD BF ӭ�ԛ�a(.b�_�B��n,f",;�?�B�/��*��0��A 6��4��?��A��X� mk!�/A߼���켬…
257 Y![#a'O K
283  PEFuvn^a"��
322 ��<#8#(1 !B01:--7**3*)0(';31 RHFp`a}mnwfgsab��lnF/3B*.L37;!&w]a�fkD&,M/5<#M/5]>D% H'.…
372 …������%��!��*� ��&��#������'�/ /�= = 0�A/�%��(��-��a(0}LP�aetKK"����*�?V*,)�F…
413 …������������������������������嚔����������������������������̲�����fm}SZwCK/�a/6T")/ wLQ����������…
[all …]
Dtest_008.ppm159 Z�X� Ta#�BMJ
200 V� e f a
249 J",u?MT-a#6u7Ja3A�Yg�����������������������������������������������Ж��fX__AIeFO˨��ov%�& 3 , 8…
374 84 0,��-��?��D��V��`� aX��6A*(='%C(-eJOK*1388F(6oHQ4 O,30
385 ?BqW[hMRw]a����_hY1;?")� )
451 d�a�Z�X�D��C��I
453 4��D�`�
454 a�[� ]�
503 …>IB;?810(%3*'=31SIH ��4!'<)/�������� �����: &�_5A�ptsJM;- =!a>E>"b?FvYX?"!F1%VA4J…
551  a[Y���aX[- "')#(
[all …]
Dtest_003.ppm35 ^"O Z_ m#i P aO
36 A�6�%��"��^36P,-)�������������� ����������.H(tES|M[, a:Aâ�R16bIKfhYHFzhgQ:;lTV…
81 …��������%���������)�0 vHSС��`h�x�hEL8_HKM6:p`aƶ�aMPZFIR;>;#' ������#F#*I#,a<DF…
225 a
280 1 3�-��(��3�BMl&4a)h .XKC�WQ B��O
322 �#�, &�6S!,�PX�t|�doi)5>�>�H�S ]"]"�.>a
327 � [AJSBE�����������������������������������������������������������ۢ���z��v~a=IF".[.=pCRM
362 D�C�ia�Y� S�C X!L!A0
413 X.:`6B(() =&V5>fEO���pPY(a=I�qxTb^i��͠�nMTD#*�gn���em���¢�dogKWƮ������������ŏ��0% …
449 …���E4:C17�����������������������������������������������������ŊgpmJS�VbO)Jp6Ef .`(b#.a"-,�'��,
Dtest_006.ppm101 …��������������������������ç����������ә���v}ֻ���ʂ`l�lwJ(48"E*4������gmi g a�#8�nqغ������������…
137 ;C!��#��X a!)_
138 ba^
139 al
191 �� ������6��:�H ;��/��L a"*J zXY�`a�lp�qvTDE������aMPiPT`FKE,0"
294 f�a
330 ��8"' ��H)/�^a:?.��0��3��W��_�g� d�]� S��P
344 he�i� b�a�]�W�V�eMJ� XYm�
444 ��� 5.#a`PJI8{{q������FHC60.tnl���qa`ZDB,I15T=AtT_�z�K'36#
459 o&.q(0{*5V^�_�[��_�b� o v%w&g^a R�;��;��I��R�v54����SZC��M�J������õz}>d� a�d
Dtest_007.ppm48 …�������������������������������˷�����������������������vR^^5C`7E, [18������a`d#�~�ɽ���������…
120 *��1�?< )(�C: 8 1 5= Ca-4= (��*��.�&��(���
130 ! ><3) �/> ��Q'.nDK;!��<K#*a<B0 . ;��������-A&(*
179 7185 A7 5��4��:��B��Z a ZK�SO:
188 Xm&e%?��E� ] h*p#3M�H��O��V�a�d� d�b�V� �bo��Ԑsq����&�7`,4l7?J#&7;6dCJ�gn(
241 "���#��4 <�:�_aa
246 if�i ae`f� d� h�g�d�e�`�b�Y� ]uDB��~�mp5
249 Y(.�����Ɖot׽����м�mi[IEL88���p`a��������������沤�����}�K8>,(J7=�|���������������������������ನ�…
339 4�-��< T%.��#��(��B��H�e� a� i�
483 ' ����������������� �#��%��%��#��"��%��544��CR J�6��B3��HL =�<�DQ…
[all …]
Dtest_012.ppm60 …�Q�Q�HB�-�HiED#��X43Y54T56.� �������!��� ��"��O; /��-��a"*W <�?�IL ?
98 3a/6W'R"O)vAQx>Pz?Q�u�������������������������������������������������������������������������…
134 )��63D&)O,0F#(:73 L")a??iHH6
273 ; IW*g*�;Fp(4i!-o*_ X L� '��= L a-5JA 4.�11(����'����*��8��x
387 P!E;::I=F3��/��H�P�
388 a�d�Z�X�A
410 Q? 4�6�<L-��/��?�F Pa)/g.4l38V RH� ?�D�[}*4Xd�b�Z�S�8��C
434 …#��� ��-3 '�) !��!�#�!� ��(��> LK=�/��.��.��6��<��:��H�K�M� k&�3=�5?k!k!a
471 M�K��S�V�b�faol
509 k� [�W��Q��L��T��a� YW [�
[all …]
Dtest_034.ppm4 …��Y��]��W��]��^��X��V��Z��[��X��X��X��[��[��[��^��^��]��[��^��_��_��a��^��^��]��`��a��d��b��d��h��…
10 …��Y��X��Y��Y��Z��Z��Y��[��]��[��^��^��`��`��]��]��_��^��^��_��a��`��e��f��g��g��d��e��h��a��_��V��…
16 …�Mq�Ko�Ko�Lp�Ko�Lp�Mq�Qu�Lu�Lu�Ow�Mv�Mv�Js�Qu�Pt�Os�Jn�Eg|Abw?]s<Yo7Ri)D[Qu�a��^��Z��]��]��]��^��Z…
20 …qVuo���z��Y~vY~vS�vQ~tRuT�wV�wW�xW�zT�wV�xW�zW�zX�{Y�{Y�{_�}_�}^�}^�}]�~[�}a�~b�d�~^x���p��_�}b…
24a��_��V��Qz�Kt�Dhz-Qb=ast��l��l��m��l��l��m��n��m��n��l��m��q��p��o��m��h��m��m��k��k��l��l��m��o�…
26a��b��a��b��f��d��_��^��S~�Pw�Jq�Cgx.RdAevu��n��o��m��n��m��m��l��l��m��m��m��n��m��l��l��k��n��m�…
28a�{a�{]�z[�xY~vV{sXzsZ|uWxqRtmMskOtlPxoOwnMtlKqiKqiKqiJsiHpgDkbIog���e�~Bh`EldAmb=i_?h_Ai`Ai`Bka<h…
29a��_��_��T��R��T�~V�V�S�}R}wTz���b��X�zV�wX�zY�{W�|W�|W�{X�|W�{V�zT�zV�{Z�xQwo���t��W�xY�{W�zW�…
30 …��W��Z��[��[��Z��Z��[��Y��X��Y��Y��Z��]��]��^��a��^��_��^��a��`��^��^��_��a��^��^��_��a��a��`��`��
32 …������������������������������������������������~������~��~��}��|��z��h��a��St�CdtFgwk��k��m��n…
[all …]
/packages/apps/Camera2/src/com/android/camera/crop/
DGeometryMathUtils.java100 public static float dotProduct(float[] a, float[] b) { in dotProduct() argument
101 return a[0] * b[0] + a[1] * b[1]; in dotProduct()
104 public static float[] normalize(float[] a) { in normalize() argument
105 float length = (float) Math.sqrt(a[0] * a[0] + a[1] * a[1]); in normalize()
107 a[0] / length, a[1] / length in normalize()
113 public static float scalarProjection(float[] a, float[] b) { in scalarProjection() argument
115 return dotProduct(a, b) / length; in scalarProjection()
140 public static float[] vectorSubtract(float[] a, float[] b) { in vectorSubtract() argument
141 int len = a.length; in vectorSubtract()
146 ret[i] = a[i] - b[i]; in vectorSubtract()
[all …]

12345678910>>...17