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

1 2 3 4 5 6

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_FillVLDBuffer.c 35 * [in] pIndex pointer to coefficient index in 8x8 matrix
36 * [out] pIndex pointer to updated coefficient index in 8x8
52 OMX_U8 * pIndex,
57 for (;storeRun > 0; storeRun--, (*pIndex)++)
59 pDst[pZigzagTable[*pIndex]] = 0;
64 pDst[pZigzagTable[*pIndex]] = -storeLevel;
68 pDst[pZigzagTable[*pIndex]] = storeLevel;
70 (*pIndex)++;
75 while (*pIndex < 64)
77 pDst[pZigzagTable[*pIndex]] = 0
    [all...]
  /frameworks/wilhelm/src/itf/
IVideoDecoderCapabilities.cpp 67 XAVideoDecoderCapabilitiesItf self, XAuint32 decoderId, XAuint32 *pIndex,
72 if (NULL == pIndex) {
76 // pIndex returns the number of video decoders capability descriptions.
78 result = android::android_videoCodec_getProfileLevelCombinationNb(decoderId, pIndex);
84 *pIndex = 0;
89 // pIndex is an incrementing value used to enumerate capability descriptions.
91 result = android::android_videoCodec_getProfileLevelCombination(decoderId, *pIndex,
IAudioDecoderCapabilities.c 49 SLAudioDecoderCapabilitiesItf self, SLuint32 decoderId, SLuint32 *pIndex,
54 result = GetCodecCapabilities(decoderId, pIndex, pDescriptor, DecoderDescriptors);
IAudioEncoderCapabilities.c 49 SLAudioEncoderCapabilitiesItf self, SLuint32 encoderId, SLuint32 *pIndex,
54 result = GetCodecCapabilities(encoderId, pIndex, pDescriptor,
IEngineCapabilities.c 103 SLuint32 *pIndex, SLuint32 *pLEDDeviceID, SLLEDDescriptor *pDescriptor)
110 if (NULL != pIndex) {
113 index = *pIndex;
124 *pIndex = thiz->mMaxIndexLED;
145 SLuint32 *pIndex, SLuint32 *pVibraDeviceID, SLVibraDescriptor *pDescriptor)
152 if (NULL != pIndex) {
155 index = *pIndex;
166 *pIndex = thiz->mMaxIndexVibra;
  /external/pdfium/core/src/fxcrt/
fx_basic_array.cpp 168 static void _ClearIndex(IFX_Allocator* pAllcator, int level, int size, void** pIndex)
171 FX_Allocator_Free(pAllcator, pIndex);
175 if (pIndex[i] == NULL) {
178 _ClearIndex(pAllcator, level - 1, size, (void**)pIndex[i]);
180 FX_Allocator_Free(pAllcator, pIndex);
207 void** pIndex = (void**)FX_Allocator_Alloc(m_pAllocator, void*, m_IndexSize);
208 if (pIndex == NULL) {
212 FXSYS_memset32(pIndex, 0, sizeof(void*) * m_IndexSize);
213 pIndex[0] = m_pIndex;
214 pIndex[1] = pSegment;
    [all...]
  /frameworks/wilhelm/src/
devices.h 64 extern SLresult GetCodecCapabilities(SLuint32 decoderId, SLuint32 *pIndex,
devices.c 209 SLresult GetCodecCapabilities(SLuint32 codecId, SLuint32 *pIndex,
212 if (NULL == pIndex) {
223 *pIndex = index;
226 index = *pIndex;
sles_allinclusive.h 415 SLuint32 *pIndex, SLuint32 *pLEDDeviceID, SLLEDDescriptor *pDescriptor);
417 SLuint32 *pIndex, SLuint32 *pVibraDeviceID, SLVibraDescriptor *pDescriptor);
  /external/chromium_org/third_party/sqlite/src/src/
build.c 372 Index *pIndex;
379 pIndex = sqlite3HashInsert(pHash, zIdxName, len, 0);
380 if( ALWAYS(pIndex) ){
381 if( pIndex->pTable->pIndex==pIndex ){
382 pIndex->pTable->pIndex = pIndex->pNext;
387 p = pIndex->pTable->pIndex
    [all...]
analyze.c 165 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
188 ** first index in the pTab->pIndex list, then register regLast has
190 if( pTab->pIndex==pIdx ){
349 if( pTab->pIndex==0 ){
518 Index *pIndex;
535 pIndex = sqlite3FindIndex(pInfo->db, argv[1], pInfo->zDatabase);
537 pIndex = 0;
539 n = pIndex ? pIndex->nColumn : 0;
548 if( pIndex==0 ) break
    [all...]
insert.c 148 Index *pIndex;
153 for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
154 if( tnum==pIndex->tnum ){
    [all...]
update.c 178 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
239 for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){}
244 for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){
348 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
355 for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
528 for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){
delete.c 28 ** pSrc->a[0].pIndex Pointer to the INDEXED BY index, if there is one
301 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
357 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
418 for(i=1, pIdx=pTab->pIndex; pIdx; i++, pIdx=pIdx->pNext){
594 for(i=1, pIdx=pTab->pIndex; pIdx; i++, pIdx=pIdx->pNext){
prepare.c 110 Index *pIndex;
111 pIndex = sqlite3FindIndex(db, argv[0], db->aDb[iDb].zName);
112 if( pIndex==0 ){
119 }else if( sqlite3GetInt32(argv[1], &pIndex->tnum)==0 ){
  /frameworks/compile/mclinker/include/mcld/ADT/
HashIterator.h 173 unsigned int pIndex)
174 : m_pHashTable(pTable), m_Index(pIndex)
283 HashIterator(typename IteratorBase::hash_table* pTable, unsigned int pIndex)
284 : IteratorBase(pTable, pIndex)
  /external/chromium_org/third_party/angle/src/compiler/translator/
ValidateLimitations.cpp 376 ParamIndex pIndex;
382 pIndex.push_back(i);
386 if (pIndex.empty())
394 for (ParamIndex::const_iterator i = pIndex.begin();
395 i != pIndex.end(); ++i)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
certview.h 124 virtual HRESULT WINAPI Next(LONG *pIndex) = 0;
145 HRESULT (WINAPI *Next)(IEnumCERTVIEWCOLUMN *This,LONG *pIndex);
168 #define IEnumCERTVIEWCOLUMN_Next(This,pIndex) (This)->lpVtbl->Next(This,pIndex)
180 HRESULT WINAPI IEnumCERTVIEWCOLUMN_Next_Proxy(IEnumCERTVIEWCOLUMN *This,LONG *pIndex);
208 virtual HRESULT WINAPI Next(LONG *pIndex) = 0;
225 HRESULT (WINAPI *Next)(IEnumCERTVIEWATTRIBUTE *This,LONG *pIndex);
244 #define IEnumCERTVIEWATTRIBUTE_Next(This,pIndex) (This)->lpVtbl->Next(This,pIndex)
252 HRESULT WINAPI IEnumCERTVIEWATTRIBUTE_Next_Proxy(IEnumCERTVIEWATTRIBUTE *This,LONG *pIndex);
    [all...]
certcli.h 182 virtual HRESULT WINAPI Next(LONG *pIndex) = 0;
197 HRESULT (WINAPI *Next)(ICertConfig *This,LONG *pIndex);
214 #define ICertConfig_Next(This,pIndex) (This)->lpVtbl->Next(This,pIndex)
221 HRESULT WINAPI ICertConfig_Next_Proxy(ICertConfig *This,LONG *pIndex);
248 HRESULT (WINAPI *Next)(ICertConfig2 *This,LONG *pIndex);
266 #define ICertConfig2_Next(This,pIndex) (This)->lpVtbl->Next(This,pIndex)
  /frameworks/compile/mclinker/include/mcld/LD/
LDSection.h 182 void setIndex(size_t pIndex)
183 { m_Index = pIndex; }
BranchIsland.h 52 /// @param pIndex - the inedx in the island factory
53 BranchIsland(Fragment& pEntryFrag, size_t pMaxSize, size_t pIndex);
  /frameworks/compile/mclinker/lib/LD/
BranchIsland.cpp 24 size_t pIndex)
33 index << pIndex;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewLayoutAlgorithm.java 289 float pIndex = p * PrecisionSteps;
290 int pFloorIndex = (int) Math.floor(pIndex);
291 int pCeilIndex = (int) Math.ceil(pIndex);
294 float pFraction = (pIndex - pFloorIndex) / (pCeilIndex - pFloorIndex);
  /external/chromium_org/third_party/icu/source/i18n/
bmsearch.cpp 673 int32_t pIndex = plen - 1;
712 while (pIndex >= 0) {
713 uint32_t pce = (*patCEs)[pIndex];
721 int32_t gsOffset = tOffset + (*goodSuffixTable)[pIndex];
726 tOffset += (*badCharacterTable)[tcei->order] - badCharacterTable->minLengthInChars(pIndex + 1);
742 pIndex -= 1;
745 if (pIndex < 0) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaConnection.java 613 int pIndex = subStr.indexOf(PhoneNumberUtils.PAUSE);
615 if (wIndex > 0 && (wIndex < pIndex || pIndex <= 0)) {
617 } else if (pIndex > 0) {
618 subStr = subStr.substring(0, pIndex);

Completed in 802 milliseconds

1 2 3 4 5 6