HomeSort by relevance Sort by last modified time
    Searched refs:yA (Results 1 - 25 of 25) sorted by null

  /external/neven/Embedded/common/src/b_BasicEm/
Phase.c 271 phase16 bbs_phase16( int32 xA, int32 yA )
274 uint32 yL = ( yA > 0 ) ? yA : -yA;
306 if( yA >= 0 )
317 if( yA >= 0 )
Phase.h 128 phase16 bbs_phase16( int32 xA, int32 yA );
  /external/neven/Embedded/common/src/b_TensorEm/
Flt16Vec2D.h 81 struct bts_Flt16Vec2D bts_Flt16Vec2D_create16( int16 xA, int16 yA, int16 bbpA );
87 struct bts_Flt16Vec2D bts_Flt16Vec2D_create32( int32 xA, int32 yA, int32 bbpA );
Flt16Vec3D.h 95 struct bts_Flt16Vec3D bts_Flt16Vec3D_create16( int16 xA, int16 yA, int16 zA, int16 bbpA );
98 struct bts_Flt16Vec3D bts_Flt16Vec3D_create32( int32 xA, int32 yA, int32 zA, int32 bbpA );
Flt16Vec3D.c 169 struct bts_Flt16Vec3D bts_Flt16Vec3D_create16( int16 xA, int16 yA, int16 zA, int16 bbpA )
173 vecL.yE = yA;
181 struct bts_Flt16Vec3D bts_Flt16Vec3D_create32( int32 xA, int32 yA, int32 zA, int32 bbpA )
184 if( ( xA | yA | zA ) == 0 )
193 int32 shiftL = bts_maxAbsIntLog2Of3( xA, yA, zA ) - 13;
199 vecL.yE = ( ( yA >> sh1L ) + 1 ) >> 1;
205 vecL.yE = yA << -shiftL;
Flt16Alt3D.c 165 int16 xA, int16 yA, int16 zA,
174 altL.vecE = bts_Flt16Vec3D_create16( xA, yA, zA, vecBbpA );
184 int32 xA, int32 yA, int32 zA,
193 altL.vecE = bts_Flt16Vec3D_create32( xA, yA, zA, vecBbpA );
Flt16Alt2D.h 131 int16 yA,
141 int32 yA,
Flt16Alt3D.h 103 int16 xA, int16 yA, int16 zA,
111 int32 xA, int32 yA, int32 zA,
Flt16Vec2D.c 148 struct bts_Flt16Vec2D bts_Flt16Vec2D_create16( int16 xA, int16 yA, int16 bbpA )
152 vecL.yE = yA;
170 struct bts_Flt16Vec2D bts_Flt16Vec2D_create32( int32 xA, int32 yA, int32 bbpA )
173 if( ( xA | yA ) == 0 )
181 int32 shiftL = bts_maxAbsIntLog2Of2( xA, yA ) - 13;
187 vecL.yE = ( ( yA >> sh1L ) + 1 ) >> 1;
192 vecL.yE = yA << -shiftL;
Flt16Alt2D.c 232 int16 yA,
237 altL.vecE = bts_Flt16Vec2D_create16( xA, yA, vecBbpA );
249 int32 yA,
254 altL.vecE = bts_Flt16Vec2D_create32( xA, yA, vecBbpA );
  /external/skia/gm/
complexclip2.cpp 32 SkScalar yA = 0.65f;
36 fHeight = yF - yA;
54 SkScalar yA = 0.65f;
66 fRects[1].set(xA, yA, xD, yD);
71 fRects[2].set(xC, yA, xF, yD);
  /external/skqp/gm/
complexclip2.cpp 32 SkScalar yA = 0.65f;
36 fHeight = yF - yA;
54 SkScalar yA = 0.65f;
66 fRects[1].set(xA, yA, xD, yD);
71 fRects[2].set(xC, yA, xF, yD);
  /external/neven/Embedded/common/src/b_BitFeatureEm/
