HomeSort by relevance Sort by last modified time
    Searched defs:pElem (Results 1 - 3 of 3) sorted by null

  /frameworks/base/media/libstagefright/codecs/aacdec/
getbits.h 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)
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_seek_synch.cpp 211 uint8 *pElem = pVars->inputStream.pBuffer + offset;
212 uint16 tmp1 = *(pElem++);
213 uint16 tmp2 = *(pElem);
  /external/bluetooth/bluez/src/
sdpd-request.c 140 char *pElem = NULL;
182 pElem = (char *) aid;
184 pElem = malloc(sizeof(uint16_t));
185 bt_put_unaligned(ntohs(bt_get_unaligned((uint16_t *)p)), (uint16_t *)pElem);
205 pElem = (char *) aid;
207 pElem = malloc(sizeof(uint32_t));
208 bt_put_unaligned(ntohl(bt_get_unaligned((uint32_t *)p)), (uint32_t *)pElem);
217 pElem = malloc(sizeof(uuid_t));
218 status = sdp_uuid_extract(p, bufsize, (uuid_t *) pElem, &localSeqLength);
220 free(pElem);
    [all...]

Completed in 49 milliseconds