Searched defs:maxcount (Results 1 - 10 of 10) 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/mojo/examples/pepper_container_app/
H A Dppb_opengles2_thunk.cc537 GLsizei maxcount,
542 glGetAttachedShaders(program, maxcount, count, shaders);
535 GetAttachedShaders(PP_Resource context_id, GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
/external/chromium_org/ppapi/lib/gl/gles2/
H A Dgles2.c383 GLsizei maxcount,
387 glGetCurrentContextPPAPI(), program, maxcount, count, shaders); local
382 glGetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
/external/chromium_org/ppapi/shared_impl/
H A Dppb_opengles2_shared.cc547 GLsizei maxcount,
552 ToGles2Impl(&enter)->GetAttachedShaders(program, maxcount, count, shaders);
545 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.h261 GLsizei maxcount,
264 gles2::GetGLContext()->GetAttachedShaders(program, maxcount, count, shaders);
260 GLES2GetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
H A Dgles2_implementation.cc2117 GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) {
2120 << program << ", " << maxcount << ", "
2123 if (maxcount < 0) {
2124 SetGLError(GL_INVALID_VALUE, "glGetAttachedShaders", "maxcount < 0");
2129 uint32 size = Result::ComputeSize(maxcount);
2116 GetAttachedShaders( GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
H A Dgles2_trace_implementation_impl_autogen.h383 GLsizei maxcount,
387 gl_->GetAttachedShaders(program, maxcount, count, shaders);
382 GetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
/external/pcre/dist/
H A Dpcretest.c5221 int i, maxcount; local
5225 if (all_use_dfa || use_dfa) maxcount = use_size_offsets/2; else
5228 maxcount = (use_size_offsets == 2)? 1 : use_size_offsets/3;
5232 if (count > maxcount)
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DlibGLESv2.cpp1886 void __stdcall glGetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) argument
1888 EVENT("(GLuint program = %d, GLsizei maxcount = %d, GLsizei* count = 0x%0.8p, GLuint* shaders = 0x%0.8p)",
1889 program, maxcount, count, shaders);
1894 if (maxcount < 0)
1916 return programObject->getAttachedShaders(maxcount, count, shaders);

Completed in 124 milliseconds