Searched refs:indx (Results 1 - 25 of 95) sorted by relevance

1234

/external/valgrind/main/cachegrind/
H A Dcg_branchpred.c94 UWord indx; local
105 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
106 tl_assert(indx < N_COUNTERS);
107 if (0) VG_(printf)("index = %d\n", (Int)indx);
110 predicted_taken = counters[ indx ] >= 2;
120 if (counters[indx] < 3)
121 counters[indx]++;
123 if (counters[indx] > 0)
124 counters[indx]--;
127 tl_assert(counters[indx] <
145 UWord indx = (instr_addr >> N_IADDR_LO_ZERO_BITS) local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo.h186 _es_VertexAttrib1f(GLuint indx, GLfloat x);
189 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values);
192 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y);
195 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values);
198 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
201 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values);
204 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values);
/external/mesa3d/src/mesa/vbo/
H A Dvbo.h186 _es_VertexAttrib1f(GLuint indx, GLfloat x);
189 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values);
192 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y);
195 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values);
198 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
201 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values);
204 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values);
/external/opencv/cvaux/src/
H A Dcvbgfg_acmmm2003.cpp501 int dist, min_dist = 2147483647, indx = -1; local
536 indx = k;
541 if( indx < 0 )
543 indx = model->params.N2cc - 1;
544 PV_CC(indx) = alpha;
545 PVB_CC(indx) = alpha;
549 V_CC(indx,l) = prev_data[l];
550 V_CC(indx,l+3) = curr_data[l];
555 PV_CC(indx) += alpha;
558 PVB_CC(indx)
609 int dist, min_dist = 2147483647, indx = -1; local
[all...]
/external/ppp/pppd/
H A Dipxcp.c264 int indx; local
271 for (indx = 0; indx < 5; ++indx) {
272 dst[indx] <<= 4;
273 dst[indx] |= (dst[indx + 1] >> 4) & 0x0F;
442 int indx; local
443 for (indx = 0; indx < sizeo
625 int indx; local
634 int indx; local
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertPathValidatorExceptionTest.java223 int[] indx = { 0, 1, 100, Integer.MAX_VALUE, Integer.MIN_VALUE };
224 for (int j = 0; j < indx.length; j++) {
227 new CertPathValidatorException(msgs[i], tCause, null, indx[j]);
231 + ", certPath is null and index is " + indx[j]);
285 int[] indx = { -2, -100, 0, 1, 100, Integer.MAX_VALUE,
287 for (int j = 0; j < indx.length; j++) {
290 new CertPathValidatorException(msgs[i], tCause, cp, indx[j]);
294 + ", certPath is null and index is " + indx[j]);
/external/lzma/C/
H A DPpmd7.c17 #define I2U(indx) (p->Indx2Units[indx])
118 static void InsertNode(CPpmd7 *p, void *node, unsigned indx) argument
120 *((CPpmd_Void_Ref *)node) = p->FreeList[indx];
121 p->FreeList[indx] = REF(node);
124 static void *RemoveNode(CPpmd7 *p, unsigned indx) argument
126 CPpmd_Void_Ref *node = (CPpmd_Void_Ref *)Ppmd7_GetPtr(p, p->FreeList[indx]);
127 p->FreeList[indx] = *node;
215 static void *AllocUnitsRare(CPpmd7 *p, unsigned indx) argument
222 if (p->FreeList[indx] !
241 AllocUnits(CPpmd7 *p, unsigned indx) argument
[all...]
/external/qemu/memcheck/
H A Dmemcheck.c404 uint32_t indx; local
440 for (indx = 0; indx < thread->call_stack_count; indx++) {
441 desc.call_stack[indx] =
442 thread->call_stack[thread->call_stack_count - 1 - indx].call_address;
H A Dmemcheck_proc_management.c287 uint32_t indx; local
294 for (indx = 0; indx < thread->call_stack_count; indx++) {
295 if (thread->call_stack[indx].module_path != NULL) {
296 qemu_free(thread->call_stack[indx].module_path);
433 int indx = (int)thread->call_stack_count - 1; local
434 for (; indx >= 0; indx--) {
435 if (thread->call_stack[indx]
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
H A Dcv-type.c474 unsigned long indx; /* type # (must be same as output order) */ member in struct:cv_type
501 static cv_type *cv_type_create(unsigned long indx);
519 unsigned long indx = CV_FIRST_NONPRIM; local
528 type = cv_type_create(indx++);
645 ((const cv_type *)leaf->args[arg++].p)->indx);
667 cv_type_create(unsigned long indx) argument
671 type->indx = indx;
718 if (type->indx == CV_FIRST_NONPRIM)
747 if (type->indx
[all...]
/external/chromium_org/ppapi/lib/gl/gles2/
H A Dgles2.c707 void GL_APIENTRY glVertexAttrib1f(GLuint indx, GLfloat x) { argument
708 glGetInterfacePPAPI()->VertexAttrib1f(glGetCurrentContextPPAPI(), indx, x); local
711 void GL_APIENTRY glVertexAttrib1fv(GLuint indx, const GLfloat* values) { argument
713 glGetCurrentContextPPAPI(), indx, values); local
716 void GL_APIENTRY glVertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) { argument
718 glGetCurrentContextPPAPI(), indx, x, y); local
721 void GL_APIENTRY glVertexAttrib2fv(GLuint indx, const GLfloat* values) { argument
723 glGetCurrentContextPPAPI(), indx, values); local
727 GLuint indx, GLfloat x, GLfloat y, GLfloat z) {
729 glGetCurrentContextPPAPI(), indx, local
726 glVertexAttrib3f( GLuint indx, GLfloat x, GLfloat y, GLfloat z) argument
732 glVertexAttrib3fv(GLuint indx, const GLfloat* values) argument
734 glGetCurrentContextPPAPI(), indx, values); local
737 glVertexAttrib4f( GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) argument
740 glGetCurrentContextPPAPI(), indx, x, y, z, w); local
743 glVertexAttrib4fv(GLuint indx, const GLfloat* values) argument
745 glGetCurrentContextPPAPI(), indx, values); local
748 glVertexAttribPointer( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void* ptr) argument
752 glGetCurrentContextPPAPI(), indx, size, type, normalized, stride, ptr); local
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dppb_opengles2_shared.cc693 void VertexAttrib1f(PP_Resource context_id, GLuint indx, GLfloat x) { argument
694 GetGLES(context_id)->VertexAttrib1f(indx, x);
698 PP_Resource context_id, GLuint indx, const GLfloat* values) {
699 GetGLES(context_id)->VertexAttrib1fv(indx, values);
703 PP_Resource context_id, GLuint indx, GLfloat x, GLfloat y) {
704 GetGLES(context_id)->VertexAttrib2f(indx, x, y);
708 PP_Resource context_id, GLuint indx, const GLfloat* values) {
709 GetGLES(context_id)->VertexAttrib2fv(indx, values);
713 PP_Resource context_id, GLuint indx, GLfloat x, GLfloat y, GLfloat z) {
714 GetGLES(context_id)->VertexAttrib3f(indx,
697 VertexAttrib1fv( PP_Resource context_id, GLuint indx, const GLfloat* values) argument
702 VertexAttrib2f( PP_Resource context_id, GLuint indx, GLfloat x, GLfloat y) argument
707 VertexAttrib2fv( PP_Resource context_id, GLuint indx, const GLfloat* values) argument
712 VertexAttrib3f( PP_Resource context_id, GLuint indx, GLfloat x, GLfloat y, GLfloat z) argument
717 VertexAttrib3fv( PP_Resource context_id, GLuint indx, const GLfloat* values) argument
722 VertexAttrib4f( PP_Resource context_id, GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) argument
728 VertexAttrib4fv( PP_Resource context_id, GLuint indx, const GLfloat* values) argument
733 VertexAttribPointer( PP_Resource context_id, GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void* ptr) argument
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dxpointer.c237 * @indx: the indx within the node
244 xmlXPtrNewPoint(xmlNodePtr node, int indx) { argument
249 if (indx < 0)
260 ret->index = indx;
921 xmlXPtrGetChildNo(xmlXPathParserContextPtr ctxt, int indx) { argument
929 if ((indx <= 0) || (oldset == NULL) || (oldset->nodeNr != 1)) {
934 cur = xmlXPtrGetNthChild(oldset->nodeTab[0], indx);
1997 int indx = xmlXPtrGetIndex(node); local
2000 return(xmlXPtrNewRange(node, indx
2356 xmlXPtrAdvanceChar(xmlNodePtr *node, int *indx, int bytes) argument
2616 xmlXPtrGetLastChar(xmlNodePtr *node, int *indx) argument
2664 xmlXPtrGetStartPoint(xmlXPathObjectPtr obj, xmlNodePtr *node, int *indx) argument
2700 xmlXPtrGetEndPoint(xmlXPathObjectPtr obj, xmlNodePtr *node, int *indx) argument
[all...]
/external/libxml2/
H A Dxpointer.c237 * @indx: the indx within the node
244 xmlXPtrNewPoint(xmlNodePtr node, int indx) { argument
249 if (indx < 0)
260 ret->index = indx;
921 xmlXPtrGetChildNo(xmlXPathParserContextPtr ctxt, int indx) { argument
929 if ((indx <= 0) || (oldset == NULL) || (oldset->nodeNr != 1)) {
934 cur = xmlXPtrGetNthChild(oldset->nodeTab[0], indx);
2005 int indx = xmlXPtrGetIndex(node); local
2008 return(xmlXPtrNewRange(node, indx
2364 xmlXPtrAdvanceChar(xmlNodePtr *node, int *indx, int bytes) argument
2624 xmlXPtrGetLastChar(xmlNodePtr *node, int *indx) argument
2672 xmlXPtrGetStartPoint(xmlXPathObjectPtr obj, xmlNodePtr *node, int *indx) argument
2708 xmlXPtrGetEndPoint(xmlXPathObjectPtr obj, xmlNodePtr *node, int *indx) argument
[all...]
/external/oprofile/libpp/
H A Dformat_output.cpp841 size_t indx = is_module ? 0 : 1; local
867 indx = xml_get_symbol_index(qname);
869 out << init_attr(ID_REF, indx);
873 symbol_details_t & sd = symbol_details[indx];
880 sd.id = indx;
955 size_t indx; local
980 indx = xml_get_symbol_index(qname);
982 indx = xml_get_symbol_index(symqname);
985 out << init_attr(ID_REF, indx);
1006 size_t indx; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbitvect.h273 void BitVector_Bit_Off (/*@out@*/ wordptr addr, N_int indx); /* X = X \ {x} */
275 void BitVector_Bit_On (/*@out@*/ wordptr addr, N_int indx); /* X = X + {x} */
277 boolean BitVector_bit_flip (/*@out@*/ wordptr addr, N_int indx); /* (X+{x})\(X*{x}) */
280 boolean BitVector_bit_test (wordptr addr, N_int indx); /* {x} in X ? */
283 void BitVector_Bit_Copy (/*@out@*/ wordptr addr, N_int indx, boolean bit);
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_c_lib_autogen.h478 void GLES2VertexAttrib1f(GLuint indx, GLfloat x) { argument
479 gles2::GetGLContext()->VertexAttrib1f(indx, x);
481 void GLES2VertexAttrib1fv(GLuint indx, const GLfloat* values) { argument
482 gles2::GetGLContext()->VertexAttrib1fv(indx, values);
484 void GLES2VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) { argument
485 gles2::GetGLContext()->VertexAttrib2f(indx, x, y);
487 void GLES2VertexAttrib2fv(GLuint indx, const GLfloat* values) { argument
488 gles2::GetGLContext()->VertexAttrib2fv(indx, values);
490 void GLES2VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z) { argument
491 gles2::GetGLContext()->VertexAttrib3f(indx,
493 GLES2VertexAttrib3fv(GLuint indx, const GLfloat* values) argument
496 GLES2VertexAttrib4f( GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) argument
500 GLES2VertexAttrib4fv(GLuint indx, const GLfloat* values) argument
503 GLES2VertexAttribPointer( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void* ptr) argument
[all...]
H A Dgles2_trace_implementation_impl_autogen.h781 void GLES2TraceImplementation::VertexAttrib1f(GLuint indx, GLfloat x) { argument
783 gl_->VertexAttrib1f(indx, x);
787 GLuint indx, const GLfloat* values) {
789 gl_->VertexAttrib1fv(indx, values);
793 GLuint indx, GLfloat x, GLfloat y) {
795 gl_->VertexAttrib2f(indx, x, y);
799 GLuint indx, const GLfloat* values) {
801 gl_->VertexAttrib2fv(indx, values);
805 GLuint indx, GLfloat x, GLfloat y, GLfloat z) {
807 gl_->VertexAttrib3f(indx,
786 VertexAttrib1fv( GLuint indx, const GLfloat* values) argument
792 VertexAttrib2f( GLuint indx, GLfloat x, GLfloat y) argument
798 VertexAttrib2fv( GLuint indx, const GLfloat* values) argument
804 VertexAttrib3f( GLuint indx, GLfloat x, GLfloat y, GLfloat z) argument
810 VertexAttrib3fv( GLuint indx, const GLfloat* values) argument
816 VertexAttrib4f( GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) argument
822 VertexAttrib4fv( GLuint indx, const GLfloat* values) argument
828 VertexAttribPointer( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void* ptr) argument
[all...]
H A Dgles2_implementation_impl_autogen.h1335 void GLES2Implementation::VertexAttrib1f(GLuint indx, GLfloat x) { argument
1337 GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glVertexAttrib1f(" << indx << ", " << x << ")"); // NOLINT
1338 helper_->VertexAttrib1f(indx, x);
1342 void GLES2Implementation::VertexAttrib1fv(GLuint indx, const GLfloat* values) { argument
1344 GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glVertexAttrib1fv(" << indx << ", " << static_cast<const void*>(values) << ")"); // NOLINT
1346 helper_->VertexAttrib1fvImmediate(indx, values);
1350 void GLES2Implementation::VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) { argument
1352 GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glVertexAttrib2f(" << indx << ", " << x << ", " << y << ")"); // NOLINT
1353 helper_->VertexAttrib2f(indx, x, y);
1357 void GLES2Implementation::VertexAttrib2fv(GLuint indx, cons argument
1365 VertexAttrib3f( GLuint indx, GLfloat x, GLfloat y, GLfloat z) argument
1373 VertexAttrib3fv(GLuint indx, const GLfloat* values) argument
1381 VertexAttrib4f( GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) argument
1389 VertexAttrib4fv(GLuint indx, const GLfloat* values) argument
[all...]
H A Dgles2_implementation_autogen.h354 virtual void VertexAttrib1f(GLuint indx, GLfloat x) OVERRIDE;
356 virtual void VertexAttrib1fv(GLuint indx, const GLfloat* values) OVERRIDE;
358 virtual void VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) OVERRIDE;
360 virtual void VertexAttrib2fv(GLuint indx, const GLfloat* values) OVERRIDE;
363 GLuint indx, GLfloat x, GLfloat y, GLfloat z) OVERRIDE;
365 virtual void VertexAttrib3fv(GLuint indx, const GLfloat* values) OVERRIDE;
368 GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) OVERRIDE;
370 virtual void VertexAttrib4fv(GLuint indx, const GLfloat* values) OVERRIDE;
373 GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride,
H A Dgles2_interface_autogen.h207 virtual void VertexAttrib1f(GLuint indx, GLfloat x) = 0;
208 virtual void VertexAttrib1fv(GLuint indx, const GLfloat* values) = 0;
209 virtual void VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) = 0;
210 virtual void VertexAttrib2fv(GLuint indx, const GLfloat* values) = 0;
211 virtual void VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z) = 0;
212 virtual void VertexAttrib3fv(GLuint indx, const GLfloat* values) = 0;
214 GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) = 0;
215 virtual void VertexAttrib4fv(GLuint indx, const GLfloat* values) = 0;
217 GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride,
H A Dgles2_interface_stub_autogen.h229 virtual void VertexAttrib1f(GLuint indx, GLfloat x) OVERRIDE;
230 virtual void VertexAttrib1fv(GLuint indx, const GLfloat* values) OVERRIDE;
231 virtual void VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) OVERRIDE;
232 virtual void VertexAttrib2fv(GLuint indx, const GLfloat* values) OVERRIDE;
234 GLuint indx, GLfloat x, GLfloat y, GLfloat z) OVERRIDE;
235 virtual void VertexAttrib3fv(GLuint indx, const GLfloat* values) OVERRIDE;
237 GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) OVERRIDE;
238 virtual void VertexAttrib4fv(GLuint indx, const GLfloat* values) OVERRIDE;
240 GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride,
H A Dgles2_trace_implementation_autogen.h229 virtual void VertexAttrib1f(GLuint indx, GLfloat x) OVERRIDE;
230 virtual void VertexAttrib1fv(GLuint indx, const GLfloat* values) OVERRIDE;
231 virtual void VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) OVERRIDE;
232 virtual void VertexAttrib2fv(GLuint indx, const GLfloat* values) OVERRIDE;
234 GLuint indx, GLfloat x, GLfloat y, GLfloat z) OVERRIDE;
235 virtual void VertexAttrib3fv(GLuint indx, const GLfloat* values) OVERRIDE;
237 GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) OVERRIDE;
238 virtual void VertexAttrib4fv(GLuint indx, const GLfloat* values) OVERRIDE;
240 GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride,
/external/grub/stage2/
H A Dfs.h267 #define fs_cs(fs, indx) \
268 fs_csp[(indx) >> (fs)->fs_csshift][(indx) & ~(fs)->fs_csmask]
/external/chromium_org/ppapi/c/
H A Dppb_opengles2.h282 void (*VertexAttrib1f)(PP_Resource context, GLuint indx, GLfloat x);
284 PP_Resource context, GLuint indx, const GLfloat* values);
286 PP_Resource context, GLuint indx, GLfloat x, GLfloat y);
288 PP_Resource context, GLuint indx, const GLfloat* values);
290 PP_Resource context, GLuint indx, GLfloat x, GLfloat y, GLfloat z);
292 PP_Resource context, GLuint indx, const GLfloat* values);
294 PP_Resource context, GLuint indx, GLfloat x, GLfloat y, GLfloat z,
297 PP_Resource context, GLuint indx, const GLfloat* values);
299 PP_Resource context, GLuint indx, GLint size, GLenum type,

Completed in 1323 milliseconds

1234