Scanner.h 266 void bbf_Scanner_goToXY( struct bbs_Context* cpA, struct bbf_Scanner* ptrA, int32 xA, int32 yA );
273 int32 xA, int32 yA, uint32 scaleA );
290 int32 yA,
LocalScanner.h 239 void bbf_LocalScanner_goToXY( struct bbs_Context* cpA, struct bbf_LocalScanner* ptrA, int32 xA, int32 yA );
Scanner.c 887 void bbf_Scanner_goToXY( struct bbs_Context* cpA, struct bbf_Scanner* ptrA, int32 xA, int32 yA )
889 bbs_DEF_fNameL( "void bbf_Scanner_goToXY( struct bbs_Context* cpA, struct bbf_Scanner* ptrA, int32 xA, int32 yA )" )
899 if( ptrA->yE == yA ) return;
901 if( yA >= ( int32 )( ptrA->currentHeightE - ptrA->patchHeightE ) )
907 if( yA == ptrA->yE + 1 )
914 ptrA->yE = yA;
946 ptrA->yE = yA;
987 int32 xA, int32 yA, uint32 scaleA )
990 int32 yL = ( yA / ( int32 )( ptrA->scaleE >> 4 ) ) + ptrA->borderHeightE;
    [all...]
LocalScanner.c 722 void bbf_LocalScanner_goToXY( struct bbs_Context* cpA, struct bbf_LocalScanner* ptrA, int32 xA, int32 yA )
724 bbs_DEF_fNameL( "void bbf_LocalScanner_goToXY( struct bbs_Context* cpA, struct bbf_LocalScanner* ptrA, int32 xA, int32 yA )" )
731 if( ptrA->yE == yA ) return;
732 if( yA < ptrA->workScanRegionE.y1E || yA >= ptrA->workScanRegionE.y2E - ( int32 )ptrA->patchHeightE )
737 ptrA->yE = yA;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
NonLinearConjugateGradientOptimizer.java 227 final double yA = f.value(a);
228 double yB = yA;
229 for (double step = h; step < Double.MAX_VALUE; step *= FastMath.max(2, yA / yB)) {
232 if (yA * yB <= 0) {
  /external/opencv/cvaux/src/
cvepilines.cpp 462 double xA,yA,zA;
467 yA = pointNewA.y;
479 len1 = sqrt( (xA-xB)*(xA-xB) + (yA-yB)*(yA-yB) + (zA-zB)*(zA-zB) );
531 double xA,yA,zA;
538 yA = point11.y;
556 a11 = (xB-xA)*(xB-xA)+(yB-yA)*(yB-yA)+(zB-zA)*(zB-zA);
557 a12 = -(xD-xC)*(xB-xA)-(yD-yC)*(yB-yA)-(zD-zC)*(zB-zA);
558 a21 = (xB-xA)*(xD-xC)+(yB-yA)*(yD-yC)+(zB-zA)*(zD-zC)
    [all...]
  /external/webrtc/talk/media/testdata/
video.rtpdump     [all...]
h264-svc-99-640x360.rtpdump 287 ?,?e6??Jv=?~\??!?i?7???q???6S|??mr"?F?R??8???+?4?v??X`?~??E?[??5??7g??#?80\S?`'=E?}M??"??X???o?b??:???? =????l?gAF?O?@????h<?R?&?]~?m?.??Q??t? .k?^!'(*X5z b??????CG?8<???Wi?*?f?x?RZf:?c?????hY?e???[?&??@3?h??????CQF??k|??ƒv^ ? ?!?Rg\n/) ???|?2??)?3?????2_NI?nJ???!?????:dd??*?Y????0??,?f {)?E,??j0?:?VlY?0??|?@?|???(?K??????8?c%a??'??f??f??r8>????.?? ?%v???;1?:?????LLp[??;?????Q?#?`@|???\?GE??N??????'?? En?\??C?m ?gL?> ??? ?`7?v??????pL*;0?>ffe??J ~?J???u Q?u-?GI.??n???????F?;?V??p?a??M??lP{?W???!????S??E%u?????1?rZK?????U ?7?RF????????????o?l?Of?F?H9,}??B?}?;ya????q??S fpZd? R?9?????V???? ??d?@|??u?s?Q??EvL?LH.???c-????????w:??7?]?k?(+ ?EC??/5N??:???EHC?a?b?u????}??@TC???X???u??Y h?qSA(??|?T?A/?lQ;???!q???2?\???h?&??Xha?G??M?G?>i?J??p???z?????T7??`???;U?|???2?s????:?U`??0C?,??@?2Q?p?)??q???*V? ???????P?v???wC??%?^?;e9T?g?IVG?7?Rp?q4??ca??9#??+?zxBrvS??:???F?m??caw??m???1???um?$?x???s???o??-?? ????#?^??S??a-?? WJ??j=?G????0?>D?|?H?F???jE?_ /y~????6s??a?B\R?r?V?????/??yRKqd?@?G????m?tn{??^??{X ??x?0-??????OIm?0??????????Jmyh?YjH?K????{X?L?pp#?=??g???{??1]O?=5Q|SU?q??<F??"?% l.??<?d?????????<??&b????p8 ".?g?????D???S)]???t!o =>/??|?{?|`~?? _? ?N ?l. ?b?m???"+&Cs?0?y?i o?? ?????0P0?Y??5p+36`??????xE??n????4?<?<???u"0pR??W???ðT???rfB??T???|
373 ?u[?F???9???m?g??Z???f?t?X?j????c%g??'??f??fF??T?r8>????4?{`??!?ya?D?|]??.0 I?c?c[<?Of???E?[?F?_ ?P6???;=+?Xh????h?d+???v????????5?jj??L5?????N(?A?L?E{B?E*????C{'??k?{Un?:?7??hv7?%???P;•??3?e??.?B?\?wR?????2???&??!?SZ?s??+???????^Laww??YQ-?)??skd???^X?x??rj??it??4????7? j???T?A?c [r??V ?D?3(?^?[?????`k1}?{%3K?Y??F1???!????q?cnF????/?}???N??vY????????9?}??T%?1????????x????E??Ss?lg????*?|l1??g???;???q?j]???? A??_?f?s?xS?;MsPs??+?sY?/?`?B?????? ;???@J???~?K??<u(?
448 Ya?\??A~%??0??a?%?kM?7?????w?7???O?7???r????c??'??j??WG??lƒ??q?*3B?S?X'"^?|ZN?????m?{??"S??$jb? ?E?`????;?R???a?6??x*?{?-OP??e|??5?Q?l;?5??jX???f7?pQc?;6?r??X ??? ?@?G7@}??;????
    [all...]
  /external/skia/tests/
PathOpsOpTest.cpp     [all...]
  /external/skqp/tests/
PathOpsOpTest.cpp     [all...]
  /external/webrtc/data/voice_engine/stereo_rtp_files/
hrtf_g722_1C_48.rtp 89 g?????i?e??????bE??UP4?!?t}???A?&?Z??9?+????dbD?X8? ??F?p?P?~?g??3YA??|C?(?3"pI,@qf?WL?[???`@????2?%*?( ?"????????@?}?:EI??X?^\UP?
442 $GF???@?6 x&?X>V???ùP?e?-???????KiE?L?????Aal4???& ?õ??ZA??,?cI?1?????????????]???Ij????2(D????Fj[??q6L??!?=%B@m?\0?1z?{?P4???$\,.?4?BjB? /?j?};m?E:[p<V??F????N9??P??c?K?h@@?????/???}T???I??X?B(?wZ?:l?GU??? g`?L@P?????%"@3>??????d???YA? ?????Z???}4?;M{t/-0K)b?pD??8P`?U??e??:?
587 ??? 05?!?KP ?&???)???O?A???1???5??1Q?1???T?q?%?^? ????m1????}q?/EI??X????A.?'???V? ??O7,???ld????D?r Elb7?H??yA???$ge?m>8+???fme??*[' "?X??X???n??0@)?4d/?B|+qL<??????????/?FF????_?L??A\? U5??????ah?s:Z???:B?H?va0V?2?]?1
    [all...]
hrtf_g722_1C_48_jitterT2.rtp 89 g?????i?e??????bE??UP4?!?t}???A?&?Z??9?+????dbD?X8? ??F?p?P?~?g??3YA??|C?(?3"pI,@qf?WL?[???`@????2?%*?( ?"????????+?}?:EI??X?^\UP?
438 $GF???@?6 x&?X>V???ùP?e?-???????KiE?L?????Aal4???& ?õ??ZA??,?cI?1?????????????]???Ij????2(D????Fj[??q6L??!?=%B@m?\0?1z?{?P4???$\,.?4?BjB? /?j?};m?E:[p<V??F????N9??P??c?K?h@@?????/?n?}T???I??X?B(?wZ?:l?GU??? g`?L@P?????%"@3>??????d???YA? ?????Z???}4?;M{t/-0K)b?pD??8P`?U??e??:?
582 ??? 05?!?KP ?&???)???O?A???1???5??1Q?1???T?q?%?^? ????m1?????}q?/EI??X????A.?'???V? ??O7,???ld????D?r Elb7?H??yA???$ge?m>8+???fme??*[' "?X??X???n??0@)?4d/?B|+qL<??????????/?FF????_?L??A\? U5??????ah?s:Z???:B?H?va0V?2?]?1
    [all...]
toggling_stereo_g729_pt18_pt125.rtp     [all...]

Completed in 1223 milliseconds