Searched refs:pElem (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/aacdec/
H A Dgetbits.h105 UChar *pElem; /* Needs to be same type as pInput->pBuffer */ local
109 pElem = pInputStream->pBuffer + offset;
117 returnValue = (((UInt32) * (pElem)) << 24) |
118 (((UInt32) * (pElem + 1)) << 16) |
119 (((UInt32) * (pElem + 2)) << 8) |
120 ((UInt32) * (pElem + 3));
135 returnValue = (((UInt32) * (pElem + 2)) << 8);
137 returnValue |= (((UInt32) * (pElem + 1)) << 16);
139 returnValue |= (((UInt32) * (pElem)) << 24);
148 returnValue = (((UInt32) * (pElem)) << 2
177 UChar *pElem; /* Needs to be same type as pInput->pBuffer */ local
212 UChar *pElem; /* Needs to be same type as pInput->pBuffer */ local
276 UChar *pElem; /* Needs to be same type as pInput->pBuffer */ local
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_seek_synch.cpp211 uint8 *pElem = pVars->inputStream.pBuffer + offset; local
212 uint16 tmp1 = *(pElem++);
213 uint16 tmp2 = *(pElem);

Completed in 108 milliseconds