HomeSort by relevance Sort by last modified time
    Searched refs:bins (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/ltp/tools/pounder21/src/mem_alloc_test/
Makefile 21 bins = mem_alloc macro
23 all: ${bins}
26 rm -f ${bins}
  /external/ltp/tools/pounder21/src/memxfer5b/
Makefile 22 bins = memxfer5b macro
24 all: ${bins}
27 rm -f ${bins}
  /external/ltp/tools/pounder21/src/randacoords/
Makefile 22 bins = coords macro
24 all: ${bins}
27 rm -f ${bins}
  /external/ltp/tools/pounder21/src/randasyscall/
Makefile 22 bins = randasys macro
24 all: ${bins}
27 rm -f ${bins}
  /external/ltp/tools/pounder21/src/time_tests/
Makefile 23 bins = inconsistency-check macro
25 all: ${bins}
28 rm -f ${bins}
  /external/ltp/tools/pounder21/src/cpufreq/
Makefile 23 bins = cpufreq.bin macro
25 all: ${bins}
31 rm -f ${bins}
  /external/ltp/tools/pounder21/src/ramsnake/
Makefile 22 bins = snake.exe macro
24 all: ${bins}
30 rm -f ${bins}
  /external/ltp/tools/pounder21/src/xbonkers/
Makefile 23 bins = xbonkers macro
25 all: ${bins}
28 rm -f ${bins}
  /external/eigen/test/
rand.cpp 40 template<typename Scalar> void check_histogram(Scalar x, Scalar y, int bins)
42 Array<int,1,Dynamic> hist(bins);
45 int n = bins*f;
47 int divisor = int((range+1)/bins);
48 assert(((range+1)%bins)==0);
113 int bins = 100; local
114 CALL_SUBTEST(check_histogram<int>(-3333,-3333+bins*(3333/bins)-1,bins));
115 bins = 1000
    [all...]
  /external/webp/src/utils/
filters_utils.c 32 int bins[WEBP_FILTER_LAST][SMAX]; local
33 memset(bins, 0, sizeof(bins));
46 bins[WEBP_FILTER_NONE][diff0] = 1;
47 bins[WEBP_FILTER_HORIZONTAL][diff1] = 1;
48 bins[WEBP_FILTER_VERTICAL][diff2] = 1;
49 bins[WEBP_FILTER_GRADIENT][diff3] = 1;
60 if (bins[filter][i] > 0) {
  /external/skia/tests/
RandomTest.cpp 34 static bool chi_square_test(int bins[256], int e) {
42 double delta = bins[j] - e;
60 int bins[256]; local
61 memset(bins, 0, sizeof(int)*256);
65 bins[(rand.nextU() >> shift) & 0xff]++;
68 REPORTER_ASSERT(reporter, chi_square_test(bins, 10000));
72 int bins[256]; local
73 memset(bins, 0, sizeof(int)*256);
79 bins[(int)(f*256.f)]++;
81 REPORTER_ASSERT(reporter, chi_square_test(bins, 10000))
169 int bins[256]; local
    [all...]
  /external/skqp/tests/
RandomTest.cpp 34 static bool chi_square_test(int bins[256], int e) {
42 double delta = bins[j] - e;
60 int bins[256]; local
61 memset(bins, 0, sizeof(int)*256);
65 bins[(rand.nextU() >> shift) & 0xff]++;
68 REPORTER_ASSERT(reporter, chi_square_test(bins, 10000));
72 int bins[256]; local
73 memset(bins, 0, sizeof(int)*256);
79 bins[(int)(f*256.f)]++;
81 REPORTER_ASSERT(reporter, chi_square_test(bins, 10000))
169 int bins[256]; local
    [all...]
  /external/libdrm/nouveau/
bufctx.c 56 struct nouveau_bufbin_priv bins[]; member in struct:nouveau_bufctx_priv
66 nouveau_bufctx_new(struct nouveau_client *client, int bins,
71 priv = calloc(1, sizeof(*priv) + sizeof(priv->bins[0]) * bins);
77 priv->nr_bins = bins;
106 struct nouveau_bufbin_priv *pbin = &pctx->bins[bin];
125 struct nouveau_bufbin_priv *pbin = &pctx->bins[bin];
153 struct nouveau_bufbin_priv *pbin = &pctx->bins[bin];
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
st.c 32 * bins
34 * DEFAULT_INIT_TABLE_SIZE is the default for the number of bins
163 tbl->bins = (st_table_entry **)Calloc(size, sizeof(st_table_entry*));
209 ptr = table->bins[i];
216 free(table->bins);
231 ptr = (table)->bins[bin_pos];\
278 entry->next = table->bins[bin_pos];\
279 table->bins[bin_pos] = entry;\
333 ptr = table->bins[i];
342 free(table->bins);
    [all...]
st.h 28 struct st_table_entry **bins; member in struct:st_table
  /external/tensorflow/tensorflow/python/ops/
histogram_ops_test.py 33 # Bins will be:
39 bins = histogram_ops.histogram_fixed_width_bins(
41 self.assertEqual(dtypes.int32, bins.dtype)
42 self.assertAllClose(expected_bins, bins.eval())
45 # Bins will be:
51 bins = histogram_ops.histogram_fixed_width_bins(
53 self.assertEqual(dtypes.int32, bins.dtype)
54 self.assertAllClose(expected_bins, bins.eval())
57 # Bins will be:
63 bins = histogram_ops.histogram_fixed_width_bins
    [all...]
  /external/opencv/cv/src/
cvhistogram.cpp 62 hist->bins = 0;
65 CV_CALL( hist->bins = cvInitMatNDHeader( &hist->mat, dims, sizes,
67 CV_CALL( cvCreateData( hist->bins ));
71 CV_CALL( hist->bins = cvCreateSparseMat( dims, sizes, CV_HIST_DEFAULT_TYPE ));
109 CV_CALL( hist->bins = cvInitMatNDHeader( &hist->mat, dims, sizes,
127 hist->bins = 0;
154 cvRelease( &temp->bins );
157 cvReleaseData( temp->bins );
158 temp->bins = 0;
180 cvZero( hist->bins );
891 int* bins = ((CvMatND*)(hist->bins))->data.i; local
1149 int* bins = mat->data.i; local
1574 float* bins = mat->data.fl; local
1842 float* bins = mat->data.fl; local
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/spreadsortlib/
spreadsort.hpp 44 //This is called for a set of bins, instead of bin-by-bin, to avoid performance overhead
96 //If we can finish in one iteration without exceeding either (2 to the MAX_SPLITS) or n bins, do so
120 //Make sure there is space for the bins
146 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
152 bins[0] = first;
154 bins[u + 1] = bins[u] + bin_sizes[u];
160 RandomAccessIter * local_bin = bins + u;
165 for(target_bin = (bins + ((*current >> log_divisor) - div_min)); target_bin != local_bin;
166 target_bin = bins + ((*current >> log_divisor) - div_min)) {
259 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
307 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
500 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
549 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
600 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
649 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
699 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
783 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
867 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, bin_count); local
1130 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, membin_count) + 1; local
1219 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, membin_count); local
1306 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, membin_count) + 1; local
1393 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, membin_count) + 1; local
1483 RandomAccessIter * bins = size_bins(bin_sizes, bin_cache, cache_offset, cache_end, membin_count); local
    [all...]
  /external/opencv/cvaux/include/
cvaux.hpp 75 { return m_hist ? cvGetDims( m_hist->bins, dims ) : 0; }
87 bool set_threshold( int threshold ) // threshold applied to the histogram bins
115 { return m_hist ? (float)cvGetRealND(m_hist->bins, bin) : 0.f; }
  /external/jemalloc/src/
android_je_mallinfo.c 34 arena_bin_t* bin = &arenas[i]->bins[j];
70 arena_bin_t* bin = &arenas[aidx]->bins[j];
89 arena_bin_t* bin = &arenas[aidx]->bins[bidx];
  /external/tensorflow/tensorflow/compiler/tests/
stateless_random_ops_test.py 66 def _chi_squared(self, x, bins):
70 histogram, _ = np.histogram(x, bins=bins, range=(0, 1))
71 expected = n / float(bins)
83 # Tests that the values are distributed amongst 10 bins with equal
  /external/lisa/libs/utils/analysis/
latency_analysis.py 285 def plotLatency(self, task, kind='all', tag=None, threshold_ms=1, bins=64):
307 :param bins: number of bins to be used for the runtime's histogram
308 :type bins: int
392 df.latency.plot(kind='hist', bins=bins, ax=axes,
394 title='Latency histogram ({} bins, {} [ms] green threshold)'\
395 .format(bins, threshold_ms));
481 def plotActivations(self, task, tag=None, threshold_ms=16, bins=64):
492 - Activations intervals histogram: reports a 64 bins histogram o
    [all...]
  /external/opencv/cvaux/src/
camshift.cpp 171 dims = cvGetDims( m_hist->bins );
187 cvScale( m_hist->bins, m_hist->bins, max_val ? 255. / max_val : 0. );
255 int c_dims2 = cvGetDims( m_hist->bins, dims2 );
  /external/tensorflow/tensorflow/contrib/image/python/kernel_tests/
segmentation_test.py 93 bins = np.bincount(components.ravel())
95 self.assertGreater(bins[0], 0)
96 self.assertGreater(bins[1], 0)
97 self.assertGreater(bins[2], 0)
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/common/src/
extra_data_handler.cpp 50 OMX_U32 rem_bits = num_bits, bins = 0, shift = 0; local
55 bins <<= shift;
57 bins |= ((rbsp_buf[byte_ptr] << shift) & 0xFF) >> shift;
66 bins <<= rem_bits;
67 bins |= ((rbsp_buf[byte_ptr] << (8-bit_ptr)) & 0xFF) >> (8-rem_bits);
77 DEBUG_PRINT_LOW("\nIn %s() bin/num_bits : %x/%d", __func__, bins, num_bits);
78 return bins;

Completed in 839 milliseconds

1 2 3