Home
last modified time | relevance | path

Searched refs:pfs (Results 1 – 5 of 5) 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.cpp627 void Context::setProgramStore(ProgramStore *pfs) { in setProgramStore() argument
629 if (pfs == nullptr) { in setProgramStore()
632 mFragmentStore.set(pfs); in setProgramStore()
774 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs); in rsi_ContextBindProgramStore() local
775 rsc->setProgramStore(pfs); in rsi_ContextBindProgramStore()
/frameworks/av/media/libnblog/
DReportPerformance.cpp289 std::ofstream pfs; in writeToFile() local
290 pfs.open(peakName.str(), append ? std::ios::app : std::ios::trunc); in writeToFile()
291 if (!pfs.is_open()) { in writeToFile()
297 pfs << *peak; in writeToFile()
299 pfs << ", "; in writeToFile()
302 pfs.close(); in writeToFile()
/frameworks/base/rs/java/android/renderscript/
DRenderScript.java296 native void rsnContextBindProgramStore(long con, long pfs); in rsnContextBindProgramStore() argument
297 synchronized void nContextBindProgramStore(long pfs) { in nContextBindProgramStore() argument
299 rsnContextBindProgramStore(mContext, pfs); in nContextBindProgramStore()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp2584 nContextBindProgramStore(JNIEnv *_env, jobject _this, jlong con, jlong pfs) in nContextBindProgramStore() argument
2587 ALOGD("nContextBindProgramStore, con(%p), pfs(%p)", (RsContext)con, (RsProgramStore)pfs); in nContextBindProgramStore()
2589 rsContextBindProgramStore((RsContext)con, (RsProgramStore)pfs); in nContextBindProgramStore()