Home | History | Annotate | Download | only in aacdec

Lines Matching defs:returnValue

102         UInt32   returnValue = 0;
117 returnValue = (((UInt32) * (pElem)) << 24) |
135 returnValue = (((UInt32) * (pElem + 2)) << 8);
137 returnValue |= (((UInt32) * (pElem + 1)) << 16);
139 returnValue |= (((UInt32) * (pElem)) << 24);
148 returnValue = (((UInt32) * (pElem)) << 24) |
158 returnValue = returnValue << (bitIndex);
161 returnValue = returnValue >> (32 - neededBits);
165 return (returnValue);
174 UInt returnValue;
184 returnValue = (offset < pInputStream->inputBufferCurrentLength) ? ((UInt) * (pElem)) : 0;
186 returnValue = ((UInt32) * (pElem));
194 returnValue = 0xFF & (returnValue << (bitIndex));
198 return ((UInt)(returnValue >> 7));
209 UInt returnValue;
225 returnValue = (((UInt32) * (pElem)) << 8) |
241 returnValue = (((UInt32) * (pElem)) << 8);
244 returnValue = 0;
251 returnValue = (((UInt32) * (pElem)) << 8) |
261 returnValue = 0xFFFF & (returnValue << (bitIndex));
265 return (UInt)(returnValue >> (16 - neededBits));
273 UInt32 returnValue;
289 returnValue = (((UInt32) * (pElem)) << 16) |
303 returnValue = 0;
307 returnValue = (((UInt32) * (pElem + 1)) << 8);
309 returnValue |= (((UInt32) * (pElem)) << 16);
317 returnValue = (((UInt32) * (pElem)) << 16) |
326 returnValue = 0xFFFFFF & (returnValue << (bitIndex));
329 returnValue = returnValue >> (24 - neededBits);
333 return (returnValue);