Home
last modified time | relevance | path

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

/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/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/srec/config/en.us/dictionary/
Dfixit.ok192 ye yA
Dlarge.ok32695 ye yA
/external/opencore/protocols/rtp_payload_parser/util/output/
Dpv_rtp.bin1254 �/������=ϫ�yA`[(�ե���U[+�%�wp
4343 �����x��*�Jk2(�ɨH+�� �yA�x����e7^y�~�,��po��A�%�����������s>���� �E��}��@�+�]?��
9220 `UT�x�C^��ة ~�w�s$)� �Bd�H-�ѱ��L"����B��*@v�fi�6{�n����yA����AN
11987 p(� �X�yA����R�����dB3-�F6�E����?iB�����"a��K,�H�.J�L�����1�Ҹ���O�!���E