OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ptr1l
(Results
1 - 11
of
11
) sorted by null
/external/neven/Embedded/common/src/b_ImageEm/
UInt16ByteImage.c
550
const uint16*
ptr1L
;
553
ptr1L
= ulPtrL + lL * halfSrcWidthL;
555
ptr2L =
ptr1L
+ halfSrcWidthL;
559
valL = f1yL * ( *
ptr1L
& 0x0FF ) + f2yL * ( *ptr2L & 0x0FF );
565
valL = f1yL * ( *(
ptr1L
+ halfSrcWidthL - 1 ) >> 8 ) +
583
v1L = f1xL * ( *(
ptr1L
+ khL ) >> 8 ) + f2xL * ( *(
ptr1L
+ khL ) & 0x0FF );
586
v1L = f1xL * ( *(
ptr1L
+ khL ) & 0x0FF ) + f2xL * ( *(
ptr1L
+ khL ) >> 8 );
593
v1L = f1xL * ( *(
ptr1L
+ khL ) & 0x0FF ) + f2xL * ( *( ptr1L + khL + 1 ) >> 8 )
[
all
...]
UInt8Image.c
719
const uint8*
ptr1L
;
722
ptr1L
= ulPtrL + lL * srcWidthL;
724
ptr2L =
ptr1L
+ srcWidthL;
729
valL = *
ptr1L
* f1yL + *ptr2L * f2yL ;
736
valL = *(
ptr1L
+ srcWidthL - 1 ) * f1yL + *( ptr2L + srcWidthL - 1 ) * f2yL;
750
v1L = *(
ptr1L
+ kL ) * f1xL + *(
ptr1L
+ kL + 1 ) * f2xL;
/external/neven/Embedded/common/src/b_BasicEm/
Math.c
1056
int16 *
ptr1L
, *ptr2L;
1063
ptr1L
= ( int16* ) x1A + iL * col1A;
1068
sumL += ( ( int32 ) *
ptr1L
++ * *ptr2L );
1080
int16 *
ptr1L
, *ptr2L;
1086
ptr1L
= ( int16* ) x1A + iL * col1A;
1091
sumL += ( ( int32 ) *
ptr1L
++ * *ptr2L );
1092
sumL += ( ( int32 ) *
ptr1L
++ * *( ptr2L += col2A ) );
1093
sumL += ( ( int32 ) *
ptr1L
++ * *( ptr2L += col2A ) );
1094
sumL += ( ( int32 ) *
ptr1L
++ * *( ptr2L += col2A ) );
1099
sumL += ( ( int32 ) *
ptr1L
++ * *ptr2L )
[
all
...]
APhArr.c
94
const struct bbs_APh*
ptr1L
= ptrA->arrPtrE;
99
if( !bbs_APh_equal( *
ptr1L
, *ptr2L ) ) return FALSE;
ComplexArr.c
94
const struct bbs_Complex*
ptr1L
= ptrA->arrPtrE;
99
if( !bbs_Complex_equal( *
ptr1L
, *ptr2L ) ) return FALSE;
Int16Arr.c
98
const int16*
ptr1L
= ptrA->arrPtrE;
103
if( *
ptr1L
++ != *ptr2L++ ) return FALSE;
Int32Arr.c
94
const int32*
ptr1L
= ptrA->arrPtrE;
99
if( *
ptr1L
++ != *ptr2L++ ) return FALSE;
Int8Arr.c
94
const int8*
ptr1L
= ptrA->arrPtrE;
99
if( *
ptr1L
++ != *ptr2L++ ) return FALSE;
UInt16Arr.c
94
const uint16*
ptr1L
= ptrA->arrPtrE;
99
if( *
ptr1L
++ != *ptr2L++ ) return FALSE;
UInt32Arr.c
94
const uint32*
ptr1L
= ptrA->arrPtrE;
99
if( *
ptr1L
++ != *ptr2L++ ) return FALSE;
UInt8Arr.c
94
const uint8*
ptr1L
= ptrA->arrPtrE;
99
if( *
ptr1L
++ != *ptr2L++ ) return FALSE;
Completed in 419 milliseconds