Searched refs:expectedSize (Results 26 - 38 of 38) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.h836 void vertexAttribfImpl(const char* functionName, GLuint index, GLsizei expectedSize, GLfloat, GLfloat, GLfloat, GLfloat);
837 void vertexAttribfvImpl(const char* functionName, GLuint index, Float32Array*, GLsizei expectedSize);
838 void vertexAttribfvImpl(const char* functionName, GLuint index, GLfloat*, GLsizei, GLsizei expectedSize);
H A DWebGLRenderingContextBase.cpp5374 void WebGLRenderingContextBase::vertexAttribfImpl(const char* functionName, GLuint index, GLsizei expectedSize, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) argument
5383 switch (expectedSize) {
5404 void WebGLRenderingContextBase::vertexAttribfvImpl(const char* functionName, GLuint index, Float32Array* v, GLsizei expectedSize) argument
5412 vertexAttribfvImpl(functionName, index, v->data(), v->length(), expectedSize);
5415 void WebGLRenderingContextBase::vertexAttribfvImpl(const char* functionName, GLuint index, GLfloat* v, GLsizei size, GLsizei expectedSize) argument
5423 if (size < expectedSize) {
5432 switch (expectedSize) {
5448 for (int ii = 0; ii < expectedSize; ++ii)
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMultimapTest.java93 protected void assertSize(int expectedSize) { argument
94 assertEquals(expectedSize, multimap.size());
101 assertEquals(expectedSize, size);
108 assertEquals(expectedSize, size2);
H A DArrayTableTest.java48 @Override protected void assertSize(int expectedSize) { argument
H A DMapsTest.java156 for (int expectedSize : largeExpectedSizes) {
157 int capacity = Maps.capacity(expectedSize);
159 "capacity (" + capacity + ") must be >= expectedSize (" + expectedSize + ")",
160 capacity >= expectedSize);
/external/deqp/modules/gles3/functional/
H A Des3fShaderTextureFunctionTests.cpp1032 tcu::IVec3 expectedSize; member in struct:deqp::gles3::Functional::TextureSizeCase::TestSize
1229 m_context.getTestContext().getLog() << TestLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize.expectedSize.y() << "x" << testSize.expectedSize.z() << TestLog::EndMessage;
1231 gl.uniform3iv(sizeLoc, 1, testSize.expectedSize.m_data);
1243 m_context.getTestContext().getLog() << TestLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize.expectedSize.y() << TestLog::EndMessage;
1245 gl.uniform2iv(sizeLoc, 1, testSize.expectedSize.m_data);
1254 tcu::IVec3 expectedSize(testSize.expectedSize
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dteximage.c1977 GLint expectedSize; local
2029 expectedSize = _mesa_cpal_compressed_size(level, internalFormat,
2058 expectedSize = compressed_tex_size(width, height, depth, internalFormat);
2098 if (expectedSize != imageSize) {
3600 GLint expectedSize, maxLevels = 0, maxTextureSize; local
3664 expectedSize = compressed_tex_size(width, height, depth, format);
3665 if (expectedSize != imageSize)
/external/mesa3d/src/mesa/main/
H A Dteximage.c1977 GLint expectedSize; local
2029 expectedSize = _mesa_cpal_compressed_size(level, internalFormat,
2058 expectedSize = compressed_tex_size(width, height, depth, internalFormat);
2098 if (expectedSize != imageSize) {
3600 GLint expectedSize, maxLevels = 0, maxTextureSize; local
3664 expectedSize = compressed_tex_size(width, height, depth, format);
3665 if (expectedSize != imageSize)
/external/clang/lib/CodeGen/
H A DCGAtomic.cpp138 uint64_t expectedSize) {
139 return (CGM.getDataLayout().getTypeStoreSize(type) * 8 == expectedSize);
137 isFullSizeType(CodeGenModule &CGM, llvm::Type *type, uint64_t expectedSize) argument
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp4143 const size_t expectedSize = EVP_MD_CTX_size(mdCtx); local
4144 ScopedLocalRef<jbyteArray> outJavaBytes(env, env->NewByteArray(expectedSize));
4160 if (len != expectedSize) {
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 606 milliseconds

12