OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bbpDiffL
(Results
1 - 3
of
3
) sorted by null
/external/neven/Embedded/common/src/b_TensorEm/
Flt16Mat2D.c
84
int32
bbpDiffL
= ptrA->bbpE - srcPtrA->bbpE;
85
if(
bbpDiffL
== 0 )
94
if(
bbpDiffL
> 0 )
96
int32 xxL = ( int32 ) srcPtrA->xxE <<
bbpDiffL
;
97
int32 xyL = ( int32 ) srcPtrA->xyE <<
bbpDiffL
;
98
int32 yxL = ( int32 ) srcPtrA->yxE <<
bbpDiffL
;
99
int32 yyL = ( int32 ) srcPtrA->yyE <<
bbpDiffL
;
107
if( srcPtrA->xxE != ( xxL >>
bbpDiffL
) ) return FALSE;
108
if( srcPtrA->xyE != ( xyL >>
bbpDiffL
) ) return FALSE;
109
if( srcPtrA->yxE != ( yxL >>
bbpDiffL
) ) return FALSE
[
all
...]
Flt16Vec3D.c
72
int32
bbpDiffL
= ptrA->bbpE - srcPtrA->bbpE;
73
if(
bbpDiffL
== 0 )
81
if(
bbpDiffL
> 0 )
83
int32 xL = ( int32 ) srcPtrA->xE <<
bbpDiffL
;
84
int32 yL = ( int32 ) srcPtrA->yE <<
bbpDiffL
;
85
int32 zL = ( int32 ) srcPtrA->zE <<
bbpDiffL
;
92
if(
bbpDiffL
< 0 )
94
int32 xL = ( int32 ) ptrA->xE << -
bbpDiffL
;
95
int32 yL = ( int32 ) ptrA->yE << -
bbpDiffL
;
96
int32 zL = ( int32 ) ptrA->zE << -
bbpDiffL
;
[
all
...]
Flt16Vec2D.c
79
int32
bbpDiffL
= ptrA->bbpE - srcPtrA->bbpE;
80
if(
bbpDiffL
== 0 )
87
if(
bbpDiffL
> 0 )
89
int32 xL = ( int32 ) srcPtrA->xE <<
bbpDiffL
;
90
int32 yL = ( int32 ) srcPtrA->yE <<
bbpDiffL
;
94
if( srcPtrA->xE != ( xL >>
bbpDiffL
) ) return FALSE;
95
if( srcPtrA->yE != ( yL >>
bbpDiffL
) ) return FALSE;
99
if(
bbpDiffL
< 0 )
101
int32 xL = ( int32 ) ptrA->xE << -
bbpDiffL
;
102
int32 yL = ( int32 ) ptrA->yE << -
bbpDiffL
;
[
all
...]
Completed in 28 milliseconds