Searched refs:pIndex (Results 1 - 25 of 30) sorted by relevance

12

/external/pdfium/core/src/fxcrt/
H A Dfx_basic_array.cpp168 static void _ClearIndex(IFX_Allocator* pAllcator, int level, int size, void** pIndex) argument
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); local
208 if (pIndex == NULL) {
212 FXSYS_memset32(pIndex, 0, sizeof(void*) * m_IndexSize);
213 pIndex[0] = m_pIndex;
214 pIndex[
222 void** pIndex = GetIndex(seg_index); local
233 void** pIndex = (void**)FX_Allocator_Alloc(m_pAllocator, void*, m_IndexSize); local
297 IterateIndex(int level, int& start, void** pIndex, FX_BOOL (*callback)(void* param, void* pData), void* param) const argument
355 void** pIndex = GetIndex(i); local
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dbuild.c372 Index *pIndex; local
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
509 Index *pIndex, *pNext; local
2309 sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage) argument
2407 Index *pIndex = 0; /* The index to be created */ local
2904 Index *pIndex; local
3598 collationMatch(const char *zColl, Index *pIndex) argument
3618 Index *pIndex; /* An index associated with pTab */ local
3673 Index *pIndex; /* An index associated with pTab */ local
[all...]
H A Danalyze.c165 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; local
535 pIndex = sqlite3FindIndex(pInfo->db, argv[1], pInfo->zDatabase);
537 pIndex = 0;
539 n = pIndex ? pIndex->nColumn : 0;
548 if( pIndex
[all...]
H A Dinsert.c148 Index *pIndex; local
153 for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){
154 if( tnum==pIndex->tnum ){
1015 for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){
1290 }else if( pTab->pIndex ){
1313 for(iCur=0, pIdx=pTab->pIndex; pId
[all...]
H A Dupdate.c178 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++){
H A Ddelete.c28 ** 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){
H A Dprepare.c110 Index *pIndex; local
111 pIndex = sqlite3FindIndex(db, argv[0], db->aDb[iDb].zName);
112 if( pIndex==0 ){
119 }else if( sqlite3GetInt32(argv[1], &pIndex->tnum)==0 ){
H A Dpragma.c932 pIdx = pTab->pIndex;
1122 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
1152 if( pTab->pIndex==0 ) continue;
1160 for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){
1187 for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){
H A Dwhere.c1638 if( pSrc->notIndexed || pSrc->pIndex!=0 ){
2674 ** If there was an INDEXED BY clause (pSrc->pIndex) attached to the table in
2719 if( pSrc->pIndex ){
2721 pIdx = pProbe = pSrc->pIndex;
2738 pFirst = pSrc->pTab->pIndex;
3109 if( pSrc->pIndex ) break;
3127 assert( pSrc->pIndex==0
3129 || pCost->plan.u.pIdx==pSrc->pIndex
3472 Index *pIndex = pPlan->u.pIdx; local
3476 int *aiColumn = pIndex
[all...]
H A Dvdbeblob.c236 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
H A Dalter.c671 if( pNew->pIndex ){
H A DsqliteInt.h1273 Index *pIndex; /* List of SQL indexes on this table. */ member in struct:Table
1853 Index *pIndex; /* Index structure corresponding to zIndex, if any */ member in struct:SrcList::SrcList_item
H A Dfkey.c225 for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){
H A Dvtab.c278 assert( 0==pTable->pIndex );
H A Dselect.c3114 ** pFrom->pIndex and return SQLITE_OK.
3121 for(pIdx=pTab->pIndex;
3130 pFrom->pIndex = pIdx;
4245 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DValidateLimitations.cpp463 ParamIndex pIndex; local
469 pIndex.push_back(i);
473 if (pIndex.empty())
481 for (ParamIndex::const_iterator i = pIndex.begin();
482 i != pIndex.end(); ++i)
/external/icu/icu4c/source/i18n/
H A Dcollationbuilder.cpp597 int32_t pIndex = rootElements.findPrimary(p); local
599 p = rootElements.getPrimaryAfter(p, pIndex, isCompressible);
1371 int32_t pIndex = p == 0 ? 0 : rootElements.findPrimary(p); local
1408 tLimit = rootElements.getTertiaryAfter(pIndex, s, t);
1451 sLimit = rootElements.getSecondaryAfter(pIndex, s);
1490 rootElements.getPrimaryAfter(p, pIndex, isCompressible);
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_imelody.c144 static EAS_INT IMY_ParseLine (EAS_I8 *buffer, EAS_U8 *pIndex);
1710 static EAS_INT IMY_ParseLine (EAS_I8 *buffer, EAS_U8 *pIndex) argument
1726 *pIndex = (EAS_U8) j;
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_imelody.c144 static EAS_INT IMY_ParseLine (EAS_I8 *buffer, EAS_U8 *pIndex);
1710 static EAS_INT IMY_ParseLine (EAS_I8 *buffer, EAS_U8 *pIndex) argument
1726 *pIndex = (EAS_U8) j;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imelody.c144 static EAS_INT IMY_ParseLine (EAS_I8 *buffer, EAS_U8 *pIndex);
1719 static EAS_INT IMY_ParseLine (EAS_I8 *buffer, EAS_U8 *pIndex) argument
1735 *pIndex = (EAS_U8) j;
/external/sqlite/dist/orig/
H A Dsqlite3.c10941 Index *pIndex; /* List of SQL indexes on this table. */ member in struct:Table
11586 Index *pIndex; /* Index structure corresponding to zIndex, if any */ member in struct:SrcList::SrcList_item
84899 Index *pIndex; local
86508 Index *pIndex; local
86653 Index *pIndex, *pNext; local
88744 sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage) argument
88888 Index *pIndex = 0; /* The index to be created */ local
89399 Index *pIndex; local
90112 collationMatch(const char *zColl, Index *pIndex) argument
90132 Index *pIndex; /* An index associated with pTab */ local
90187 Index *pIndex; /* An index associated with pTab */ local
94952 Index *pIndex; local
100672 Index *pIndex; local
110569 Index *pIndex; /* Index used, or NULL */ member in struct:WhereLoop::__anon31018::__anon31019
113641 Index *pIndex = pLoop->u.btree.pIndex; local
115087 Index *pIndex = p->u.btree.pIndex; local
115406 indexMightHelpWithOrderBy( WhereLoopBuilder *pBuilder, Index *pIndex, int iCursor ) argument
116042 Index *pIndex; /* The index associated with pLoop */ local
137542 struct Fts3Index *pIndex = &p->aIndex[i]; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10941 Index *pIndex; /* List of SQL indexes on this table. */ member in struct:Table
11586 Index *pIndex; /* Index structure corresponding to zIndex, if any */ member in struct:SrcList::SrcList_item
84919 Index *pIndex; local
86528 Index *pIndex; local
86673 Index *pIndex, *pNext; local
88764 sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage) argument
88908 Index *pIndex = 0; /* The index to be created */ local
89419 Index *pIndex; local
90132 collationMatch(const char *zColl, Index *pIndex) argument
90152 Index *pIndex; /* An index associated with pTab */ local
90207 Index *pIndex; /* An index associated with pTab */ local
94972 Index *pIndex; local
100692 Index *pIndex; local
110589 Index *pIndex; /* Index used, or NULL */ member in struct:WhereLoop::__anon31049::__anon31050
113661 Index *pIndex = pLoop->u.btree.pIndex; local
115107 Index *pIndex = p->u.btree.pIndex; local
115426 indexMightHelpWithOrderBy( WhereLoopBuilder *pBuilder, Index *pIndex, int iCursor ) argument
116062 Index *pIndex; /* The index associated with pLoop */ local
137574 struct Fts3Index *pIndex = &p->aIndex[i]; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9618 Index *pIndex; /* List of SQL indexes on this table. */ member in struct:Table
10198 Index *pIndex; /* Index structure corresponding to zIndex, if any */ member in struct:SrcList::SrcList_item
75840 Index *pIndex; local
77211 Index *pIndex; local
77348 Index *pIndex, *pNext; local
79148 sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage) argument
79246 Index *pIndex = 0; /* The index to be created */ local
79743 Index *pIndex; local
80437 collationMatch(const char *zColl, Index *pIndex) argument
80457 Index *pIndex; /* An index associated with pTab */ local
80512 Index *pIndex; /* An index associated with pTab */ local
84631 Index *pIndex; local
89172 Index *pIndex; local
101126 Index *pIndex = pPlan->u.pIdx; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/pdfium/core/include/fxcrt/
H A Dfx_basic.h742 void* IterateIndex(int level, int& start, void** pIndex, FX_BOOL (*callback)(void* param, void* pData), void* param) const;
666 FXSYS_assert(index < m_nSize); return *(ObjectClass*)CFX_BasicArray::GetDataPtr(index); } ObjectClass* GetDataPtr(int index) { return (ObjectClass*)CFX_BasicArray::GetDataPtr(index); } void RemoveAt(int index) { FXSYS_assert(index < m_nSize); ((ObjectClass*)GetDataPtr(index))->~ObjectClass(); CFX_BasicArray::RemoveAt(index, 1); } void RemoveAll() { for (int i = 0; i < m_nSize; i ++) { ((ObjectClass*)GetDataPtr(i))->~ObjectClass(); } CFX_BasicArray::SetSize(0, -1); } }; typedef CFX_ObjectArray<CFX_ByteString> CFX_ByteStringArray; typedef CFX_ObjectArray<CFX_WideString> CFX_WideStringArray; class CFX_BaseSegmentedArray : public CFX_Object { public: CFX_BaseSegmentedArray(int unit_size = 1, int segment_units = 512, int index_size = 8, IFX_Allocator* pAllocator = NULL); ~CFX_BaseSegmentedArray(); void SetUnitSize(int unit_size, int segment_units, int index_size = 8); void* Add(); void* GetAt(int index) const; void RemoveAll(); void Delete(int index, int count = 1); int GetSize() const { return m_DataSize; } int GetSegmentSize() const { return m_SegmentSize; } int GetUnitSize() const { return m_UnitSize; } void* Iterate(FX_BOOL (*callback)(void* param, void* pData), void* param) const; IFX_Allocator* m_pAllocator; private: int m_UnitSize; short m_SegmentSize; FX_BYTE m_IndexSize; FX_BYTE m_IndexDepth; int m_DataSize; void* m_pIndex; void** GetIndex(int seg_index) const; void* IterateIndex(int level, int& start, void** pIndex, FX_BOOL (*callback)(void* param, void* pData), void* param) const; void* IterateSegment(FX_LPCBYTE pSegment, int count, FX_BOOL (*callback)(void* param, void* pData), void* param) const; }; template <class ElementType> class CFX_SegmentedArray : public CFX_BaseSegmentedArray { public: CFX_SegmentedArray(int segment_units, int index_size = 8, IFX_Allocator* pAllocator = NULL) : CFX_BaseSegmentedArray(sizeof(ElementType), segment_units, index_size, pAllocator) {} void Add(ElementType data) { *(ElementType*)CFX_BaseSegmentedArray::Add() = data; } ElementType& operator [] (int index) { return *(ElementType*)CFX_BaseSegmentedArray::GetAt(index); } }; template <class DataType, int FixedSize> class CFX_FixedBufGrow : public CFX_Object { public: CFX_FixedBufGrow(IFX_Allocator* pAllocator = NULL) : m_pAllocator(pAllocator) , m_pData(NULL) {} CFX_FixedBufGrow(int data_size, IFX_Allocator* pAllocator = NULL) : m_pAllocator(pAllocator) , m_pData(NULL) { if (data_size > FixedSize) argument

Completed in 8927 milliseconds

12