Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/bytecode/
DAnnotationsAttribute.java532 ConstPool srcPool, destPool; field in AnnotationsAttribute.Copier
556 srcPool = src; in Copier()
632 return srcPool.copy(srcIndex, destPool, classnames); in copy()
646 String name = srcPool.getUtf8Info(srcIndex); in copyType()
DStackMapTable.java426 private ConstPool srcPool, destPool; field in StackMapTable.Copier
431 srcPool = src; in Copier()
439 return srcPool.copy(data, destPool, classnames); in copyData()
448 newData[i] = srcPool.copy(data[i], destPool, classnames); in copyData()
DTypeAnnotationsAttribute.java291 ConstPool srcPool, destPool; field in TypeAnnotationsAttribute.SubCopier
299 srcPool = src; in SubCopier()
/external/zstd/lib/compress/
Dzstdmt_compress.c379 static ZSTDMT_CCtxPool* ZSTDMT_expandCCtxPool(ZSTDMT_CCtxPool* srcPool, in ZSTDMT_expandCCtxPool() argument
382 if (srcPool==NULL) return NULL; in ZSTDMT_expandCCtxPool()
383 if (nbWorkers <= srcPool->totalCCtx) return srcPool; /* good enough */ in ZSTDMT_expandCCtxPool()
385 { ZSTD_customMem const cMem = srcPool->cMem; in ZSTDMT_expandCCtxPool()
386 ZSTDMT_freeCCtxPool(srcPool); in ZSTDMT_expandCCtxPool()