HomeSort by relevance Sort by last modified time
    Searched refs:pElem (Results 1 - 25 of 36) sorted by null

1 2

  /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...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
normalizecharacters03.js 98 var pElem;
113 pElem = pList.item(0);
115 retval = pElem.appendChild(text);
116 pElem.normalize();
119 pElem = pList.item(0);
120 text = pElem.firstChild;
normalizecharacters04.js 98 var pElem;
119 pElem = pList.item(0);
121 retval = pElem.appendChild(text);
122 pElem.normalize();
125 pElem = pList.item(0);
126 text = pElem.firstChild;
canonicalform01.js 93 var pElem;
122 pElem = pList.item(0);
124 child = pElem.appendChild(entRef);
128 pElem = pList.item(0);
129 child = pElem.lastChild;
canonicalform02.js 98 var pElem;
119 pElem = pList.item(0);
121 retval = pElem.appendChild(text);
125 pElem = pList.item(0);
126 text = pElem.firstChild;
checkcharacternormalization01.js 98 var pElem;
113 pElem = pList.item(0);
115 retval = pElem.appendChild(text);
119 pElem = pList.item(0);
120 text = pElem.firstChild;
checkcharacternormalization03.js 98 var pElem;
119 pElem = pList.item(0);
121 retval = pElem.appendChild(text);
125 pElem = pList.item(0);
126 text = pElem.firstChild;
entities01.js 93 var pElem;
116 pElem = pList.item(0);
118 child = pElem.appendChild(entRef);
122 pElem = pList.item(0);
123 child = pElem.lastChild;
entities02.js 93 var pElem;
117 pElem = pList.item(0);
119 child = pElem.appendChild(entRef);
123 pElem = pList.item(0);
124 child = pElem.lastChild;
entities03.js 93 var pElem;
114 pElem = pList.item(0);
116 child = pElem.appendChild(entRef);
120 pElem = pList.item(0);
121 child = pElem.lastChild;
entities04.js 92 var pElem;
115 pElem = pList.item(0);
117 child = pElem.appendChild(entRef);
121 pElem = pList.item(0);
122 child = pElem.lastChild;
infoset01.js 93 var pElem;
117 pElem = pList.item(0);
119 child = pElem.appendChild(entRef);
123 pElem = pList.item(0);
124 child = pElem.lastChild;
infoset02.js 93 var pElem;
114 pElem = pList.item(0);
116 child = pElem.appendChild(entRef);
120 pElem = pList.item(0);
121 child = pElem.lastChild;
nodegetbaseuri19.js 96 var pElem;
105 pElem = pList.item(0);
106 assertNotNull("pElemNotNull",pElem);
111 textNode = pElem.firstChild;
118 entRef = pElem.lastChild;
normalizecharacters01.js 98 var pElem;
113 pElem = pList.item(0);
115 retval = pElem.appendChild(text);
119 pElem = pList.item(0);
120 text = pElem.firstChild;
normalizecharacters02.js 98 var pElem;
119 pElem = pList.item(0);
121 retval = pElem.appendChild(text);
125 pElem = pList.item(0);
126 text = pElem.firstChild;
normalizecharacters05.js 98 var pElem;
113 pElem = pList.item(0);
115 retval = pElem.appendChild(text);
119 pElem = pList.item(0);
120 text = pElem.firstChild;
normalizecharacters06.js 98 var pElem;
119 pElem = pList.item(0);
121 retval = pElem.appendChild(text);
125 pElem = pList.item(0);
126 text = pElem.firstChild;
normalizecharacters07.js 98 var pElem;
113 pElem = pList.item(0);
115 retval = pElem.appendChild(text);
119 pElem = pList.item(0);
120 text = pElem.lastChild;
normalizecharacters08.js 98 var pElem;
119 pElem = pList.item(0);
121 retval = pElem.appendChild(text);
125 pElem = pList.item(0);
126 text = pElem.lastChild;
textiselementcontentwhitespace04.js 90 var pElem;
113 pElem = pList.item(0);
114 textNode = pElem.firstChild;
117 replacedNode = pElem.replaceChild(blankNode,textNode);
119 textNode = pElem.firstChild;
nodegetbaseuri17.js 93 var pElem;
101 pElem = pList.item(0);
102 textNode = pElem.firstChild;
nodegetbaseuri18.js 93 var pElem;
101 pElem = pList.item(0);
102 comment = pElem.nextSibling;
textiselementcontentwhitespace02.js 90 var pElem;
100 pElem = pList.item(0);
101 textNode = pElem.firstChild;
  /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);

Completed in 231 milliseconds

1 2