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

1 2 3

  /external/opencv3/modules/photo/src/
denoising.cpp 53 double granularity = (double)std::max(1., (double)dst.total()/(1 << 17)); local
60 granularity);
67 granularity);
72 granularity);
79 granularity);
84 granularity);
91 granularity);
96 granularity);
248 double granularity = (double)std::max(1., (double)dst.total()/(1 << 16)); local
257 granularity);
    [all...]
  /external/v8/tools/
eval_gc_nvp.py 18 def __init__(self, granularity):
19 self.granularity = granularity
22 return int(value / self.granularity)
25 return (bucket * self.granularity, (bucket + 1) * self.granularity)
126 linear_group.add_argument('--linear-histogram-granularity',
127 metavar='GRANULARITY', type=int, nargs='?',
129 help='histogram granularity (default: 5)')
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/autoscale/
group.py 66 def __init__(self, connection=None, metric=None, granularity=None):
69 self.granularity = granularity
72 return 'EnabledMetric(%s, %s)' % (self.metric, self.granularity)
78 if name == 'Granularity':
79 self.granularity = value
347 self.granularity = None
358 elif name == 'Granularity':
359 self.granularity = value
__init__.py 703 def enable_metrics_collection(self, as_group, granularity, metrics=None):
716 :type granularity: string
717 :param granularity: The granularity to associate with the metrics to
718 collect. Currently, the only legal granularity is "1Minute".
725 'Granularity': granularity}
    [all...]
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 338 uptr granularity = SHADOW_GRANULARITY; local
340 IsAligned(beg, granularity))) {
348 uptr a = RoundDownTo(Min(old_mid, new_mid), granularity);
349 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity);
350 uptr d1 = RoundDownTo(old_mid, granularity);
351 // uptr d2 = RoundUpTo(old_mid, granularity);
360 if (a + granularity <= d1)
362 // if (d2 + granularity <= c && c <= end)
363 // CHECK_EQ(*(u8 *)MemToShadow(c - granularity),
366 uptr b1 = RoundDownTo(new_mid, granularity);
    [all...]
asan_report.cc 927 uptr granularity = SHADOW_GRANULARITY; local
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_rt.h 105 long granularity; member in struct:PERF_RT_Private
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_rt.c 136 me->granularity = (config->rt_granularity < 1) ? 1 :
139 me->granularity *= 1000000; /* convert to microsecs */
546 /* see if we passed our granularity */
548 if (steps >= me->granularity)
550 steps /= me->granularity;
558 (me->dRate[i].tn < me->granularity * steps))
568 TIME_INCREASE(me->dRate[i].last_reporting, me->granularity * steps);
578 /* see if we surpassed our granularity. if yes, calculate
585 TIME_INCREASE(me->dRate[i].last_reporting, me->granularity);
721 /* see if we passed our granularity. if yes, calculate uptime *
    [all...]
  /external/ant-glob/src/org/apache/tools/ant/types/selectors/
SelectorUtils.java 602 * @param granularity the amount in seconds of slack we will give in
606 public static boolean isOutOfDate(File src, File target, int granularity) {
613 if ((src.lastModified() - granularity) > target.lastModified()) {
  /frameworks/rs/api/
rs_time.spec 102 The granularity of the values return by this call may be much larger than a nanosecond.
  /prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
ant-glob-1.0.jar 
  /external/e2fsprogs/misc/
badblocks.c 744 unsigned int granularity = blocks_at_once; local
829 got = try = granularity - buf_used;
848 if (granularity != 1) {
849 granularity = 1;
892 if ((buf_used != granularity) &&
897 granularity = blocks_at_once;
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
i18n.py 435 def format_timedelta(self, datetime_or_timedelta, granularity='second',
444 :param granularity:
458 return dates.format_timedelta(datetime_or_timedelta, granularity,
746 def format_timedelta(datetime_or_timedelta, granularity='second',
750 granularity, threshold)
  /external/compiler-rt/lib/asan/tests/
asan_interface_test.cc 220 // Make sure that each aligned block of size "2^granularity" doesn't have
222 static void MakeShadowValid(bool *shadow, int length, int granularity) {
229 if (i % (1 << granularity) == 0) {
249 MakeShadowValid(expected, kSize, /*granularity*/ 3);
251 MakeShadowValid(expected, kSize, /*granularity*/ 3);
261 MakeShadowValid(expected, kSize, /*granularity*/ 3);
263 MakeShadowValid(expected, kSize, /*granularity*/ 3);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
resumable_download_handler.py 246 parameter this parameter determines the granularity of the callback
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityNodeInfo.java 150 * at a given movement granularity. For example, move to the next character,
182 * at a given movement granularity. For example, move to the next character,
331 * Argument for which movement granularity to be used when traversing the node text.
365 * Argument for whether when moving at granularity to extend the selection
480 * Movement granularity bit for traversing the text of a node by character.
485 * Movement granularity bit for traversing the text of a node by word.
490 * Movement granularity bit for traversing the text of a node by line.
495 * Movement granularity bit for traversing the text of a node by paragraph.
500 * Movement granularity bit for traversing the text of a node by page.
3241 final int granularity = 1 << Integer.numberOfTrailingZeros(granularities); local
    [all...]
AccessibilityEvent.java 230 * <b>View text traversed at movement granularity</b> - represents the event of traversing the
231 * text of a view at a given granularity. For example, moving to the next word.</br>
240 * <li>{@link #getMovementGranularity()} - Sets the granularity at which a view's text
252 * <li>{@link #getMovementGranularity()} - Sets the granularity at which a view's text
658 * Represents the event of traversing the text of a view at a given movement granularity.
    [all...]
  /external/autotest/client/common_lib/hosts/
base_classes.py 268 @param gb A floating point number to compare with a granularity
  /external/opencv3/doc/pattern_tools/
svgfig.py     [all...]
  /external/dlmalloc/
malloc.c 233 default granularity, pixel buffers may straddle virtual allocation
2618 size_t granularity; member in struct:malloc_params
    [all...]
  /external/libvorbis/doc/
a1-encapsulation-ogg.tex 153 decoding; this technique is used to allow sample-granularity
  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_i18n_test.py 206 self.assertEqual(i18n.format_timedelta(datetime.timedelta(hours=3), granularity='day'), u'1 day')
  /frameworks/base/core/java/android/view/
View.java 9587 final int granularity = arguments.getInt( local
9596 final int granularity = arguments.getInt( local
    [all...]
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.7.0/
ant-1.7.0.jar 

Completed in 540 milliseconds

1 2 3