Searched defs:maxcount (Results 1 - 8 of 8) sorted by relevance

/external/libvorbis/vq/
H A Ddistribution.c95 long maxcount=0; local
138 long maxcount=0,i,j; local
140 if(countarray[i]>maxcount)maxcount=countarray[i];
144 int stars=rint(50./maxcount*countarray[ptr]);
228 long maxcount=0,i,j; local
230 if(countarray[i]>maxcount)maxcount=countarray[i];
235 int stars=rint(50./maxcount*countarray[i]);
/external/e2fsprogs/e2fsck/
H A Ddict.c60 #define maxcount dict_maxcount macro
255 dict_t *dict_create(dictcount_t maxcount, dict_comp_t comp) argument
265 new->maxcount = maxcount;
335 dict_t *dict_init(dict_t *dict, dictcount_t maxcount, dict_comp_t comp) argument
342 dict->maxcount = maxcount;
363 dict->maxcount = template->maxcount;
964 return dict->nodecount == dict->maxcount;
[all...]
/external/chromium_org/ppapi/lib/gl/gles2/
H A Dgles2.c307 GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) {
309 glGetCurrentContextPPAPI(), program, maxcount, count, shaders); local
306 glGetAttachedShaders( GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
/external/chromium_org/ppapi/shared_impl/
H A Dppb_opengles2_shared.cc310 PP_Resource context_id, GLuint program, GLsizei maxcount, GLsizei* count,
312 GetGLES(context_id)->GetAttachedShaders(program, maxcount, count, shaders);
309 GetAttachedShaders( PP_Resource context_id, GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_c_lib_autogen.h213 GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) {
214 gles2::GetGLContext()->GetAttachedShaders(program, maxcount, count, shaders);
212 GLES2GetAttachedShaders( GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
H A Dgles2_implementation.cc1995 GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) {
1998 << program << ", " << maxcount << ", "
2001 if (maxcount < 0) {
2002 SetGLError(GL_INVALID_VALUE, "glGetAttachedShaders", "maxcount < 0");
2007 uint32 size = Result::ComputeSize(maxcount);
1994 GetAttachedShaders( GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
H A Dgles2_trace_implementation_impl_autogen.h332 GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) {
334 gl_->GetAttachedShaders(program, maxcount, count, shaders);
331 GetAttachedShaders( GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/
H A DlibGLESv2.cpp2908 void __stdcall glGetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
2910 EVENT("(GLuint program = %d, GLsizei maxcount = %d, GLsizei* count = 0x%0.8p, GLuint* shaders = 0x%0.8p)",
2911 program, maxcount, count, shaders);
2915 if (maxcount < 0)
2938 return programObject->getAttachedShaders(maxcount, count, shaders);

Completed in 228 milliseconds