/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pt_vsplit.c | 66 vsplit_clear_cache(struct vsplit_frontend *vsplit) 68 memset(vsplit->cache.fetches, 0xff, sizeof(vsplit->cache.fetches)); 69 vsplit->cache.has_max_fetch = FALSE; 70 vsplit->cache.num_fetch_elts = 0; 71 vsplit->cache.num_draw_elts = 0; 75 vsplit_flush_cache(struct vsplit_frontend *vsplit, unsigned flags) 77 vsplit->middle->run(vsplit->middle, 78 vsplit->fetch_elts, vsplit->cache.num_fetch_elts 151 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; local 183 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; local 200 struct vsplit_frontend *vsplit = CALLOC_STRUCT(vsplit_frontend); local [all...] |
draw_pt_vsplit_tmp.h | 37 CONCAT(vsplit_primitive_, ELT_TYPE)(struct vsplit_frontend *vsplit, 40 struct draw_context *draw = vsplit->draw; 53 if (icount > vsplit->max_vertices) 65 /* have to go through vsplit->draw_elts */ 66 if (icount > vsplit->segment_size) 94 vsplit->draw_elts[i] = (ushort) idx; 104 vsplit->draw_elts[i] = (ushort) (idx - min_index); 108 draw_elts = vsplit->draw_elts; 111 return vsplit->middle->run_linear_elts(vsplit->middle [all...] |
draw_pt.c | 49 * - frontend -- prepare fetch_elts, draw_elts - eg vsplit 132 frontend = draw->pt.front.vsplit; 165 draw->pt.front.vsplit = draw_pt_vsplit(draw); 166 if (!draw->pt.front.vsplit) 212 if (draw->pt.front.vsplit) { 213 draw->pt.front.vsplit->destroy( draw->pt.front.vsplit ); 214 draw->pt.front.vsplit = NULL;
|
draw_pt.h | 64 * - vsplit - catchall implementation, splits big prims 133 * Currently only the general-purpose vsplit implementation.
|
draw_private.h | 155 struct draw_pt_front_end *vsplit; member in struct:draw_context::__anon19561::__anon19563
|
/external/opencv3/doc/py_tutorials/py_ml/py_knn/py_knn_opencv/ |
py_knn_opencv.markdown | 30 cells = [np.hsplit(row,100) for row in np.vsplit(gray,50)] 99 train, test = np.vsplit(data,2)
|
/external/opencv3/samples/python2/ |
digits.py | 46 cells = [np.hsplit(row, w//sx) for row in np.vsplit(img, h//sy)]
|
/external/opencv3/doc/py_tutorials/py_ml/py_svm/py_svm_opencv/ |
py_svm_opencv.markdown | 95 cells = [np.hsplit(row,100) for row in np.vsplit(img,50)]
|
/external/opencv3/modules/core/src/ |
convert.cpp | 307 VSplit2<T> vsplit; local 309 vsplit(src + j, dst0 + i, dst1 + i); 317 VSplit2<T> vsplit; local 318 if (vsplit.support) 321 vsplit(src + j, dst0 + i, dst1 + i); 342 VSplit3<T> vsplit; local 344 vsplit(src + j, dst0 + i, dst1 + i, dst2 + i); 352 VSplit3<T> vsplit; local 354 if (vsplit.support) 357 vsplit(src + j, dst0 + i, dst1 + i, dst2 + i) 379 VSplit4<T> vsplit; local 389 VSplit4<T> vsplit; local [all...] |
/external/mesa3d/docs/ |
relnotes-7.10.1.html | 43 <li>Fix an off-by-one bug in a vsplit assertion.</li> 138 <li>draw: Fix an off-by-one bug in a vsplit assertion.</li>
|
relnotes-7.9.2.html | 43 <li>Fix an off-by-one bug in a vsplit assertion.</li> 136 <li>draw: Fix an off-by-one bug in a vsplit assertion.</li>
|