HomeSort by relevance Sort by last modified time
    Searched defs:pElem (Results 1 - 6 of 6) 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);
  /development/simulator/app/
Preferences.cpp 221 TiXmlElement* pElem = pNode->ToElement();
222 assert(pElem != NULL);
224 const char* name = pElem->Attribute(kName);
324 TiXmlElement* pElem = FindPrefElement(name);
325 return (pElem != NULL);
331 bool Preferences::_GetBool(TiXmlElement* pElem, bool* pVal) const
333 if (pElem != NULL)
335 const char* str = pElem->Attribute(kValue);
345 pElem->Attribute(kName), str);
354 bool Preferences::_GetInt(TiXmlElement* pElem, int* pInt) cons
    [all...]
PhoneData.cpp 52 TiXmlElement* pElem;
57 pElem = pNode->ToElement();
58 pElem->Attribute("qwerty", &qwerty);
59 const char *kmap = pElem->Attribute("keycharmap");
87 TiXmlElement* pElem;
99 pElem = pNode->ToElement();
100 name = pElem->Attribute("name");
103 if (pElem->Attribute("width", &mWidth) == NULL)
105 if (pElem->Attribute("height", &mHeight) == NULL)
107 if (pElem->Attribute("refresh", &mRefresh) == NULL
    [all...]
  /external/bluetooth/bluez/src/
sdpd-request.c 130 char *pElem = NULL;
172 pElem = (char *) aid;
174 pElem = malloc(sizeof(uint16_t));
175 bt_put_unaligned(ntohs(bt_get_unaligned((uint16_t *)p)), (uint16_t *)pElem);
195 pElem = (char *) aid;
197 pElem = malloc(sizeof(uint32_t));
198 bt_put_unaligned(ntohl(bt_get_unaligned((uint32_t *)p)), (uint32_t *)pElem);
207 pElem = malloc(sizeof(uuid_t));
208 status = sdp_uuid_extract(p, bufsize, (uuid_t *) pElem, &localSeqLength);
210 free(pElem);
    [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 392 milliseconds