Searched refs:pMem (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbemem.c28 ** If pMem is an object with a valid string representation, this routine
32 ** If pMem is not a string object, or the encoding of the string
40 int sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc){ argument
42 assert( (pMem->flags&MEM_RowSet)==0 );
45 if( !(pMem->flags&MEM_Str) || pMem->enc==desiredEnc ){
48 assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) );
56 rc = sqlite3VdbeMemTranslate(pMem, (u8)desiredEnc);
58 assert(rc==SQLITE_OK || pMem
77 sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve) argument
122 sqlite3VdbeMemMakeWriteable(Mem *pMem) argument
148 sqlite3VdbeMemExpandBlob(Mem *pMem) argument
176 sqlite3VdbeMemNulTerminate(Mem *pMem) argument
203 sqlite3VdbeMemStringify(Mem *pMem, int enc) argument
247 sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc) argument
360 sqlite3VdbeIntValue(Mem *pMem) argument
386 sqlite3VdbeRealValue(Mem *pMem) argument
408 sqlite3VdbeIntegerAffinity(Mem *pMem) argument
437 sqlite3VdbeMemIntegerify(Mem *pMem) argument
451 sqlite3VdbeMemRealify(Mem *pMem) argument
468 sqlite3VdbeMemNumerify(Mem *pMem) argument
488 sqlite3VdbeMemSetNull(Mem *pMem) argument
505 sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n) argument
527 sqlite3VdbeMemSetInt64(Mem *pMem, i64 val) argument
539 sqlite3VdbeMemSetDouble(Mem *pMem, double val) argument
555 sqlite3VdbeMemSetRowSet(Mem *pMem) argument
597 sqlite3VdbeMemPrepareToChange(Vdbe *pVdbe, Mem *pMem) argument
688 sqlite3VdbeMemSetStr( Mem *pMem, const char *z, int n, u8 enc, void (*xDel)(void*) ) argument
[all...]
H A Dutf.c200 ** This routine transforms the internal text encoding used by pMem to
202 ** encoding, or if *pMem does not contain a string value.
204 int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ argument
212 assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) );
213 assert( pMem->flags&MEM_Str );
214 assert( pMem->enc!=desiredEnc );
215 assert( pMem->enc!=0 );
216 assert( pMem->n>=0 );
221 sqlite3VdbeMemPrettyPrint(pMem, zBu
348 sqlite3VdbeMemHandleBom(Mem *pMem) argument
[all...]
H A Dvdbeaux.c909 Mem *pMem = pOp->p4.pMem; local
910 assert( (pMem->flags & MEM_Null)==0 );
911 if( pMem->flags & MEM_Str ){
912 zP4 = pMem->z;
913 }else if( pMem->flags & MEM_Int ){
914 sqlite3_snprintf(nTemp, zTemp, "%lld", pMem->u.i);
915 }else if( pMem->flags & MEM_Real ){
916 sqlite3_snprintf(nTemp, zTemp, "%.16g", pMem->r);
918 assert( pMem
1134 Mem *pMem = p->pResultSet = &p->aMem[1]; /* First Mem of result set */ local
2523 sqlite3VdbeSerialType(Mem *pMem, int file_format) argument
2647 sqlite3VdbeSerialPut(u8 *buf, int nBuf, Mem *pMem, int file_format) argument
2818 Mem *pMem; local
2867 Mem *pMem; local
3182 Mem *pMem = &v->aVar[iVar-1]; local
[all...]
H A DvdbeInt.h248 Mem *pMem; /* Memory cell used to store aggregate context */ member in struct:sqlite3_context
385 int sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve);
389 void sqlite3VdbeMemStoreType(Mem *pMem);
412 void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf);
414 int sqlite3VdbeMemHandleBom(Mem *pMem);
H A Dvdbe.c161 ** Argument pMem points at a register that will be passed to a
163 ** This routine sets the pMem->type variable used by the sqlite3_value_*()
166 void sqlite3VdbeMemStoreType(Mem *pMem){ argument
167 int flags = pMem->flags;
169 pMem->type = SQLITE_NULL;
172 pMem->type = SQLITE_INTEGER;
175 pMem->type = SQLITE_FLOAT;
178 pMem->type = SQLITE_TEXT;
180 pMem->type = SQLITE_BLOB;
213 Mem *pMem local
316 Mem *pMem = (Mem*)pVal; local
341 sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf) argument
1085 Mem *pMem; local
3697 Mem *pMem; /* Register holding largest rowid for AUTOINCREMENT */ local
4911 Mem *pMem; /* Used to iterate through memory cells */ local
5163 Mem *pMem; local
5220 Mem *pMem; local
5251 Mem *pMem; /* Write results here */ local
[all...]
H A Dvdbeapi.c561 Mem *pMem; local
564 pMem = p->pMem;
566 if( (pMem->flags & MEM_Agg)==0 ){
568 sqlite3VdbeMemReleaseExternal(pMem);
569 pMem->flags = MEM_Null;
570 pMem->z = 0;
572 sqlite3VdbeMemGrow(pMem, nByte, 0);
573 pMem->flags = MEM_Agg;
574 pMem
[all...]
H A Dvdbe.h59 Mem *pMem; /* Used when p4type is P4_MEM */ member in union:VdbeOp::__anon15536
H A Dos_unix.c3956 void *pMem; local
3958 pMem = mmap(0, szRegion, PROT_READ|PROT_WRITE,
3961 if( pMem==MAP_FAILED ){
3966 pMem = sqlite3_malloc(szRegion);
3967 if( pMem==0 ){
3971 memset(pMem, 0, szRegion);
3973 pShmNode->apRegion[pShmNode->nRegion] = pMem;
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Module.h20 virtual void *JBig2_Realloc(FX_LPVOID pMem, FX_DWORD dwSize) = 0;
22 virtual void JBig2_Free(FX_LPVOID pMem) = 0;
/external/libnfc-nxp/Linux_x86/
H A DphOsalNfc.c63 void *pMem = (void *)malloc(size); local
64 return pMem;
69 * This function deallocates memory region pointed to by \a pMem.
71 * \param pMem pointer to memory block to be freed.
73 void phOsalNfc_FreeMemory(void *pMem) argument
75 if(NULL != pMem)
76 free(pMem);
/external/libnfc-nxp/src/
H A DphOsalNfc.h188 * \param[in] pMem Pointer to the memory block to deallocated
191 void phOsalNfc_FreeMemory(void * pMem);
/external/pdfium/core/src/fxcodec/codec/
H A Dcodec_int.h223 virtual void *JBig2_Realloc(FX_LPVOID pMem, FX_DWORD dwSize) argument
225 return FX_Realloc(FX_BYTE, pMem, dwSize);
227 virtual void JBig2_Free(FX_LPVOID pMem) argument
229 FX_Free(pMem);
/external/srec/portable/src/
H A Dpmemfixed.c588 void PortFree(void* pMem) argument
598 tmpVal = ((unsigned int*)pMem)[-MEM_BLOCK_HDR_OFFSET+MEM_POOL_ID_OFFSET];
603 ((unsigned int*)pMem)[-MEM_BLOCK_HDR_OFFSET+NEXT_BLOCK_PTR_OFFSET] = (unsigned int)pCurrentHead;
604 pMemPools[poolId] = (char*) & (((unsigned int*)pMem)[-MEM_BLOCK_HDR_OFFSET]);
/external/aac/libFDK/src/
H A DFDK_hybrid.cpp213 FIXP_DBL *pMem = NULL; local
240 pMem = hAnalysisHybFilter->pLFmemory;
242 hAnalysisHybFilter->bufferLFReal[k] = pMem; pMem += setup->protoLen;
243 hAnalysisHybFilter->bufferLFImag[k] = pMem; pMem += setup->protoLen;
247 pMem = hAnalysisHybFilter->pHFmemory;
249 hAnalysisHybFilter->bufferHFReal[k] = pMem; pMem += (qmfBands-setup->nrQmfBands);
250 hAnalysisHybFilter->bufferHFImag[k] = pMem; pMe
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c7929 Mem *pMem; /* Used when p4type is P4_MEM */ member in union:VdbeOp::__anon15458
12462 Mem *pMem; /* Memory cell used to store aggregate context */ member in struct:sqlite3_context
12599 SQLITE_PRIVATE int sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve);
12603 SQLITE_PRIVATE void sqlite3VdbeMemStoreType(Mem *pMem);
12626 SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf);
12628 SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem);
19859 ** This routine transforms the internal text encoding used by pMem to
19861 ** encoding, or if *pMem does not contain a string value.
19863 SQLITE_PRIVATE int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ argument
19871 assert( pMem
20007 sqlite3VdbeMemHandleBom(Mem *pMem) argument
28097 void *pMem; local
56005 sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc) argument
56042 sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve) argument
56087 sqlite3VdbeMemMakeWriteable(Mem *pMem) argument
56113 sqlite3VdbeMemExpandBlob(Mem *pMem) argument
56141 sqlite3VdbeMemNulTerminate(Mem *pMem) argument
56168 sqlite3VdbeMemStringify(Mem *pMem, int enc) argument
56212 sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc) argument
56325 sqlite3VdbeIntValue(Mem *pMem) argument
56351 sqlite3VdbeRealValue(Mem *pMem) argument
56373 sqlite3VdbeIntegerAffinity(Mem *pMem) argument
56402 sqlite3VdbeMemIntegerify(Mem *pMem) argument
56416 sqlite3VdbeMemRealify(Mem *pMem) argument
56433 sqlite3VdbeMemNumerify(Mem *pMem) argument
56453 sqlite3VdbeMemSetNull(Mem *pMem) argument
56470 sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n) argument
56492 sqlite3VdbeMemSetInt64(Mem *pMem, i64 val) argument
56504 sqlite3VdbeMemSetDouble(Mem *pMem, double val) argument
56520 sqlite3VdbeMemSetRowSet(Mem *pMem) argument
56562 sqlite3VdbeMemPrepareToChange(Vdbe *pVdbe, Mem *pMem) argument
56653 sqlite3VdbeMemSetStr( Mem *pMem, const char *z, int n, u8 enc, void (*xDel)(void*) ) argument
58034 Mem *pMem = pOp->p4.pMem; local
58259 Mem *pMem = p->pResultSet = &p->aMem[1]; /* First Mem of result set */ local
59648 sqlite3VdbeSerialType(Mem *pMem, int file_format) argument
59772 sqlite3VdbeSerialPut(u8 *buf, int nBuf, Mem *pMem, int file_format) argument
59943 Mem *pMem; local
59992 Mem *pMem; local
60307 Mem *pMem = &v->aVar[iVar-1]; local
60895 Mem *pMem; local
61982 sqlite3VdbeMemStoreType(Mem *pMem) argument
62029 Mem *pMem = &p->aMem[p->nMem-iCur]; local
62132 Mem *pMem = (Mem*)pVal; local
62157 sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf) argument
62498 Mem *pMem; member in struct:vdbeExecUnion::OP_ResultRow_stack_vars
62682 Mem *pMem; /* Register holding largest rowid for AUTOINCREMENT */ member in struct:vdbeExecUnion::OP_NewRowid_stack_vars
62791 Mem *pMem; /* Used to iterate through memory cells */ member in struct:vdbeExecUnion::OP_Program_stack_vars
62808 Mem *pMem; member in struct:vdbeExecUnion::OP_AggStep_stack_vars
62814 Mem *pMem; member in struct:vdbeExecUnion::OP_AggFinal_stack_vars
62819 Mem *pMem; /* Write results here */ member in struct:vdbeExecUnion::OP_Checkpoint_stack_vars
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c9148 Mem *pMem; /* Used when p4type is P4_MEM */ member in union:VdbeOp::__anon30998
14129 Mem *pMem; /* Memory cell used to store aggregate context */ member in struct:sqlite3_context
14295 SQLITE_PRIVATE int sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve);
14332 SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf);
14334 SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem);
21904 ** This routine transforms the internal text encoding used by pMem to
21906 ** encoding, or if *pMem does not contain a string value.
21908 SQLITE_PRIVATE int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ argument
21916 assert( pMem->db==0 || sqlite3_mutex_held(pMem
22050 sqlite3VdbeMemHandleBom(Mem *pMem) argument
28721 void *pMem; local
60889 sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc) argument
60924 sqlite3VdbeMemGrow(Mem *pMem, int n, int bPreserve) argument
60972 sqlite3VdbeMemMakeWriteable(Mem *pMem) argument
60998 sqlite3VdbeMemExpandBlob(Mem *pMem) argument
61026 sqlite3VdbeMemNulTerminate(Mem *pMem) argument
61053 sqlite3VdbeMemStringify(Mem *pMem, int enc) argument
61097 sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc) argument
61197 sqlite3VdbeIntValue(Mem *pMem) argument
61223 sqlite3VdbeRealValue(Mem *pMem) argument
61245 sqlite3VdbeIntegerAffinity(Mem *pMem) argument
61274 sqlite3VdbeMemIntegerify(Mem *pMem) argument
61288 sqlite3VdbeMemRealify(Mem *pMem) argument
61305 sqlite3VdbeMemNumerify(Mem *pMem) argument
61325 sqlite3VdbeMemSetNull(Mem *pMem) argument
61344 sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n) argument
61365 sqlite3VdbeMemSetInt64(Mem *pMem, i64 val) argument
61376 sqlite3VdbeMemSetDouble(Mem *pMem, double val) argument
61391 sqlite3VdbeMemSetRowSet(Mem *pMem) argument
61433 sqlite3VdbeMemAboutToChange(Vdbe *pVdbe, Mem *pMem) argument
61525 sqlite3VdbeMemSetStr( Mem *pMem, const char *z, int n, u8 enc, void (*xDel)(void*) ) argument
62131 Mem *pMem = *ppVal; /* Write result into this Mem object */ local
63287 Mem *pMem = pOp->p4.pMem; local
63526 Mem *pMem = &p->aMem[1]; /* First Mem of result set */ local
65017 sqlite3VdbeSerialType(Mem *pMem, int file_format) argument
65135 sqlite3VdbeSerialPut(u8 *buf, Mem *pMem, u32 serial_type) argument
65337 Mem *pMem = p->aMem; local
66204 Mem *pMem = &v->aVar[iVar-1]; local
66858 Mem *pMem; local
68101 Mem *pMem = &p->aMem[p->nMem-iCur]; local
68202 Mem *pMem = (Mem*)pVal; local
68228 numericType(Mem *pMem) argument
68249 sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf) argument
69218 Mem *pMem; local
71966 Mem *pMem; /* Register holding largest rowid for AUTOINCREMENT */ local
73382 Mem *pMem; /* Used to iterate through memory cells */ local
73648 Mem *pMem; local
73711 Mem *pMem; local
73742 Mem *pMem; /* Write results here */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c9148 Mem *pMem; /* Used when p4type is P4_MEM */ member in union:VdbeOp::__anon31029
14129 Mem *pMem; /* Memory cell used to store aggregate context */ member in struct:sqlite3_context
14295 SQLITE_PRIVATE int sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve);
14332 SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf);
14334 SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem);
21904 ** This routine transforms the internal text encoding used by pMem to
21906 ** encoding, or if *pMem does not contain a string value.
21908 SQLITE_PRIVATE int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ argument
21916 assert( pMem->db==0 || sqlite3_mutex_held(pMem
22050 sqlite3VdbeMemHandleBom(Mem *pMem) argument
28741 void *pMem; local
60909 sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc) argument
60944 sqlite3VdbeMemGrow(Mem *pMem, int n, int bPreserve) argument
60992 sqlite3VdbeMemMakeWriteable(Mem *pMem) argument
61018 sqlite3VdbeMemExpandBlob(Mem *pMem) argument
61046 sqlite3VdbeMemNulTerminate(Mem *pMem) argument
61073 sqlite3VdbeMemStringify(Mem *pMem, int enc) argument
61117 sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc) argument
61217 sqlite3VdbeIntValue(Mem *pMem) argument
61243 sqlite3VdbeRealValue(Mem *pMem) argument
61265 sqlite3VdbeIntegerAffinity(Mem *pMem) argument
61294 sqlite3VdbeMemIntegerify(Mem *pMem) argument
61308 sqlite3VdbeMemRealify(Mem *pMem) argument
61325 sqlite3VdbeMemNumerify(Mem *pMem) argument
61345 sqlite3VdbeMemSetNull(Mem *pMem) argument
61364 sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n) argument
61385 sqlite3VdbeMemSetInt64(Mem *pMem, i64 val) argument
61396 sqlite3VdbeMemSetDouble(Mem *pMem, double val) argument
61411 sqlite3VdbeMemSetRowSet(Mem *pMem) argument
61453 sqlite3VdbeMemAboutToChange(Vdbe *pVdbe, Mem *pMem) argument
61545 sqlite3VdbeMemSetStr( Mem *pMem, const char *z, int n, u8 enc, void (*xDel)(void*) ) argument
62151 Mem *pMem = *ppVal; /* Write result into this Mem object */ local
63307 Mem *pMem = pOp->p4.pMem; local
63546 Mem *pMem = &p->aMem[1]; /* First Mem of result set */ local
65037 sqlite3VdbeSerialType(Mem *pMem, int file_format) argument
65155 sqlite3VdbeSerialPut(u8 *buf, Mem *pMem, u32 serial_type) argument
65357 Mem *pMem = p->aMem; local
66224 Mem *pMem = &v->aVar[iVar-1]; local
66878 Mem *pMem; local
68121 Mem *pMem = &p->aMem[p->nMem-iCur]; local
68222 Mem *pMem = (Mem*)pVal; local
68248 numericType(Mem *pMem) argument
68269 sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf) argument
69238 Mem *pMem; local
71986 Mem *pMem; /* Register holding largest rowid for AUTOINCREMENT */ local
73402 Mem *pMem; /* Used to iterate through memory cells */ local
73668 Mem *pMem; local
73731 Mem *pMem; local
73762 Mem *pMem; /* Write results here */ local
[all...]

Completed in 4983 milliseconds