Home
last modified time | relevance | path

Searched refs:num_levels (Results 1 – 14 of 14) sorted by relevance

/external/opencv3/3rdparty/libwebp/utils/
Dquant_levels.c32 int num_levels, uint64_t* const sse) { in QuantizeLevels() argument
50 if (num_levels < 2 || num_levels > 256) { in QuantizeLevels()
65 if (num_levels_in <= num_levels) goto End; // nothing to do! in QuantizeLevels()
68 for (i = 0; i < num_levels; ++i) { in QuantizeLevels()
69 inv_q_level[i] = min_s + (double)(max_s - min_s) * i / (num_levels - 1); in QuantizeLevels()
74 q_level[max_s] = num_levels - 1; in QuantizeLevels()
76 assert(inv_q_level[num_levels - 1] == max_s); in QuantizeLevels()
87 while (slot < num_levels - 1 && in QuantizeLevels()
99 if (num_levels > 2) { in QuantizeLevels()
100 for (slot = 1; slot < num_levels - 1; ++slot) { in QuantizeLevels()
Dquant_levels.h29 int QuantizeLevels(uint8_t* const data, int width, int height, int num_levels,
/external/webp/src/utils/
Dquant_levels.c28 int num_levels, uint64_t* const sse) { in QuantizeLevels() argument
46 if (num_levels < 2 || num_levels > 256) { in QuantizeLevels()
61 if (num_levels_in <= num_levels) goto End; // nothing to do! in QuantizeLevels()
64 for (i = 0; i < num_levels; ++i) { in QuantizeLevels()
65 inv_q_level[i] = min_s + (double)(max_s - min_s) * i / (num_levels - 1); in QuantizeLevels()
70 q_level[max_s] = num_levels - 1; in QuantizeLevels()
72 assert(inv_q_level[num_levels - 1] == max_s); in QuantizeLevels()
83 while (slot < num_levels - 1 && in QuantizeLevels()
95 if (num_levels > 2) { in QuantizeLevels()
96 for (slot = 1; slot < num_levels - 1; ++slot) { in QuantizeLevels()
Dquant_levels.h29 int QuantizeLevels(uint8_t* const data, int width, int height, int num_levels,
/external/valgrind/coregrind/
Dm_cache.c60 if (ci->num_levels < cache.level) ci->num_levels = cache.level; in add_cache()
145 ci->num_levels = 0; in Intel_cache_info()
438 ci->num_levels = 2; in AMD_cache_info()
444 ci->num_levels = 3; in AMD_cache_info()
509 ci->num_levels = 2; in get_caches_from_CPUID()
620 ci->num_levels = 0; in get_cache_info()
626 ++ci->num_levels; in get_cache_info()
640 for (level = 0; level < ci->num_levels; level++) { in get_cache_info()
678 VG_(debugLog)(1, "cache", " #levels = %u\n", ci->num_levels); in write_cache_info()
707 for (level = 1; level <= ci->num_levels; ++level) { in cache_info_is_sensible()
[all …]
/external/opencv3/modules/stitching/src/
Dblenders.cpp551 void createLaplacePyr(InputArray img, int num_levels, std::vector<UMat> &pyr) in createLaplacePyr() argument
555 if(tegra::useTegra() && tegra::createLaplacePyr(imgMat, num_levels, pyr)) in createLaplacePyr()
559 pyr.resize(num_levels + 1); in createLaplacePyr()
563 if(num_levels == 0) in createLaplacePyr()
573 for(int i = 1; i < num_levels; ++i) in createLaplacePyr()
589 subtract(current, lvl_up, pyr[num_levels-1], noArray(), CV_16S); in createLaplacePyr()
591 downNext.convertTo(pyr[num_levels], CV_16S); in createLaplacePyr()
597 for (int i = 0; i < num_levels; ++i) in createLaplacePyr()
600 for (int i = 0; i < num_levels; ++i) in createLaplacePyr()
609 void createLaplacePyrGpu(InputArray img, int num_levels, std::vector<UMat> &pyr) in createLaplacePyrGpu() argument
[all …]
/external/libunwind/tests/
DLtest-nocalloc.c84 const int num_levels = 100; in do_backtrace() local
85 void *pc[num_levels]; in do_backtrace()
88 unw_backtrace(pc, num_levels); in do_backtrace()
/external/mesa3d/src/mesa/main/
Dtexcompress_cpal.c115 const int num_levels = -level + 1; in _mesa_cpal_compressed_size() local
128 for (lvl = 0; lvl < num_levels; lvl++) { in _mesa_cpal_compressed_size()
172 GLint lvl, num_levels; in _mesa_cpal_compressed_teximage2d() local
184 num_levels = -level + 1; in _mesa_cpal_compressed_teximage2d()
192 for (lvl = 0; lvl < num_levels; lvl++) { in _mesa_cpal_compressed_teximage2d()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dblenders.hpp151 void CV_EXPORTS createLaplacePyr(InputArray img, int num_levels, std::vector<UMat>& pyr);
152 void CV_EXPORTS createLaplacePyrGpu(InputArray img, int num_levels, std::vector<UMat>& pyr);
/external/valgrind/cachegrind/
Dcg_arch.c358 ll = locate_cache(ci, UNIFIED_CACHE, ci->num_levels); in configure_caches()
364 if (ll && ci->num_levels > 2) { in configure_caches()
366 "LL simulation.\n", ci->num_levels); in configure_caches()
/external/mesa3d/src/gallium/drivers/i915/
Di915_state_sampler.c304 const uint num_levels = pt->last_level; in update_map() local
305 unsigned max_lod = num_levels * 4; in update_map()
/external/libdrm/freedreno/kgsl/
Dmsm_kgsl.h180 int num_levels; member
/external/valgrind/VEX/pub/
Dlibvex.h267 UInt num_levels; member
/external/valgrind/VEX/priv/
Dmain_main.c1445 vai->hwcache_info.num_levels = 0; in LibVEX_default_VexArchInfo()