Home
last modified time | relevance | path

Searched refs:indx (Results 1 – 25 of 50) sorted by relevance

12

/external/valgrind/cachegrind/
Dcg_branchpred.c94 UWord indx; in do_cond_branch_predict() local
105 indx = (hist_bits << N_IADD_BITS) | iadd_bits; in do_cond_branch_predict()
106 tl_assert(indx < N_COUNTERS); in do_cond_branch_predict()
107 if (0) VG_(printf)("index = %d\n", (Int)indx); in do_cond_branch_predict()
110 predicted_taken = counters[ indx ] >= 2; in do_cond_branch_predict()
120 if (counters[indx] < 3) in do_cond_branch_predict()
121 counters[indx]++; in do_cond_branch_predict()
123 if (counters[indx] > 0) in do_cond_branch_predict()
124 counters[indx]--; in do_cond_branch_predict()
127 tl_assert(counters[indx] <= 3); in do_cond_branch_predict()
[all …]
/external/ppp/pppd/
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 < sizeof (ipxcp_wantoptions[0].our_node); ++indx)
444 if (node [indx] != 0)
625 int indx; local
628 for (indx = 0; indx < sizeof (go->our_node); ++indx)
629 PUTCHAR (go->our_node[indx], ucp);
[all …]
/external/mesa3d/src/mesa/vbo/
Dvbo.h241 _es_VertexAttrib1f(GLuint indx, GLfloat x);
244 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values);
247 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y);
250 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values);
253 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
256 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values);
259 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values);
Dvbo_exec_api.c1382 _es_VertexAttrib1f(GLuint indx, GLfloat x) in _es_VertexAttrib1f() argument
1384 VertexAttrib4f_nopos(indx, x, 0.0f, 0.0f, 1.0f); in _es_VertexAttrib1f()
1389 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values) in _es_VertexAttrib1fv() argument
1391 VertexAttrib4f_nopos(indx, values[0], 0.0f, 0.0f, 1.0f); in _es_VertexAttrib1fv()
1396 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) in _es_VertexAttrib2f() argument
1398 VertexAttrib4f_nopos(indx, x, y, 0.0f, 1.0f); in _es_VertexAttrib2f()
1403 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values) in _es_VertexAttrib2fv() argument
1405 VertexAttrib4f_nopos(indx, values[0], values[1], 0.0f, 1.0f); in _es_VertexAttrib2fv()
1410 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z) in _es_VertexAttrib3f() argument
1412 VertexAttrib4f_nopos(indx, x, y, z, 1.0f); in _es_VertexAttrib3f()
[all …]
/external/python/cpython2/Demo/tkinter/ttk/
Dtreeview_multicolumn.py32 for indx, item in enumerate(data):
33 tree.move(item[1], '', indx)
86 for indx, val in enumerate(item):
88 if self.tree.column(tree_columns[indx], width=None) < ilen:
89 self.tree.column(tree_columns[indx], width=ilen)
Dttkcalendar.py142 for indx, item in enumerate(self._items):
143 week = cal[indx] if indx < len(cal) else []
/external/lzma/C/
DPpmd7.c19 #define I2U(indx) (p->Indx2Units[indx]) argument
120 static void InsertNode(CPpmd7 *p, void *node, unsigned indx) in InsertNode() argument
122 *((CPpmd_Void_Ref *)node) = p->FreeList[indx]; in InsertNode()
123 p->FreeList[indx] = REF(node); in InsertNode()
126 static void *RemoveNode(CPpmd7 *p, unsigned indx) in RemoveNode() argument
128 CPpmd_Void_Ref *node = (CPpmd_Void_Ref *)Ppmd7_GetPtr(p, p->FreeList[indx]); in RemoveNode()
129 p->FreeList[indx] = *node; in RemoveNode()
217 static void *AllocUnitsRare(CPpmd7 *p, unsigned indx) in AllocUnitsRare() argument
224 if (p->FreeList[indx] != 0) in AllocUnitsRare()
225 return RemoveNode(p, indx); in AllocUnitsRare()
[all …]
/external/libxml2/
Dxpointer.c253 xmlXPtrNewPoint(xmlNodePtr node, int indx) { in xmlXPtrNewPoint() argument
258 if (indx < 0) in xmlXPtrNewPoint()
269 ret->index = indx; in xmlXPtrNewPoint()
891 xmlXPtrGetChildNo(xmlXPathParserContextPtr ctxt, int indx) { in xmlXPtrGetChildNo() argument
899 if ((indx <= 0) || (oldset == NULL) || (oldset->nodeNr != 1)) { in xmlXPtrGetChildNo()
904 cur = xmlXPtrGetNthChild(oldset->nodeTab[0], indx); in xmlXPtrGetChildNo()
1983 int indx = xmlXPtrGetIndex(node); in xmlXPtrCoveringRange() local
1986 return(xmlXPtrNewRange(node, indx - 1, in xmlXPtrCoveringRange()
1987 node, indx + 1)); in xmlXPtrCoveringRange()
2294 xmlXPtrAdvanceChar(xmlNodePtr *node, int *indx, int bytes) { in xmlXPtrAdvanceChar() argument
[all …]
Dentities.c584 size_t indx = out - buffer; in xmlEncodeEntitiesInternal() local
585 if (indx + 100 > buffer_size) { in xmlEncodeEntitiesInternal()
588 out = &buffer[indx]; in xmlEncodeEntitiesInternal()
605 indx = out - buffer; in xmlEncodeEntitiesInternal()
606 if (indx + 100 > buffer_size) { in xmlEncodeEntitiesInternal()
608 out = &buffer[indx]; in xmlEncodeEntitiesInternal()
634 indx = out - buffer; in xmlEncodeEntitiesInternal()
635 if (indx + 100 > buffer_size) { in xmlEncodeEntitiesInternal()
637 out = &buffer[indx]; in xmlEncodeEntitiesInternal()
810 size_t indx = out - buffer; in xmlEncodeSpecialChars() local
[all …]
DdebugXML.c540 int indx; in xmlCtxtDumpAttrDecl() local
543 for (indx = 0; indx < 5; indx++) { in xmlCtxtDumpAttrDecl()
544 if (indx != 0) in xmlCtxtDumpAttrDecl()
1942 int indx; in xmlShellPrintXPathResultCtxt() local
1945 for (indx = 0; indx < list->nodesetval->nodeNr; in xmlShellPrintXPathResultCtxt()
1946 indx++) { in xmlShellPrintXPathResultCtxt()
1948 list->nodesetval->nodeTab[indx]); in xmlShellPrintXPathResultCtxt()
2992 int indx; in xmlShell() local
2997 for (indx = 0; in xmlShell()
2998 indx < list->nodesetval->nodeNr; in xmlShell()
[all …]
DtestC14N.c225 int indx = out - buffer; in parse_list() local
228 out = &buffer[indx]; in parse_list()
DparserInternals.c302 size_t indx; in xmlParserInputGrow() local
316 indx = in->cur - in->base; in xmlParserInputGrow()
317 if (xmlBufUse(in->buf->buffer) > (unsigned int) indx + INPUT_CHUNK) { in xmlParserInputGrow()
340 indx = in->cur - in->base; in xmlParserInputGrow()
342 in->cur = &content[indx]; in xmlParserInputGrow()
361 size_t indx; in xmlParserInputShrink() local
400 indx = in->cur - in->base; in xmlParserInputShrink()
402 in->cur = &content[indx]; in xmlParserInputShrink()
Dnanoftp.c1731 int indx = 0, base; in xmlNanoFTPList() local
1800 if ((len = recv(ctxt->dataFd, &buf[indx], sizeof(buf) - (indx + 1), 0)) < 0) { in xmlNanoFTPList()
1807 write(1, &buf[indx], len); in xmlNanoFTPList()
1809 indx += len; in xmlNanoFTPList()
1810 buf[indx] = 0; in xmlNanoFTPList()
1817 memmove(&buf[0], &buf[base], indx - base); in xmlNanoFTPList()
1818 indx -= base; in xmlNanoFTPList()
/external/deqp/doc/
DGLES2 Negative API Functions.txt189 o glVertexAttrib1f (GLuint indx, GLfloat x);
190 o glVertexAttrib1fv (GLuint indx, const GLfloat* values);
191 o glVertexAttrib2f (GLuint indx, GLfloat x, GLfloat y);
192 o glVertexAttrib2fv (GLuint indx, const GLfloat* values);
193 o glVertexAttrib3f (GLuint indx, GLfloat x, GLfloat y, GLfloat z);
194 o glVertexAttrib3fv (GLuint indx, const GLfloat* values);
195 o glVertexAttrib4f (GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
196 o glVertexAttrib4fv (GLuint indx, const GLfloat* values);
197 o glVertexAttribPointer (GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stri…
DGLES3 Negative API Functions.txt307 o glVertexAttrib1f (GLuint indx, GLfloat x);
308 o glVertexAttrib1fv (GLuint indx, const GLfloat* values);
309 o glVertexAttrib2f (GLuint indx, GLfloat x, GLfloat y);
310 o glVertexAttrib2fv (GLuint indx, const GLfloat* values);
311 o glVertexAttrib3f (GLuint indx, GLfloat x, GLfloat y, GLfloat z);
312 o glVertexAttrib3fv (GLuint indx, const GLfloat* values);
313 o glVertexAttrib4f (GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
314 o glVertexAttrib4fv (GLuint indx, const GLfloat* values);
315 o glVertexAttribPointer (GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stri…
/external/libdrm/tests/modetest/
Dcursor.c79 static uint32_t indx, count; variable
148 const struct cursor_step *step = &steps[indx % ARRAY_SIZE(steps)]; in cursor_thread_func()
161 indx++; in cursor_thread_func()
/external/deqp/framework/opengl/simplereference/
DsglrContextWrapper.hpp184 void glVertexAttrib1f (deUint32 indx, float x);
185 void glVertexAttrib1fv (deUint32 indx, const float* values);
186 void glVertexAttrib2f (deUint32 indx, float x, float y);
187 void glVertexAttrib2fv (deUint32 indx, const float* values);
188 void glVertexAttrib3f (deUint32 indx, float x, float y, float z);
189 void glVertexAttrib3fv (deUint32 indx, const float* values);
190 void glVertexAttrib4f (deUint32 indx, float x, float y, float z, float w);
191 void glVertexAttrib4fv (deUint32 indx, const float* values);
192 …void glVertexAttribPointer (deUint32 indx, int size, deUint32 type, deBool normalized, int s…
/external/libmojo/mojo/gpu/
Dmojo_gles2_impl_autogen.cc1130 void MojoGLES2Impl::VertexAttrib1f(GLuint indx, GLfloat x) { in VertexAttrib1f() argument
1132 glVertexAttrib1f(indx, x); in VertexAttrib1f()
1134 void MojoGLES2Impl::VertexAttrib1fv(GLuint indx, const GLfloat* values) { in VertexAttrib1fv() argument
1136 glVertexAttrib1fv(indx, values); in VertexAttrib1fv()
1138 void MojoGLES2Impl::VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) { in VertexAttrib2f() argument
1140 glVertexAttrib2f(indx, x, y); in VertexAttrib2f()
1142 void MojoGLES2Impl::VertexAttrib2fv(GLuint indx, const GLfloat* values) { in VertexAttrib2fv() argument
1144 glVertexAttrib2fv(indx, values); in VertexAttrib2fv()
1146 void MojoGLES2Impl::VertexAttrib3f(GLuint indx, in VertexAttrib3f() argument
1151 glVertexAttrib3f(indx, x, y, z); in VertexAttrib3f()
[all …]
Dmojo_gles2_impl_autogen.h534 void VertexAttrib1f(GLuint indx, GLfloat x) override;
535 void VertexAttrib1fv(GLuint indx, const GLfloat* values) override;
536 void VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) override;
537 void VertexAttrib2fv(GLuint indx, const GLfloat* values) override;
538 void VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z) override;
539 void VertexAttrib3fv(GLuint indx, const GLfloat* values) override;
540 void VertexAttrib4f(GLuint indx,
545 void VertexAttrib4fv(GLuint indx, const GLfloat* values) override;
546 void VertexAttribI4i(GLuint indx,
551 void VertexAttribI4iv(GLuint indx, const GLint* values) override;
[all …]
/external/llvm/test/Transforms/LoopVectorize/
Dvect.omp.persistence.ll77 %indx = phi i32 [ 1, %entry ], [ %inc, %loop_inc ]
78 %cmp = icmp ne i32 %indx, %a
81 %inc = add i32 %indx, 1
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES2/
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,…
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, GL…
/external/python/cpython2/Lib/lib-tk/
Dttk.py268 indx = 0
269 while indx < len(ltuple):
270 name = ltuple[indx]
273 indx += 1
275 while indx < len(ltuple): # grab name's options
276 opt, val = ltuple[indx:indx + 2]
281 indx += 2
/external/llvm/test/Object/
Dcoff-weak-externals.test4 CHECK: AUX indx 9 srch 2
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES3/
Dgl3.h941 GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint indx, GLfloat x);
942 GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint indx, const GLfloat* values);
943 GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint indx, GLfloat x, GLfloat y);
944 GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint indx, const GLfloat* values);
945 GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint indx, GLfloat x, GLfloat y, GLfloat …
946 GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint indx, const GLfloat* values);
947 GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint indx, GLfloat x, GLfloat y, GLfloat …
948 GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint indx, const GLfloat* values);
949 GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint indx, GLint size, GLenum type, …
/external/aac/libSBRdec/src/
Dsbrdec_drc.cpp203 int indx = numQmfSubSamples - (numQmfSubSamples >> 1) - 10; /* l_border */ in sbrDecoder_drcApplySlot() local
225 col += indx; in sbrDecoder_drcApplySlot()

12