Searched refs:temp_storage (Results 1 - 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
H A Dbincount_op_gpu.cu.cc77 Tensor temp_storage; local
80 TensorShape({static_cast<int64>(temp_storage_bytes)}), &temp_storage));
82 void* d_temp_storage = temp_storage.flat<int8>().data();
H A Dhistogram_op_gpu.cu.cc88 Tensor temp_storage; local
91 TensorShape({static_cast<int64>(temp_storage_bytes)}), &temp_storage));
93 void* d_temp_storage = temp_storage.flat<int8>().data();
H A Dwhere_op_gpu.cu.h148 auto first_success = reducer(/*temp_storage*/ nullptr, temp_storage_bytes,
161 Tensor temp_storage; local
164 &temp_storage));
167 /*temp_storage*/ temp_storage.flat<int8>().data(), temp_storage_bytes,
284 auto first_success = counter(/*temp_storage*/ nullptr, temp_storage_bytes,
297 Tensor temp_storage; local
300 &temp_storage));
303 /*temp_storage*/ temp_storage
[all...]
H A Dreduction_gpu_kernels.cu.h198 __shared__ typename BlockReduce::TempStorage temp_storage; local
207 sum = BlockReduce(temp_storage).Reduce(sum, op, num_elements_to_reduce);
240 __shared__ typename WarpReduce::TempStorage temp_storage; local
242 sum = WarpReduce(temp_storage).Reduce(sum, op, min(num_cols, 32));
372 __shared__ typename WarpReduce::TempStorage temp_storage; local
376 WarpReduce(temp_storage).HeadSegmentedReduce(val, head_flag, op);
469 Tensor temp_storage; local
474 &temp_storage));
478 in, (T*)temp_storage.flat<int8_t>().data(), in_size, op, init);
485 (T*)temp_storage
491 Tensor temp_storage; local
533 Tensor temp_storage; local
575 Tensor temp_storage; local
611 Tensor temp_storage; local
683 Tensor temp_storage; local
[all...]
H A Dtopk_op_gpu.cu.cc492 Tensor temp_storage;
495 &temp_storage));
497 /* d_temp_storage */ temp_storage.flat<int8>().data(),
/external/opencv/cv/src/
H A Dcvrotcalipers.cpp350 CvMemStorage* temp_storage = 0; local
385 CV_CALL( temp_storage = cvCreateChildMemStorage( storage ));
389 CV_CALL( temp_storage = cvCreateMemStorage(1 << 10));
394 CV_CALL( ptseq = cvConvexHull2( ptseq, temp_storage, CV_CLOCKWISE, 1 ));
406 temp_storage, &writer );
469 cvReleaseMemStorage( &temp_storage );
H A Dcvcalibinit.cpp543 CvMemStorage* temp_storage = cvCreateChildMemStorage( storage ); local
544 CvSeq* stack = cvCreateSeq( 0, sizeof(*stack), sizeof(void*), temp_storage );
560 cvReleaseMemStorage( &temp_storage );
623 cvReleaseMemStorage( &temp_storage );
1021 CvMemStorage *temp_storage = 0; local
1040 CV_CALL( temp_storage = cvCreateMemStorage(0));
1084 CvSeq *hull = cvConvexHull2( &pointMat, temp_storage, CV_CLOCKWISE, 1 );
1094 cvClearMemStorage( temp_storage );
1129 cvReleaseMemStorage( &temp_storage );
1141 CvMemStorage* temp_storage local
1598 CvMemStorage *temp_storage = 0; local
1776 CvMemStorage *temp_storage = 0; local
[all...]
H A Dcvapprox.cpp530 CvMemStorage* temp_storage = 0; local
542 temp_storage = cvCreateChildMemStorage( storage );
545 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage );
714 cvReleaseMemStorage( &temp_storage );
734 CvMemStorage* temp_storage = 0; local
746 temp_storage = cvCreateChildMemStorage( storage );
749 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage );
919 cvReleaseMemStorage( &temp_storage );
H A Dcvpyrsegmentation.cpp203 CvMemStorage *temp_storage = 0; local
232 temp_storage = cvCreateChildMemStorage( storage );
235 cmp_seq = cvCreateSeq( 0, sizeof( CvSeq ), sizeof( _CvListNode ), temp_storage );
580 cvReleaseMemStorage( &temp_storage );
617 CvMemStorage *temp_storage = 0; local
649 temp_storage = cvCreateChildMemStorage( storage );
652 cmp_seq = cvCreateSeq( 0, sizeof( CvSeq ), sizeof( _CvListNode ), temp_storage );
1015 cvReleaseMemStorage( &temp_storage );
H A DmycvHaarDetectObjects.cpp882 CvMemStorage* temp_storage = 0; local
930 CV_CALL( temp_storage = cvCreateChildMemStorage( storage ));
938 seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage );
939 seq2 = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvAvgComp), temp_storage );
1152 big_seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage );
1561 cvReleaseMemStorage( &temp_storage );
H A Dcvhaar.cpp866 CvMemStorage* temp_storage = 0; local
902 CV_CALL( temp_storage = cvCreateChildMemStorage( storage ));
910 seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage );
911 seq2 = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvAvgComp), temp_storage );
1120 big_seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage );
1521 cvReleaseMemStorage( &temp_storage );
/external/opencv/ml/src/
H A Dmlsvm.cpp1317 const CvMat* responses, CvMemStorage* temp_storage, double* alpha )
1338 responses->data.i, 0, 0, temp_storage, alpha, df->rho ))
1385 CV_CALL( sv_tab = (int*)cvMemStorageAlloc( temp_storage, sample_count*sizeof(sv_tab[0]) ));
1387 CV_CALL( class_ranges = (int*)cvMemStorageAlloc( temp_storage,
1389 CV_CALL( temp_samples = (const float**)cvMemStorageAlloc( temp_storage,
1391 CV_CALL( temp_y = (schar*)cvMemStorageAlloc( temp_storage, sample_count));
1447 Cp, Cn, temp_storage, alpha, df->rho ))
1455 CV_CALL( df->alpha = (double*)cvMemStorageAlloc( temp_storage,
1457 CV_CALL( df->sv_index = (int*)cvMemStorageAlloc( temp_storage,
1530 CvMemStorage* temp_storage local
1316 do_train( int svm_type, int sample_count, int var_count, const float** samples, const CvMat* responses, CvMemStorage* temp_storage, double* alpha ) argument
1598 CvMemStorage* temp_storage = 0; local
[all...]
H A Dmltree.cpp51 tree_storage = temp_storage = 0;
65 tree_storage = temp_storage = 0;
167 cvReleaseMemStorage( &temp_storage );
177 temp_storage = data->temp_storage; data->temp_storage = 0;
295 CV_CALL( temp_storage = cvCreateMemStorage( temp_block_size ));
296 CV_CALL( nv_heap = cvCreateSet( 0, sizeof(*nv_heap), nv_size, temp_storage ));
298 CV_CALL( cv_heap = cvCreateSet( 0, sizeof(*cv_heap), cv_size, temp_storage ));
907 cvReleaseMemStorage( &temp_storage );
[all...]
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp2603 CvMemStorage* temp_storage = 0; local
2630 temp_storage = cvCreateChildMemStorage( storage );
2632 nodes = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvPTreeNode), temp_storage );
2748 cvReleaseMemStorage( &temp_storage );
/external/libvpx/libvpx/vp8/common/x86/
H A Dloopfilter_block_sse2_x86_64.asm355 %define temp_storage 0 ; size is 256 (16*16)
/external/opencv/ml/include/
H A Dml.h818 CvMemStorage* temp_storage; member in struct:CvDTreeTrainData

Completed in 468 milliseconds