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

12

/external/valgrind/main/cachegrind/
H A Dcg_branchpred.c91 UWord indx; local
102 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
103 tl_assert(indx < N_COUNTERS);
104 if (0) VG_(printf)("index = %d\n", (Int)indx);
107 predicted_taken = counters[ indx ] >= 2;
117 if (counters[indx] < 3)
118 counters[indx]++;
120 if (counters[indx] > 0)
121 counters[indx]--;
124 tl_assert(counters[indx] <
142 UWord indx = (instr_addr >> N_IADDR_LO_ZERO_BITS) local
[all...]
/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/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/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);
1995 int indx = xmlXPtrGetIndex(node); local
1998 return(xmlXPtrNewRange(node, indx
2354 xmlXPtrAdvanceChar(xmlNodePtr *node, int *indx, int bytes) argument
2614 xmlXPtrGetLastChar(xmlNodePtr *node, int *indx) argument
2663 xmlXPtrGetStartPoint(xmlXPathObjectPtr obj, xmlNodePtr *node, int *indx) argument
2699 xmlXPtrGetEndPoint(xmlXPathObjectPtr obj, xmlNodePtr *node, int *indx) argument
[all...]
H A DdebugXML.c537 int indx; local
540 for (indx = 0; indx < 5; indx++) {
541 if (indx != 0)
1935 int indx; local
1938 for (indx = 0; indx < list->nodesetval->nodeNr;
1939 indx++) {
1941 list->nodesetval->nodeTab[indx]);
3022 int indx; local
3183 int indx; local
[all...]
H A DHTMLparser.c1051 int indx, i = 0; local
1055 for (indx = 0;indx < 100;indx ++) htmlStartCloseIndex[indx] = NULL;
1056 indx = 0;
1057 while ((htmlStartClose[i] != NULL) && (indx < 100 - 1)) {
1058 htmlStartCloseIndex[indx++] = (const char**) &htmlStartClose[i];
1117 int i, indx; local
1124 for (indx
2386 int indx = out - buffer; local
2396 int indx = out - buffer; local
2406 int indx = out - buffer; local
2418 int indx = out - buffer; local
2443 int indx = out - buffer; local
3504 int indx; local
[all...]
H A DparserInternals.c282 int indx; local
307 indx = in->cur - in->base;
309 in->cur = &in->buf->buffer->content[indx];
332 int indx; local
345 indx = in->cur - in->base;
346 if (in->buf->buffer->use > (unsigned int) indx + INPUT_CHUNK) {
367 indx = in->cur - in->base;
369 in->cur = &in->buf->buffer->content[indx];
388 int indx; local
425 indx
[all...]
H A Dnanoftp.c1723 int indx = 0, base; local
1792 if ((len = recv(ctxt->dataFd, &buf[indx], sizeof(buf) - (indx + 1), 0)) < 0) {
1799 write(1, &buf[indx], len);
1801 indx += len;
1802 buf[indx] = 0;
1809 memmove(&buf[0], &buf[base], indx - base);
1810 indx -= base;
H A Dentities.c578 int indx = out - buffer; local
581 out = &buffer[indx];
728 int indx = out - buffer; local
731 out = &buffer[indx];
H A Duri.c1945 int ret, len, indx, cur, out; local
2154 indx = 0;
2160 while (ref->path[indx] != 0) {
2161 res->path[out++] = ref->path[indx++];
H A Dc14n.c1861 int indx = out - buffer; local
1864 out = &buffer[indx];
/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/grub/stage2/
H A Dfs.h267 #define fs_cs(fs, indx) \
268 fs_csp[(indx) >> (fs)->fs_csshift][(indx) & ~(fs)->fs_csmask]
/external/mesa3d/include/GLES2/
H A Dgl2.h606 GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint indx, GLfloat x);
607 GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint indx, const GLfloat* values);
608 GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint indx, GLfloat x, GLfloat y);
609 GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint indx, const GLfloat* values);
610 GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint indx, GLfloat x, GLfloat y, GLfloat z);
611 GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint indx, const GLfloat* values);
612 GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
613 GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint indx, const GLfloat* values);
614 GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr);
/external/webkit/Source/ThirdParty/ANGLE/include/GLES2/
H A Dgl2.h606 GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint indx, GLfloat x);
607 GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint indx, const GLfloat* values);
608 GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint indx, GLfloat x, GLfloat y);
609 GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint indx, const GLfloat* values);
610 GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint indx, GLfloat x, GLfloat y, GLfloat z);
611 GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint indx, const GLfloat* values);
612 GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
613 GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint indx, const GLfloat* values);
614 GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr);
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderingContext.idl655 [StrictTypeChecking] void vertexAttrib1f(in unsigned long indx, in float x);
656 [StrictTypeChecking, Custom] void vertexAttrib1fv(in unsigned long indx, in Float32Array values);
657 [StrictTypeChecking] void vertexAttrib2f(in unsigned long indx, in float x, in float y);
658 [StrictTypeChecking, Custom] void vertexAttrib2fv(in unsigned long indx, in Float32Array values);
659 [StrictTypeChecking] void vertexAttrib3f(in unsigned long indx, in float x, in float y, in float z);
660 [StrictTypeChecking, Custom] void vertexAttrib3fv(in unsigned long indx, in Float32Array values);
661 [StrictTypeChecking] void vertexAttrib4f(in unsigned long indx, in float x, in float y, in float z, in float w);
662 [StrictTypeChecking, Custom] void vertexAttrib4fv(in unsigned long indx, in Float32Array values);
663 [StrictTypeChecking] void vertexAttribPointer(in unsigned long indx, in long size, in unsigned long type, in boolean normalized,
/external/libxslt/libxslt/
H A Dpattern.c817 int indx; local
823 for (indx = 0;indx < list->nodeNr;indx++)
824 if (list->nodeTab[indx] == node)
826 if (indx >= list->nodeNr)
897 int indx = 0; local
913 indx++;
919 indx = 0;
935 indx
1029 int indx = 0; local
[all...]
H A Dvariables.c1618 int indx = 0; local
1624 while (params[indx] != NULL) {
1625 name = (const xmlChar *) params[indx++];
1626 value = (const xmlChar *) params[indx++];
1648 int indx = 0; local
1654 while (params[indx] != NULL) {
1655 name = (const xmlChar *) params[indx++];
1656 value = (const xmlChar *) params[indx++];
/external/dropbear/
H A Dscp.c599 int fd = -1, haderr, indx; local
603 for (indx = 0; indx < argc; ++indx) {
604 name = argv[indx];
/external/skia/gpu/include/
H A DGrGLInterface.h175 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLVertexAttrib4fvProc)(GrGLuint indx, const GrGLfloat* values);
176 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLVertexAttribPointerProc)(GrGLuint indx, GrGLint size, GrGLenum type, GrGLboolean normalized, GrGLsizei stride, const GrGLvoid* ptr);
/external/webkit/Source/WebCore/rendering/
H A DRenderTableSection.cpp373 int indx = max(r - cell->rowSpan() + 1, 0); local
397 pos = m_rowPos[indx] + ch + (m_grid[r].rowRenderer ? spacing : 0);
407 bdesc = max(bdesc, m_rowPos[indx] + ch - (b - cell->intrinsicPaddingBefore()));
/external/bzip2/
H A Dbzlib.c687 __inline__ Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab ) argument
694 if (indx >= cftab[mid]) nb = mid; else na = mid;

Completed in 1935 milliseconds

12