/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
lbxdeltastr.h | 29 #define DELTA_CACHEABLE(pcache, len) \ 30 ((len) > MIN_CACHEABLE_LEN && (len) <= (pcache)->maxDeltasize) 91 extern int LBXInitDeltaCache ( LBXDeltasPtr pcache, int nDeltas, 93 extern void LBXFreeDeltaCache ( LBXDeltasPtr pcache ); 94 extern int LBXDeltaMinDiffs ( LBXDeltasPtr pcache, unsigned char *inmsg, 96 extern void LBXEncodeDelta ( LBXDeltasPtr pcache, unsigned char *inmsg, 98 extern int LBXDecodeDelta ( LBXDeltasPtr pcache, xLbxDiffItem *deltas, 100 extern void LBXAddDeltaOut ( LBXDeltasPtr pcache, unsigned char *inmsg, 102 extern void LBXAddDeltaIn ( LBXDeltasPtr pcache, unsigned char *inmsg,
|
/dalvik/vm/ |
AtomicCache.cpp | 84 * We only need "pCache" for stats. 89 , AtomicCache* pCache 117 pCache->fail++; 128 pCache->fills++; 130 pCache->misses++; 168 void dvmDumpAtomicCacheStats(const AtomicCache* pCache) 170 if (pCache == NULL) 174 pCache->trivial, pCache->fail, pCache->hits [all...] |
AtomicCache.h | 164 , AtomicCache* pCache 171 void dvmDumpAtomicCacheStats(const AtomicCache* pCache);
|
/dalvik/libdex/ |
DexProto.cpp | 36 void dexStringCacheAlloc(DexStringCache* pCache, size_t length) { 37 if (pCache->allocatedSize != 0) { 38 if (pCache->allocatedSize >= length) { 41 free((void*) pCache->value); 44 if (length <= sizeof(pCache->buffer)) { 45 pCache->value = pCache->buffer; 46 pCache->allocatedSize = 0; 48 pCache->value = (char*) malloc(length); 49 pCache->allocatedSize = length [all...] |
DexProto.h | 43 void dexStringCacheAlloc(DexStringCache* pCache, size_t length); 49 void dexStringCacheInit(DexStringCache* pCache); 55 void dexStringCacheRelease(DexStringCache* pCache); 64 char* dexStringCacheEnsureCopy(DexStringCache* pCache, const char* value); 73 char* dexStringCacheAbandon(DexStringCache* pCache, const char* value); 104 DexStringCache* pCache); 118 DexStringCache* pCache); 124 const DexMethodId* pMethodId, DexStringCache* pCache) 129 return dexProtoGetMethodDescriptor(&proto, pCache);
|
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/ |
ndapi.c | 676 NJ_SEARCH_CACHE *pCache; 743 pCache = cursor->cond.ds->dic[diccnt].srhCache; 744 if (pCache != NULL) { 746 if (NJ_GET_CACHEOVER_FROM_SCACHE(pCache)) { 749 if (pCache->keyPtr[cacheOverKeyPtr] == pCache->keyPtr[cacheOverKeyPtr + 1] ) { 762 pCache->keyPtr[clrcnt] = 0x0000; 766 if ((pCache->keyPtr[clrcnt - 1] > pCache->keyPtr[clrcnt]) && 767 (pCache->keyPtr[clrcnt] != 0)) [all...] |
/external/bluetooth/bluez/src/ |
sdpd-request.c | 471 sdp_buf_t *pCache = sdp_get_cached_rsp(cstate); 472 if (pCache) { 473 pCacheBuffer = pCache->data; 712 sdp_buf_t *pCache = sdp_get_cached_rsp(cstate); 714 SDPDBG("Obtained cached rsp : %p", pCache); 716 if (pCache) { 717 short sent = MIN(max_rsp_size, pCache->data_size - cstate->cStateValue.maxBytesSent); 718 pResponse = pCache->data; 724 pCache->data_size, sent, cstate->cStateValue.maxBytesSent); 725 if (cstate->cStateValue.maxBytesSent == pCache->data_size [all...] |
/dalvik/vm/oo/ |
Class.h | 193 DexStringCache *pCache) 196 dexProtoGetMethodDescriptor(&method->prototype, pCache); 197 return dexStringCacheEnsureCopy(pCache, result);
|
/external/srec/srec/clib/ |
swicms.c | 454 imeldata *pcache, *pframe; local 460 pcache = swicms->cached_sections[ i]; 463 for (i = 0; i < MAX_CHAN_DIM; i++) *pcache++ = 0; 464 pcache -= MAX_CHAN_DIM; 467 for (i = 0; i < MAX_CHAN_DIM; i++) *pcache++ += *pframe++;
|
/external/quake/quake/src/QW/server/ |
pr_edict.c | 43 ddef_t *pcache;
member in struct:__anon10418 246 def = gefvCache[i].pcache;
255 gefvCache[rep].pcache = def;
|
/external/quake/quake/src/WinQuake/ |
pr_edict.cpp | 57 ddef_t *pcache; member in struct:__anon10662 251 def = gefvCache[i].pcache; 260 gefvCache[rep].pcache = def;
|
/external/sqlite/dist/ |
sqlite3.c | 10547 sqlite3_pcache_methods pcache; \/* Low-level page-cache interface *\/ member in struct:Sqlite3Config [all...] |
sqlite3.c.orig | [all...] |
shell.c | 993 ** fprintf(pArg->out, "Number of Pcache Pages Used: %d (max %d) pages\n", iCur, iHiwtr); 997 fprintf(pArg->out, "Number of Pcache Overflow Bytes: %d (max %d) bytes\n", iCur, iHiwtr); 1012 fprintf(pArg->out, "Largest Pcache Allocation: %d bytes\n", iHiwtr); [all...] |
shell.c.orig | 988 ** fprintf(pArg->out, "Number of Pcache Pages Used: %d (max %d) pages\n", iCur, iHiwtr); 992 fprintf(pArg->out, "Number of Pcache Overflow Bytes: %d (max %d) bytes\n", iCur, iHiwtr); 1007 fprintf(pArg->out, "Largest Pcache Allocation: %d bytes\n", iHiwtr); [all...] |
/dalvik/hit/samples/ |
android.hprof | [all...] |