Home | History | Annotate | Download | only in aacdec

Lines Matching defs:pElem

105         UChar    *pElem;        /* Needs to be same type as pInput->pBuffer */
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)) << 24) |
149 (((UInt32) * (pElem + 1)) << 16) |
150 (((UInt32) * (pElem + 2)) << 8) |
151 ((UInt32) * (pElem + 3));
177 UChar *pElem; /* Needs to be same type as pInput->pBuffer */
181 pElem = pInputStream->pBuffer + offset;
184 returnValue = (offset < pInputStream->inputBufferCurrentLength) ? ((UInt) * (pElem)) : 0;
186 returnValue = ((UInt32) * (pElem));
212 UChar *pElem; /* Needs to be same type as pInput->pBuffer */
216 pElem = pInputStream->pBuffer + offset;
225 returnValue = (((UInt32) * (pElem)) << 8) |
226 ((UInt32) * (pElem + 1));
241 returnValue = (((UInt32) * (pElem)) << 8);
251 returnValue = (((UInt32) * (pElem)) << 8) |
252 ((UInt32) * (pElem + 1)) ;
276 UChar *pElem; /* Needs to be same type as pInput->pBuffer */
280 pElem = pInputStream->pBuffer + offset;
289 returnValue = (((UInt32) * (pElem)) << 16) |
290 (((UInt32) * (pElem + 1)) << 8) |
291 ((UInt32) * (pElem + 2));
307 returnValue = (((UInt32) * (pElem + 1)) << 8);
309 returnValue |= (((UInt32) * (pElem)) << 16);
317 returnValue = (((UInt32) * (pElem)) << 16) |
318 (((UInt32) * (pElem + 1)) << 8) |
319 ((UInt32) * (pElem + 2));