Home
last modified time | relevance | path

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

/frameworks/rs/
DrsProgramStore.cpp112 ProgramStore *pfs = new ProgramStore(rsc, in getProgramStore() local
116 returnRef.set(pfs); in getProgramStore()
118 pfs->init(); in getProgramStore()
121 rsc->mStateFragmentStore.mStorePrograms.push_back(pfs); in getProgramStore()
DrsContext.cpp628 void Context::setProgramStore(ProgramStore *pfs) { in setProgramStore() argument
630 if (pfs == nullptr) { in setProgramStore()
633 mFragmentStore.set(pfs); in setProgramStore()
775 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs); in rsi_ContextBindProgramStore() local
776 rsc->setProgramStore(pfs); in rsi_ContextBindProgramStore()
/frameworks/base/rs/java/android/renderscript/
DRenderScript.java292 native void rsnContextBindProgramStore(long con, long pfs); in rsnContextBindProgramStore() argument
293 synchronized void nContextBindProgramStore(long pfs) { in nContextBindProgramStore() argument
295 rsnContextBindProgramStore(mContext, pfs); in nContextBindProgramStore()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp2576 nContextBindProgramStore(JNIEnv *_env, jobject _this, jlong con, jlong pfs) in nContextBindProgramStore() argument
2579 ALOGD("nContextBindProgramStore, con(%p), pfs(%p)", (RsContext)con, (RsProgramStore)pfs); in nContextBindProgramStore()
2581 rsContextBindProgramStore((RsContext)con, (RsProgramStore)pfs); in nContextBindProgramStore()