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

12

/external/valgrind/main/cachegrind/
H A Dcg_branchpred.c93 UWord indx; local
104 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
105 tl_assert(indx < N_COUNTERS);
106 if (0) VG_(printf)("index = %d\n", (Int)indx);
109 predicted_taken = counters[ indx ] >= 2;
119 if (counters[indx] < 3)
120 counters[indx]++;
122 if (counters[indx] > 0)
123 counters[indx]--;
126 tl_assert(counters[indx] <
144 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);
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...]
H A DdebugXML.c539 int indx; local
542 for (indx = 0; indx < 5; indx++) {
543 if (indx != 0)
1937 int indx; local
1940 for (indx = 0; indx < list->nodesetval->nodeNr;
1941 indx++) {
1943 list->nodesetval->nodeTab[indx]);
3019 int indx; local
3180 int indx; local
[all...]
H A DHTMLparser.c1191 int indx, i = 0; local
1195 for (indx = 0;indx < 100;indx ++) htmlStartCloseIndex[indx] = NULL;
1196 indx = 0;
1197 while ((htmlStartClose[i] != NULL) && (indx < 100 - 1)) {
1198 htmlStartCloseIndex[indx++] = (const char**) &htmlStartClose[i];
1257 int i, indx; local
1264 for (indx
2538 int indx = out - buffer; local
2548 int indx = out - buffer; local
2558 int indx = out - buffer; local
2570 int indx = out - buffer; local
2595 int indx = out - buffer; local
3661 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.c1724 int indx = 0, base; local
1793 if ((len = recv(ctxt->dataFd, &buf[indx], sizeof(buf) - (indx + 1), 0)) < 0) {
1800 write(1, &buf[indx], len);
1802 indx += len;
1803 buf[indx] = 0;
1810 memmove(&buf[0], &buf[base], indx - base);
1811 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.c1961 int ret, len, indx, cur, out; local
2170 indx = 0;
2176 while (ref->path[indx] != 0) {
2177 res->path[out++] = ref->path[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/aac/libSBRdec/src/
H A Dsbrdec_drc.cpp203 int indx = numQmfSubSamples - (numQmfSubSamples >> 1) - 10; /* l_border */ local
225 col += 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/openssh/
H A Dscp.c729 int fd = -1, haderr, indx; local
733 for (indx = 0; indx < argc; ++indx) {
734 name = argv[indx];
/external/openssl/apps/
H A Dsrp.c143 static void print_entry(CA_DB *db, BIO *bio, int indx, int verbose, char *s) argument
145 if (indx >= 0 && verbose)
148 char **pp = (char **)sk_OPENSSL_PSTRING_value(db->db->data, indx);
/external/webkit/Source/WebCore/rendering/
H A DRenderTableSection.cpp379 int indx = max(r - cell->rowSpan() + 1, 0); local
403 pos = m_rowPos[indx] + ch + (m_grid[r].rowRenderer ? spacing : 0);
413 bdesc = max(bdesc, m_rowPos[indx] + ch - (b - cell->intrinsicPaddingBefore()));

Completed in 618 milliseconds

12