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.h1771 int (*xSize)(void*); /* Return the size of an allocation */ member
H A Dshell.c2583 fprintf(memtraceOut, "MEMTRACE: free %d bytes\n", memtraceBase.xSize(p)); in memtraceFree()
2595 memtraceBase.xSize(p), memtraceBase.xRoundup(n)); in memtraceRealloc()
2600 return memtraceBase.xSize(p); in memtraceSize()
H A Dsqlite3.c2084 int (*xSize)(void*); /* Return the size of an allocation */ member
30582 return sqlite3GlobalConfig.m.xSize((void*)p); in sqlite3MallocSize()
30616 return sqlite3GlobalConfig.m.xSize((void*)p); in sqlite3DbMallocSize()
30621 return p ? sqlite3GlobalConfig.m.xSize(p) : 0; in sqlite3_msize()