Searched refs:numCommands (Results 1 – 8 of 8) sorted by relevance
/external/lzma/Java/SevenZip/ |
D | LzmaBench.java | 240 long numCommands = (long)(size) * numCommandsForOne; in GetCompressRating() local 241 return MyMultDiv64(numCommands, elapsedTime); in GetCompressRating() 246 long numCommands = inSize * 220 + outSize * 20; in GetDecompressRating() local 247 return MyMultDiv64(numCommands, elapsedTime); in GetDecompressRating()
|
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
D | LzmaBench.cs | 190 UInt64 numCommands = (UInt64)(size) * numCommandsForOne; in GetCompressRating() 191 return MyMultDiv64(numCommands, elapsedTime); in GetCompressRating() 196 UInt64 numCommands = inSize * 220 + outSize * 20; in GetDecompressRating() 197 return MyMultDiv64(numCommands, elapsedTime); in GetDecompressRating()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Bench.cpp | 534 UInt64 CBenchInfo::GetSpeed(UInt64 numCommands) const in GetSpeed() 536 return MyMultDiv64(numCommands, GlobalTime, GlobalFreq); in GetSpeed() 582 UInt64 numCommands = (UInt64)size * encComplex; in GetCompressRating() local 583 return MyMultDiv64(numCommands, elapsedTime, freq); in GetCompressRating() 588 UInt64 numCommands = (inSize * DecComplexCompr + outSize * DecComplexUnc) * numIterations; in GetDecompressRating() local 589 return MyMultDiv64(numCommands, elapsedTime, freq); in GetDecompressRating() 1013 static UInt64 GetNumIterations(UInt64 numCommands, UInt64 complexInCommands) in GetNumIterations() argument 1015 if (numCommands < (1 << 4)) in GetNumIterations() 1016 numCommands = (1 << 4); in GetNumIterations() 1017 UInt64 res = complexInCommands / numCommands; in GetNumIterations() [all …]
|
D | Bench.h | 22 UInt64 GetSpeed(UInt64 numCommands) const;
|
/external/deqp/modules/glshared/ |
D | glsInteractionTestUtil.hpp | 123 void computeRandomRenderCommands (de::Random& rnd, glu::ApiType apiType, int numCommands, int tar…
|
D | glsInteractionTestUtil.cpp | 254 void computeRandomRenderCommands (de::Random& rnd, glu::ApiType apiType, int numCommands, int targe… in computeRandomRenderCommands() argument 258 dst.resize(numCommands); in computeRandomRenderCommands()
|
/external/skia/include/gpu/gl/ |
D | GrGLFunctions.h | 188 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLPathCommandsProc)(GrGLuint path, GrGLsizei numCommands, …
|
/external/mesa3d/include/GL/ |
D | glext.h | 12567 GLAPI void APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GL… 12569 … (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte … 12617 typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *… 12619 … (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte …
|