Home | History | Annotate | Download | only in cpu_ref

Lines Matching refs:mScratch

41     void **mScratch;
317 if ((info->dim.x > cp->mScratchSize[info->lid]) || !cp->mScratch[info->lid]) {
319 cp->mScratch[info->lid] = realloc(cp->mScratch[info->lid], (info->dim.x + 1) * 16);
323 buf = (float4 *) ((((intptr_t)cp->mScratch[info->lid]) + 15) & ~0xf);
456 mScratch = new void *[mCtx->getThreadCount()];
458 memset(mScratch, 0, sizeof(void *) * mCtx->getThreadCount());
466 if (mScratch) {
468 if (mScratch[i]) {
469 free(mScratch[i]);
472 delete []mScratch;