/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
D | db_utilities.h | 78 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 …]
|
D | db_utilities_poly.h | 39 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/ |
D | db_utilities.h | 78 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 …]
|
D | db_utilities_poly.h | 39 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/ |
D | db_utilities.h | 78 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 …]
|
D | db_utilities_poly.h | 39 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/ |
D | KeyStylesSet.java | 54 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/ |
D | feature_mos_API_doxyfile | 4 # 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/ |
D | dbreg_API_doxyfile | 4 # 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/ |
D | dbreg_API_doxyfile | 4 # 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/ |
D | feature_mos_API_doxyfile | 4 # 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/ |
D | dbreg_API_doxyfile | 4 # 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/ |
D | feature_mos_API_doxyfile | 4 # 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/ |
D | Delaunay.h | 96 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/ |
D | Delaunay.h | 96 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/ |
D | Delaunay.h | 96 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/ |
D | Keyboard.java | 196 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/ |
D | test_011.ppm | 45 …~eb������;DE CV#*a/6����������������������������������������������������������������������… 120 _EHxabZCD6"'7 <% ���kQS&;Ag'6a!,KA M 122 …#% 7P <6)H*)B!&8R*1F& %) %a>C�mq[8=Q.36… 128 …�������������������������������������������������������������B1,J:4SF-ZM4pk?a[0fg:lm?[d5 *'… 233 51Z%x<C/AD BF ӭ�ԛ�a(.b_Bn,f",;?B/*0A64?AX mk!�/A���켬… 257 Y![#a'OK 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 …%!* &#'/ /= = 0A/%(-a(0}LP�aetKK"*?V*,)F… 413 …������������������������������嚔����������������������������̲�����fm}SZwCK/a/6T")/ wLQ����������… [all …]
|
D | test_008.ppm | 159 ZXTa#�BMJ 200 V efa 249 J",u?MT-a#6u7Ja3A�Yg�����������������������������������������������Ж��fX__AIeFO˨��ov%& 3 ,8… 374 840,-?DV` aX6A*(='%C(-eJOK*1388F(6oHQ4O,30 385 ?BqW[hMRw]a����_hY1;?")) 451 daZXDCI 453 4D` 454 a[] 503 …>IB;?810(%3*'=31SIH 4!'<)/: &_5A�ptsJM;- =!a>E>"b?FvYX?"!F1%VA4J… 551 a[Y���aX[- "')#( [all …]
|
D | test_003.ppm | 35 ^"O Z_ m#i PaO 36 A6%"^36P,-) .H(tES|M[,a:Aâ�R16bIKfhYHFzhgQ:;lTV… 81 …%)0vHSС��`h�x�hEL8_HKM6:p`aƶ�aMPZFIR;>;#'#F#*I#,a<DF… 225 a 280 13-(3BMl&4a)h .XKCWQBO 322 #,&6S!,�PX�t|�doi)5>>HS]"]"�.>a 327 [AJSBE�����������������������������������������������������������ۢ���z��v~a=IF".[.=pCRM 362 DCiaYSCX!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"-,',
|
D | test_006.ppm | 101 …��������������������������ç����������ә���v}ֻ���ʂ`l�lwJ(48"E*4������gmi g a�#8�nqغ������������… 137 ;C!#X a!)_ 138 ba^ 139 al 191 6:H ;/La"*JzXY�`a�lp�qvTDE������aMPiPT`FKE,0" 294 fa 330 8"'H)/�^a:?.03W_gd] SP 344 hei ba]WVeMJXYm 444 5.#a`PJI8{{q������FHC60.tnl���qa`ZDB,I15T=AtT_�z�K'36# 459 o&.q(0{*5V^_[_bov%w&g^aR;;IRv54����SZCMJ�����õz}>d ad
|
D | test_007.ppm | 48 …�������������������������������˷�����������������������vR^^5C`7E, [18������a`d#�~�ɽ���������… 120 *1?<)(C:81 5= Ca-4=(*.&( 130 ! ><3) /> Q'.nDK;!<K#*a<B0.;-A&(* 179 7185A754:BZaZKSO: 188 Xm&e%?E ] h*p#3MHOVad dbV�bo��Ԑsq&7`,4l7?J#&7;6dCJ�gn( 241 "#4<:_aa 246 ifiae`fd hgde`bY]uDB��~�mp5 249 Y(.�����Ɖot����м�mi[IEL88���p`a��������������沤�����}�K8>,(J7=�|���������������������������ನ�… 339 4-<T%.#(BHea i 483 ' #%%#"%544CRJ6B3HL=<DQ… [all …]
|
D | test_012.ppm | 60 …QQHB-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*_XL'=L a-5JA4.11('*8x 387 P!E;::I=F3/HP 388 adZXA 410 Q?46<L-/?FPa)/g.4l38VRH ?D[}*4XdbZS8C 434 …# -3') !!#! (>LK=/..6<:HKM k&�3=�5?k!k!a 471 MKSVbfaol 509 k[WQLTaYW[ [all …]
|
D | test_034.ppm | 4 …��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… 24 …a��_��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�… 26 …a��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�… 28 …a�{a�{]�z[�xY~vV{sXzsZ|uWxqRtmMskOtlPxoOwnMtlKqiKqiKqiJsiHpgDkbIog���e�~Bh`EldAmb=i_?h_Ai`Ai`Bka<h… 29 …a��_��_��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/ |
D | GeometryMathUtils.java | 100 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 …]
|