Home
last modified time | relevance | path

Searched refs:xSize (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/wpa/src/utils/
H A Dhttp_curl.c315 ASN1_INTEGER *xSize; member
388 ASN1_SIMPLE(LogotypeImageInfo, xSize, ASN1_INTEGER),
643 val = ASN1_INTEGER_get(info->xSize); in i2r_LogotypeImageInfo()
/freebsd/contrib/sqlite3/
H A Dsqlite3.h1818 int (*xSize)(void*); /* Return the size of an allocation */ member
H A Dshell.c4120 fprintf(memtraceOut, "MEMTRACE: free %d bytes\n", memtraceBase.xSize(p)); in memtraceFree()
4132 memtraceBase.xSize(p), memtraceBase.xRoundup(n)); in memtraceRealloc()
4137 return memtraceBase.xSize(p); in memtraceSize()
H A Dsqlite3.c2139 int (*xSize)(void*); /* Return the size of an allocation */ member
31793 return sqlite3GlobalConfig.m.xSize((void*)p); in sqlite3MallocSize()
31827 return sqlite3GlobalConfig.m.xSize((void*)p); in sqlite3DbMallocSize()
31832 return p ? sqlite3GlobalConfig.m.xSize(p) : 0; in sqlite3_msize()