Searched refs:mOutput (Results 1 – 5 of 5) sorted by relevance
/external/OpenCL-CTS/test_conformance/events/ |
D | action_classes.h | 131 ReadImage2DAction() { mOutput = NULL; } in ReadImage2DAction() 132 virtual ~ReadImage2DAction() { free( mOutput ); } in ~ReadImage2DAction() 136 void *mOutput; variable 147 ReadImage3DAction() { mOutput = NULL; } in ReadImage3DAction() 148 virtual ~ReadImage3DAction() { free( mOutput ); } in ~ReadImage3DAction() 152 void *mOutput; variable 165 void *mOutput; variable 167 WriteImage2DAction() { mOutput = NULL; } in WriteImage2DAction() 168 virtual ~WriteImage2DAction() { free( mOutput ); } in ~WriteImage2DAction() 181 void *mOutput; variable [all …]
|
D | action_classes.cpp | 291 mOutput = malloc( mWidth * mHeight * 4 ); in Setup() 292 if( mOutput == NULL ) in Setup() 305 …cl_int error = clEnqueueReadImage( queue, mImage, CL_FALSE, origin, region, 0, 0, mOutput, numWait… in Execute() 323 mOutput = malloc( mWidth * mHeight * mDepth * 4 ); in Setup() 324 if( mOutput == NULL ) in Setup() 337 …cl_int error = clEnqueueReadImage( queue, mImage, CL_FALSE, origin, region, 0, 0, mOutput, numWait… in Execute() 355 mOutput = malloc( mWidth * mHeight * 4 ); in Setup() 356 if( mOutput == NULL ) in Setup() 369 …cl_int error = clEnqueueWriteImage( queue, mImage, CL_FALSE, origin, region, 0, 0, mOutput, numWai… in Execute() 387 mOutput = malloc( mWidth * mHeight * mDepth * 4 ); in Setup() [all …]
|
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/ |
D | ZipExtractorTask.java | 48 private final File mOutput; field in ZipExtractorTask 72 mOutput = new File(out); in ZipExtractorTask() 73 if (!mOutput.exists()) { in ZipExtractorTask() 74 if (!mOutput.mkdirs()) { in ZipExtractorTask() 75 throw new Sl4aException("Failed to make directories: " + mOutput.getAbsolutePath()); in ZipExtractorTask() 91 Log.v("Extracting " + mInput.getAbsolutePath() + " to " + mOutput.getAbsolutePath()); in onPreExecute() 172 File destination = new File(mOutput, entry.getName()); in unzip()
|
/external/angle/src/compiler/translator/ |
D | OutputGLSLBase.h | 33 ShShaderOutput getShaderOutput() const { return mOutput; } in getShaderOutput() 118 ShShaderOutput mOutput; variable
|
D | OutputGLSLBase.cpp | 99 mOutput(output), in TOutputGLSLBase() 105 if (!sh::RemoveInvariant(mShaderType, mShaderVersion, mOutput, mCompileOptions)) in writeInvariantQualifier() 336 if (sh::IsGLSL410OrOlder(mOutput) && mShaderVersion >= 300 && in mapQualifierToString() 353 if (sh::IsGLSL130OrNewer(mOutput)) in mapQualifierToString()
|