/external/jemalloc/test/unit/ |
run_quantize.c | 5 unsigned nbins, i; local 16 assert_d_eq(mallctl("arenas.nbins", &nbins, &sz, NULL, 0), 0, 21 for (i = 0; i < nbins; i++) { 96 unsigned nbins, nlruns, i; local 105 assert_d_eq(mallctl("arenas.nbins", &nbins, &sz, NULL, 0), 0,
|
mallctl.c | 195 unsigned nbins, i; local 199 len = sizeof(nbins); 200 assert_d_eq(mallctl("arenas.nbins", &nbins, &len, NULL, 0), 0, 206 for (i = 0; i < nbins; i++) { 601 TEST_ARENAS_CONSTANT(unsigned, nbins, NBINS);
|
/external/opencv/cvaux/src/ |
cvfindhandregion.cpp | 67 int nbins = 20, i, l, i_point, left, right; local 86 /* low_count = count/nbins; */ 114 bin_counts = (int *) cvAlloc( nbins * sizeof( int )); 121 memset( bin_counts, 0, nbins * sizeof( int )); 171 bsize = vl / nbins; 193 for( l = 0; l < nbins; l++ ) 208 for( l = nbins - 1; l >= 0; l-- ) 216 hand_right = vmax - (nbins - right - 1) * bsize; 286 int nbins = 20, i, l, i_point, left, right, jmin, jmax, jl; local 310 /* low_count = count/nbins; */ [all...] |
/external/jemalloc/include/jemalloc/internal/ |
size_classes.sh | 103 nbins=0 116 nbins=$((${index} + 1)) 161 nbins=$((${index} + 1)) 184 # - nbins 215 * NBINS: Number of small size class bins. 239 echo "#define NBINS ${nbins}" 261 * cannot support more than 256 small size classes. Further constrain NBINS to 265 #if (NBINS > 255)
|
ctl.h | 52 malloc_bin_stats_t bstats[NBINS];
|
tcache.h | 60 ((TCACHE_GC_SWEEP / NBINS) + ((TCACHE_GC_SWEEP / NBINS == 0) ? 0 : 1)) 127 * Number of tcache bins. There are NBINS small-object bins, plus 0 or more 302 assert(binind < NBINS);
|
size_classes.h | 22 * NBINS: Number of small size class bins. 173 #define NBINS 39 319 #define NBINS 36 463 #define NBINS 35 [all...] |
arena.h | 462 arena_bin_t bins[NBINS]; 494 extern arena_bin_info_t arena_bin_info[NBINS]; 807 assert(binind < NBINS || binind == BININD_INVALID); [all...] |
/external/jemalloc/src/ |
android_je_mallinfo.c | 33 for (unsigned j = 0; j < NBINS; j++) { 53 return NBINS; 69 for (unsigned j = 0; j < NBINS; j++) { 87 if (aidx < narenas_auto && bidx < NBINS) {
|
tcache.c | 43 if (binind < NBINS) { 96 assert(binind < NBINS); 202 arena->stats.lstats[binind - NBINS].nrequests += 239 arena->stats.lstats[binind - NBINS].nrequests += 362 for (i = 0; i < NBINS; i++) { 381 arena->stats.lstats[i - NBINS].nrequests += 424 for (i = 0; i < NBINS; i++) { 434 malloc_large_stats_t *lstats = &arena->stats.lstats[i - NBINS]; 526 for (i = 0; i < NBINS; i++) {
|
stats.c | 55 unsigned nbins, j; local 72 CTL_GET("arenas.nbins", &nbins, unsigned); 73 for (j = 0, in_gap = false; j < nbins; j++) { 164 unsigned nbins, nlruns, j; local 170 CTL_GET("arenas.nbins", &nbins, unsigned); 196 run_size, nbins + j, curruns * run_size, nmalloc, 210 unsigned nbins, nlruns, nhchunks, j; local 216 CTL_GET("arenas.nbins", &nbins, unsigned) [all...] |
ctl.c | 358 {NAME("nbins"), CTL(arenas_nbins)}, 548 memset(astats->bstats, 0, NBINS * sizeof(malloc_bin_stats_t)); 567 for (i = 0; i < NBINS; i++) { 617 for (i = 0; i < NBINS; i++) { [all...] |
arena.c | 18 arena_bin_info_t arena_bin_info[NBINS]; 801 szind_t index = size2index(usize) - nlclasses - NBINS; 814 szind_t index = size2index(usize) - nlclasses - NBINS; 827 szind_t index = size2index(usize) - nlclasses - NBINS; 840 szind_t index = size2index(usize) - nlclasses - NBINS; [all...] |
/external/opencv3/apps/traincascade/ |
HOGfeatures.cpp | 157 void CvHOGEvaluator::integralHistogram(const Mat &img, vector<Mat> &histogram, Mat &norm, int nbins) const 186 float angleScale = (float)(nbins/CV_PI); 210 bidx += nbins; 211 else if( bidx >= nbins ) 212 bidx -= nbins; 227 for( binIdx = 0; binIdx < nbins; binIdx++ )
|
HOGfeatures.h | 29 virtual void integralHistogram(const cv::Mat &img, std::vector<cv::Mat> &histogram, cv::Mat &norm, int nbins) const;
|
/external/opencv3/modules/features2d/src/kaze/ |
nldiffusion_functions.h | 29 float compute_k_percentile(const cv::Mat& img, float perc, float gscale, int nbins, int ksize_x, int ksize_y);
|
nldiffusion_functions.cpp | 206 * @param nbins Number of histogram bins 211 float compute_k_percentile(const cv::Mat& img, float perc, float gscale, int nbins, int ksize_x, int ksize_y) { 219 std::vector<int> hist(nbins, 0); 256 nbin = (int)floor(nbins*(sqrt(modg) / hmax)); 258 if (nbin == nbins) { 271 for (k = 0; nelements < nthreshold && k < nbins; k++) { 279 kperc = hmax*((float)(k) / (float)nbins);
|
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
hog.cu | 90 void set_up_constants(int nbins, int block_stride_x, int block_stride_y, 93 cudaSafeCall( cudaMemcpyToSymbol(cnbins, &nbins, sizeof(nbins)) ); 99 int block_hist_size = nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y; 195 void compute_hists(int nbins, int block_stride_x, int block_stride_y, 215 int hists_size = (nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y * 12 * nblocks) * sizeof(float); 216 int final_hists_size = (nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y * nblocks) * sizeof(float); 295 void normalize_hists(int nbins, int block_stride_x, int block_stride_y, 300 int block_hist_size = nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y; 655 void compute_gradients_8UC4(int nbins, int height, int width, const PtrStepSzb& img [all...] |
/external/opencv3/modules/objdetect/src/ |
hog.cpp | 80 static size_t getBlockHistogramSize(Size block_size, Size cell_size, int nbins) 84 return (size_t)(nbins * cells_per_block.area()); 94 return (size_t)nbins* 121 size_t block_hist_size = getBlockHistogramSize(blockSize, cellSize, nbins); 151 obj["nbins"] >> nbins; local 182 << "nbins" << nbins 214 c.nbins = nbins; 558 int i, j, nbins = descriptor->nbins; local [all...] |
/external/opencv3/modules/calib3d/src/ |
quadsubpix.cpp | 170 const int nbins = 256; local 182 calcHist(&img_roi, 1, &channels, Mat(), hist, 1, &nbins, &_ranges);
|
/external/opencv3/modules/objdetect/test/ |
test_cascadeandhog.cpp | 662 int i, j, nbins = descriptor->nbins; local 668 blockHistogramSize = ncells.width*ncells.height*nbins; 741 data->histOfs[0] = (icellX0*ncells.height + icellY0)*nbins; 743 data->histOfs[1] = (icellX1*ncells.height + icellY0)*nbins; 745 data->histOfs[2] = (icellX0*ncells.height + icellY1)*nbins; 747 data->histOfs[3] = (icellX1*ncells.height + icellY1)*nbins; 758 data->histOfs[0] = (icellX0*ncells.height + icellY1)*nbins; 760 data->histOfs[1] = (icellX1*ncells.height + icellY1)*nbins; 778 data->histOfs[0] = (icellX1*ncells.height + icellY0)*nbins; [all...] |
/external/opencv3/modules/cudaobjdetect/include/opencv2/ |
cudaobjdetect.hpp | 93 @param nbins Number of bins. Only 9 bins per cell are supported for now. 99 int nbins = 9);
|
/external/opencv3/modules/java/src/ |
objdetect+HOGDescriptor.java | 365 // C++: int HOGDescriptor::nbins 561 // C++: int HOGDescriptor::nbins
|
/external/opencv3/modules/objdetect/include/opencv2/ |
objdetect.hpp | 346 cellSize(8,8), nbins(9), derivAperture(1), winSigma(-1), 357 nbins(_nbins), derivAperture(_derivAperture), winSigma(_winSigma), 425 CV_PROP int nbins; member in struct:cv::HOGDescriptor
|
/external/jemalloc/test/integration/ |
xallocx.c | 87 return (get_nsizes_impl("arenas.nbins"));
|