Home
last modified time | relevance | path

Searched refs:yA (Results 1 – 25 of 29) sorted by relevance

12

/external/neven/Embedded/common/src/b_BasicEm/
DPhase.c271 phase16 bbs_phase16( int32 xA, int32 yA ) in bbs_phase16() argument
274 uint32 yL = ( yA > 0 ) ? yA : -yA; in bbs_phase16()
306 if( yA >= 0 ) in bbs_phase16()
317 if( yA >= 0 ) in bbs_phase16()
DPhase.h128 phase16 bbs_phase16( int32 xA, int32 yA );
/external/neven/Embedded/common/src/b_TensorEm/
DFlt16Vec3D.c169 struct bts_Flt16Vec3D bts_Flt16Vec3D_create16( int16 xA, int16 yA, int16 zA, int16 bbpA ) in bts_Flt16Vec3D_create16() argument
173 vecL.yE = yA; in bts_Flt16Vec3D_create16()
181 struct bts_Flt16Vec3D bts_Flt16Vec3D_create32( int32 xA, int32 yA, int32 zA, int32 bbpA ) in bts_Flt16Vec3D_create32() argument
184 if( ( xA | yA | zA ) == 0 ) in bts_Flt16Vec3D_create32()
193 int32 shiftL = bts_maxAbsIntLog2Of3( xA, yA, zA ) - 13; in bts_Flt16Vec3D_create32()
199 vecL.yE = ( ( yA >> sh1L ) + 1 ) >> 1; in bts_Flt16Vec3D_create32()
205 vecL.yE = yA << -shiftL; in bts_Flt16Vec3D_create32()
DFlt16Vec2D.c148 struct bts_Flt16Vec2D bts_Flt16Vec2D_create16( int16 xA, int16 yA, int16 bbpA ) in bts_Flt16Vec2D_create16() argument
152 vecL.yE = yA; in bts_Flt16Vec2D_create16()
170 struct bts_Flt16Vec2D bts_Flt16Vec2D_create32( int32 xA, int32 yA, int32 bbpA ) in bts_Flt16Vec2D_create32() argument
173 if( ( xA | yA ) == 0 ) in bts_Flt16Vec2D_create32()
181 int32 shiftL = bts_maxAbsIntLog2Of2( xA, yA ) - 13; in bts_Flt16Vec2D_create32()
187 vecL.yE = ( ( yA >> sh1L ) + 1 ) >> 1; in bts_Flt16Vec2D_create32()
192 vecL.yE = yA << -shiftL; in bts_Flt16Vec2D_create32()
DFlt16Alt3D.c165 int16 xA, int16 yA, int16 zA, in bts_Flt16Alt3D_create16() argument
174 altL.vecE = bts_Flt16Vec3D_create16( xA, yA, zA, vecBbpA ); in bts_Flt16Alt3D_create16()
184 int32 xA, int32 yA, int32 zA, in bts_Flt16Alt3D_create32() argument
193 altL.vecE = bts_Flt16Vec3D_create32( xA, yA, zA, vecBbpA ); in bts_Flt16Alt3D_create32()
DFlt16Alt2D.c232 int16 yA, in bts_Flt16Alt2D_create16() argument
237 altL.vecE = bts_Flt16Vec2D_create16( xA, yA, vecBbpA ); in bts_Flt16Alt2D_create16()
249 int32 yA, in bts_Flt16Alt2D_create32() argument
254 altL.vecE = bts_Flt16Vec2D_create32( xA, yA, vecBbpA ); in bts_Flt16Alt2D_create32()
DFlt16Vec3D.h95 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 );
DFlt16Vec2D.h81 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 );
DFlt16Alt3D.h103 int16 xA, int16 yA, int16 zA,
111 int32 xA, int32 yA, int32 zA,
DFlt16Alt2D.h131 int16 yA,
141 int32 yA,
/external/skia/gm/
Dcomplexclip2.cpp32 SkScalar yA = 0.65f; in ComplexClip2GM() local
36 fHeight = yF - yA; in ComplexClip2GM()
54 SkScalar yA = 0.65f; in onOnceBeforeDraw() local
66 fRects[1].set(xA, yA, xD, yD); in onOnceBeforeDraw()
71 fRects[2].set(xC, yA, xF, yD); in onOnceBeforeDraw()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
DNonLinearConjugateGradientOptimizer.java227 final double yA = f.value(a); in findUpperBound() local
228 double yB = yA; in findUpperBound()
229 for (double step = h; step < Double.MAX_VALUE; step *= FastMath.max(2, yA / yB)) { in findUpperBound()
232 if (yA * yB <= 0) { in findUpperBound()
/external/neven/Embedded/common/src/b_BitFeatureEm/
DScanner.h266 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,
DScanner.c887 void bbf_Scanner_goToXY( struct bbs_Context* cpA, struct bbf_Scanner* ptrA, int32 xA, int32 yA ) in bbf_Scanner_goToXY() argument
899 if( ptrA->yE == yA ) return; in bbf_Scanner_goToXY()
901 if( yA >= ( int32 )( ptrA->currentHeightE - ptrA->patchHeightE ) ) in bbf_Scanner_goToXY()
907 if( yA == ptrA->yE + 1 ) in bbf_Scanner_goToXY()
914 ptrA->yE = yA; in bbf_Scanner_goToXY()
946 ptrA->yE = yA; in bbf_Scanner_goToXY()
987 int32 xA, int32 yA, uint32 scaleA ) in bbf_Scanner_goToUls() argument
990 int32 yL = ( yA / ( int32 )( ptrA->scaleE >> 4 ) ) + ptrA->borderHeightE; in bbf_Scanner_goToUls()
1063 int32 yA, in bbf_Scanner_addOutPos() argument
1070 ptrA->outArrE.arrPtrE[ ptrA->outCountE * 4 + 1 ] = yA; in bbf_Scanner_addOutPos()
[all …]
DLocalScanner.c722 …f_LocalScanner_goToXY( struct bbs_Context* cpA, struct bbf_LocalScanner* ptrA, int32 xA, int32 yA ) in bbf_LocalScanner_goToXY() argument
731 if( ptrA->yE == yA ) return; in bbf_LocalScanner_goToXY()
732 …if( yA < ptrA->workScanRegionE.y1E || yA >= ptrA->workScanRegionE.y2E - ( int32 )ptrA->patchHeight… in bbf_LocalScanner_goToXY()
737 ptrA->yE = yA; in bbf_LocalScanner_goToXY()
DLocalScanner.h239 …_LocalScanner_goToXY( struct bbs_Context* cpA, struct bbf_LocalScanner* ptrA, int32 xA, int32 yA );
/external/opencv/cvaux/src/
Dcvepilines.cpp462 double xA,yA,zA; in icvComCoeffForLine() local
467 yA = pointNewA.y; in icvComCoeffForLine()
479 len1 = sqrt( (xA-xB)*(xA-xB) + (yA-yB)*(yA-yB) + (zA-zB)*(zA-zB) ); in icvComCoeffForLine()
531 double xA,yA,zA; in icvGetCrossLines() local
538 yA = point11.y; in icvGetCrossLines()
556 a11 = (xB-xA)*(xB-xA)+(yB-yA)*(yB-yA)+(zB-zA)*(zB-zA); in icvGetCrossLines()
557 a12 = -(xD-xC)*(xB-xA)-(yD-yC)*(yB-yA)-(zD-zC)*(zB-zA); in icvGetCrossLines()
558 a21 = (xB-xA)*(xD-xC)+(yB-yA)*(yD-yC)+(zB-zA)*(zD-zC); in icvGetCrossLines()
560 b1 = -( (xA-xC)*(xB-xA)+(yA-yC)*(yB-yA)+(zA-zC)*(zB-zA) ); in icvGetCrossLines()
561 b2 = -( (xA-xC)*(xD-xC)+(yA-yC)*(yD-yC)+(zA-zC)*(zD-zC) ); in icvGetCrossLines()
[all …]
/external/boringssl/src/crypto/dh/
Ddh_test.cc405 const uint8_t *yA; member
441 dhA->pub_key = BN_bin2bn(td->yA, td->yA_len, nullptr); in RunRFC5114Tests()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_gl0_kdt_lfz3.pkb210 yA"���<  c����#�����P
/external/mesa3d/src/gallium/state_trackers/vega/
Darc.c614 double yA = y_b; in arc_to_beziers() local
636 (float) (xA + alpha * xADot), (float) (yA + alpha * yADot), in arc_to_beziers()
/external/webrtc/data/voice_engine/stereo_rtp_files/
Dhrtf_g722_1C_48.rtp292 …����m1�������}q��/EI��X���ĔA.�'�?�V� ��O7,���ldी���D�r Elb7�H���yA���$ge�m>8+���fme��*[…
2306 �2X�}0gP��~Db��ꐵ.�g���'`��:R�W*�-?<_�WV?���)3��q�����@L�}6���I��X��3\:��U8�8�yAX�B��-…
2597 …���ˆ�����yA*��ބ�PQU��H���d��A��&u�dMi����`�N�8������'^ap�����HЀ}���,EI��Xt�4��P�`h�C�1aü…
Dhrtf_g722_1C_48_jitterT2.rtp2572 …���ˆ�����yA*��ބ�PQU��H���d��A��&u�dMi����`�N�8������'^ap�����H��}���.�I��X`��2�d�`�@}� …
/external/skia/tests/
DPathOpsOpTest.cpp1177 SkScalar yA = 0.65f; in rRect1() local
1187 rects[1].set(xA, yA, xD, yD); in rRect1()
1189 rects[2].set(xC, yA, xF, yD); in rRect1()
/external/webrtc/talk/media/testdata/
Dvideo.rtpdump296 �Y�\Z�pU��2C�yA���yY�1�uD3�\��q������N���|��
/external/chromium-trace/catapult/tracing/test_data/
Dddms_calculator_start.trace104662 ���p���yA
282532 F�uw��yA��
290500 yA�u1%�����
290515 yA�u�%�$���
291231 yA�uJ2�����
291246 yA�u�2�����
306861 8\ q.T�yA��
332334 R q�M�yA��
414247 ���q��yA��
414326 yA q���LC��
[all …]

12