Searched refs:pfs (Results 1 – 5 of 5) sorted by relevance
/frameworks/rs/ |
D | rsProgramStore.cpp | 112 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()
|
D | rsContext.cpp | 627 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/ |
D | ReportPerformance.cpp | 289 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/ |
D | RenderScript.java | 296 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/ |
D | android_renderscript_RenderScript.cpp | 2584 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()
|