Searched refs:vsplit (Results 1 – 8 of 8) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pt_vsplit.c | 66 vsplit_clear_cache(struct vsplit_frontend *vsplit) in vsplit_clear_cache() argument 68 memset(vsplit->cache.fetches, 0xff, sizeof(vsplit->cache.fetches)); in vsplit_clear_cache() 69 vsplit->cache.has_max_fetch = FALSE; in vsplit_clear_cache() 70 vsplit->cache.num_fetch_elts = 0; in vsplit_clear_cache() 71 vsplit->cache.num_draw_elts = 0; in vsplit_clear_cache() 75 vsplit_flush_cache(struct vsplit_frontend *vsplit, unsigned flags) in vsplit_flush_cache() argument 77 vsplit->middle->run(vsplit->middle, in vsplit_flush_cache() 78 vsplit->fetch_elts, vsplit->cache.num_fetch_elts, in vsplit_flush_cache() 79 vsplit->draw_elts, vsplit->cache.num_draw_elts, flags); in vsplit_flush_cache() 86 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache() argument [all …]
|
D | draw_pt_vsplit_tmp.h | 37 CONCAT(vsplit_primitive_, ELT_TYPE)(struct vsplit_frontend *vsplit, in CONCAT() 40 struct draw_context *draw = vsplit->draw; in CONCAT() 53 if (icount > vsplit->max_vertices) in CONCAT() 66 if (icount > vsplit->segment_size) in CONCAT() 94 vsplit->draw_elts[i] = (ushort) idx; in CONCAT() 104 vsplit->draw_elts[i] = (ushort) (idx - min_index); in CONCAT() 108 draw_elts = vsplit->draw_elts; in CONCAT() 111 return vsplit->middle->run_linear_elts(vsplit->middle, in CONCAT() 123 CONCAT(vsplit_segment_cache_, ELT_TYPE)(struct vsplit_frontend *vsplit, in CONCAT() 129 struct draw_context *draw = vsplit->draw; in CONCAT() [all …]
|
D | draw_pt.c | 132 frontend = draw->pt.front.vsplit; in draw_pt_arrays() 165 draw->pt.front.vsplit = draw_pt_vsplit(draw); in draw_pt_init() 166 if (!draw->pt.front.vsplit) in draw_pt_init() 212 if (draw->pt.front.vsplit) { in draw_pt_destroy() 213 draw->pt.front.vsplit->destroy( draw->pt.front.vsplit ); in draw_pt_destroy() 214 draw->pt.front.vsplit = NULL; in draw_pt_destroy()
|
D | draw_private.h | 155 struct draw_pt_front_end *vsplit; member
|
/external/opencv3/doc/py_tutorials/py_ml/py_knn/py_knn_opencv/ |
D | 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/ |
D | 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/ |
D | py_svm_opencv.markdown | 95 cells = [np.hsplit(row,100) for row in np.vsplit(img,50)]
|
/external/opencv3/modules/core/src/ |
D | convert.cpp | 307 VSplit2<T> vsplit; in split_() local 309 vsplit(src + j, dst0 + i, dst1 + i); in split_() 317 VSplit2<T> vsplit; in split_() local 318 if (vsplit.support) in split_() 321 vsplit(src + j, dst0 + i, dst1 + i); in split_() 342 VSplit3<T> vsplit; in split_() local 344 vsplit(src + j, dst0 + i, dst1 + i, dst2 + i); in split_() 352 VSplit3<T> vsplit; in split_() local 354 if (vsplit.support) in split_() 357 vsplit(src + j, dst0 + i, dst1 + i, dst2 + i); in split_() [all …]
|