OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pMem
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
vdbemem.c
28
** 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){
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
->enc!=desiredEnc)
[
all
...]
utf.c
200
** 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){
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
, zBuf)
[
all
...]
vdbeaux.c
909
Mem *
pMem
= pOp->p4.
pMem
;
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
->flags & MEM_Blob )
[
all
...]
vdbeInt.h
248
Mem *
pMem
; /* Memory cell used to store aggregate 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
);
vdbe.c
161
** 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
){
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
= &p->aMem[p->nMem-iCur]
[
all
...]
vdbeapi.c
561
Mem *
pMem
;
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
->u.pDef = p->pFunc
[
all
...]
vdbe.h
59
Mem *
pMem
; /* Used when p4type is P4_MEM */
os_unix.c
[
all
...]
/external/libnfc-nxp/Linux_x86/
phOsalNfc.c
63
void *
pMem
= (void *)malloc(size);
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
)
75
if(NULL !=
pMem
)
76
free(
pMem
);
/external/libnfc-nxp/src/
phOsalNfc.h
188
* \param[in]
pMem
Pointer to the memory block to deallocated
191
void phOsalNfc_FreeMemory(void *
pMem
);
/external/aac/libFDK/src/
FDK_hybrid.cpp
213
FIXP_DBL *
pMem
= NULL;
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
; pMem += (cplxBands-setup->nrQmfBands)
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 1207 milliseconds