/external/valgrind/cachegrind/ |
D | cg_branchpred.c | 94 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/libxaac/decoder/ |
D | ixheaacd_rev_vlc.c | 103 short indx = 0; in ixheaacd_rvlc_decode() local 108 indx = 0; in ixheaacd_rvlc_decode() 115 indx = -1; in ixheaacd_rvlc_decode() 118 indx = 1; in ixheaacd_rvlc_decode() 126 indx = -2; in ixheaacd_rvlc_decode() 133 indx = -3; in ixheaacd_rvlc_decode() 136 indx = 2; in ixheaacd_rvlc_decode() 145 indx = -4; in ixheaacd_rvlc_decode() 148 indx = 3; in ixheaacd_rvlc_decode() 157 indx = -7; in ixheaacd_rvlc_decode() [all …]
|
D | ixheaacd_mps_pre_mix.c | 375 WORD32 indx = self->hyb_band_to_processing_band_table[qs]; in ixheaacd_mps_apply_pre_matrix() local 383 self->r_out_re_in_m1[ts][indx][row][col] - in ixheaacd_mps_apply_pre_matrix() 385 self->r_out_im_in_m1[ts][indx][row][col] * sign; in ixheaacd_mps_apply_pre_matrix() 387 self->r_out_im_in_m1[ts][indx][row][col] * sign + in ixheaacd_mps_apply_pre_matrix() 389 self->r_out_re_in_m1[ts][indx][row][col]; in ixheaacd_mps_apply_pre_matrix() 399 WORD32 indx = self->hyb_band_to_processing_band_table[qs]; in ixheaacd_mps_apply_pre_matrix() local 407 self->r_out_re_in_m1[ts][indx][row][col] - in ixheaacd_mps_apply_pre_matrix() 409 self->r_out_im_in_m1[ts][indx][row][col] * sign; in ixheaacd_mps_apply_pre_matrix() 411 self->r_out_im_in_m1[ts][indx][row][col] * sign + in ixheaacd_mps_apply_pre_matrix() 413 self->r_out_re_in_m1[ts][indx][row][col]; in ixheaacd_mps_apply_pre_matrix() [all …]
|
D | ixheaacd_lpc_dec.c | 103 static WORD32 ixheaacd_avq_first_approx_abs(FLOAT32 *lsf, WORD32 *indx) { in ixheaacd_avq_first_approx_abs() argument 112 ptr_w = &ixheaacd_weight_table_avq[(indx[0] * ORDER)]; in ixheaacd_avq_first_approx_abs() 117 lsf[i] = ixheaacd_dico_lsf_abs_8b_flt[indx[0] * ORDER + i]; in ixheaacd_avq_first_approx_abs() 120 position += ixheaacd_decoding_avq_tool(&indx[position], avq); in ixheaacd_avq_first_approx_abs() 140 WORD32 ixheaacd_avq_first_approx_rel(FLOAT32 *lsf, WORD32 *indx, WORD32 mode) { in ixheaacd_avq_first_approx_rel() argument 149 position = ixheaacd_decoding_avq_tool(indx, avq); in ixheaacd_avq_first_approx_rel()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | roll_op.cc | 54 const int indx = (start / stride) % dim_size[i]; in DoRoll() local 55 indices[i] = indx; in DoRoll() 57 const int shifted_indx = (indx + shift) % dim_size[i]; in DoRoll() 58 offset += (shifted_indx - indx) * stride; in DoRoll() 66 const int indx = (indices[j] + 1) % dim_size[j]; in DoRoll() local 67 indices[j] = indx; in DoRoll() 68 if (indx != 0) { in DoRoll() 69 if (indx == threshold[j]) { // we've reached the threshold in DoRoll() 141 const int indx = (start / stride) % dim_size[i]; in DoRollWithMemcpy() local 142 indicies[i] = indx; in DoRollWithMemcpy() [all …]
|
/external/ppp/pppd/ |
D | ipxcp.c | 264 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/tensorflow/tensorflow/python/kernel_tests/ |
D | scatter_ops_test.py | 37 for i, indx in np.ndenumerate(indices): 38 ref[indx] += updates[i] 42 for i, indx in np.ndenumerate(indices): 43 ref[indx] -= updates[i] 47 for i, indx in np.ndenumerate(indices): 48 ref[indx] *= updates[i] 52 for i, indx in np.ndenumerate(indices): 53 ref[indx] /= updates[i] 57 for i, indx in np.ndenumerate(indices): 58 ref[indx] = updates[i]
|
D | unique_op_test.py | 54 indx = np.random.randint(65, high=122, size=7000) 55 x = [chr(i) for i in indx] 121 indx = np.random.randint(65, high=122, size=7000) 122 x = [chr(i) for i in indx]
|
/external/mesa3d/src/mesa/vbo/ |
D | vbo.h | 241 _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);
|
D | vbo_exec_api.c | 1382 _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/lzma/C/ |
D | Ppmd7.c | 19 #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/python/cpython2/Demo/tkinter/ttk/ |
D | treeview_multicolumn.py | 32 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)
|
D | ttkcalendar.py | 142 for indx, item in enumerate(self._items): 143 week = cal[indx] if indx < len(cal) else []
|
/external/libxml2/ |
D | xpointer.c | 253 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 …]
|
D | debugXML.c | 540 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 …]
|
D | entities.c | 584 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 …]
|
/external/deqp/doc/ |
D | GLES2 Negative API Functions.txt | 189 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…
|
D | GLES3 Negative API Functions.txt | 307 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/ |
D | cursor.c | 79 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/ |
D | sglrContextWrapper.hpp | 184 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/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES2/ |
D | gl2.h | 606 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/llvm/test/Transforms/LoopVectorize/ |
D | vect.omp.persistence.ll | 77 %indx = phi i32 [ 1, %entry ], [ %inc, %loop_inc ] 78 %cmp = icmp ne i32 %indx, %a 81 %inc = add i32 %indx, 1
|
/external/flac/libFLAC/ |
D | metadata_object.c | 1279 unsigned indx = (unsigned)i; in FLAC__metadata_object_vorbiscomment_replace_comment() local 1280 if (!FLAC__metadata_object_vorbiscomment_set_comment(object, indx, entry, copy)) in FLAC__metadata_object_vorbiscomment_replace_comment() 1282 entry = object->data.vorbis_comment.comments[indx]; in FLAC__metadata_object_vorbiscomment_replace_comment() 1283 indx++; /* skip over replaced comment */ in FLAC__metadata_object_vorbiscomment_replace_comment() 1284 if (all && indx < object->data.vorbis_comment.num_comments) { in FLAC__metadata_object_vorbiscomment_replace_comment() 1285 i = vorbiscomment_find_entry_from_(object, indx, (const char *)entry.entry, field_name_length); in FLAC__metadata_object_vorbiscomment_replace_comment() 1287 indx = (unsigned)i; in FLAC__metadata_object_vorbiscomment_replace_comment() 1288 if (!FLAC__metadata_object_vorbiscomment_delete_comment(object, indx)) in FLAC__metadata_object_vorbiscomment_replace_comment() 1290 if (indx < object->data.vorbis_comment.num_comments) in FLAC__metadata_object_vorbiscomment_replace_comment() 1291 … i = vorbiscomment_find_entry_from_(object, indx, (const char *)entry.entry, field_name_length); in FLAC__metadata_object_vorbiscomment_replace_comment() [all …]
|
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 268 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/python/cpython3/Lib/tkinter/ |
D | ttk.py | 268 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
|