Home
last modified time | relevance | path

Searched refs:last_value (Results 1 – 10 of 10) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
Dsequence.py65 last_value = val[-self.sequence_length:]
66 if (not self.rollover) and (last_value == self.last_item):
67 val = "%s%s" % (self(val[:-self.sequence_length]), self._inc(last_value))
69 val = "%s%s" % (val[:-self.sequence_length], self._inc(last_value))
134 self.last_value = None
186 self.last_value = self.item_type(val['last_value'])
219 self.val = self.fnc(self.val, self.last_value)
/external/autotest/client/cros/networking/
Dshill_proxy.py445 last_value = properties.get(property_name, '(no value found)')
446 if last_value in expected_values:
447 return True, last_value, duration()
464 last_value = value
465 if not last_value in expected_values:
468 return True, last_value, duration()
474 return False, last_value, duration()
/external/chromium-trace/catapult/third_party/WebOb/webob/
Dclient.py150 last_header, last_value = headers_out.pop()
151 value = last_value + ', ' + full_header.strip()
/external/webp/src/enc/
Dframe.c38 double value, last_value; // PSNR or size member
54 s->value = s->last_value = 0.; in InitPassStats()
68 } else if (s->value != s->last_value) { in ComputeNextQ()
69 const double slope = (s->target - s->value) / (s->last_value - s->value); in ComputeNextQ()
77 s->last_value = s->value; in ComputeNextQ()
610 num_pass_left, stats.last_value, stats.value, stats.last_q, stats.q); in StatLoop()
814 num_pass_left, stats.last_value, stats.value, in VP8EncTokenLoop()
/external/v8/tools/
Dstats-viewer.py280 self.last_value = None
292 if value == self.last_value:
295 self.last_value = value
/external/chromium-trace/catapult/third_party/Paste/paste/
Dproxy.py269 last_header, last_value = headers_out.pop()
270 value = last_value + ' ' + full_header.strip()
/external/google-breakpad/src/common/windows/
Dpdb_source_line_writer.cc868 int last_value = value; in wcstol_positive_strict() local
871 if (value / 10 != last_value || value < 0) { in wcstol_positive_strict()
878 last_value = value; in wcstol_positive_strict()
881 if (value < last_value) { in wcstol_positive_strict()
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dbwe_test_framework.cc55 const FlowIds CreateFlowIdRange(int initial_value, int last_value) { in CreateFlowIdRange() argument
56 int size = last_value - initial_value + 1; in CreateFlowIdRange()
59 for (int i = initial_value; i <= last_value; ++i) { in CreateFlowIdRange()
Dbwe_test_framework.h78 const FlowIds CreateFlowIdRange(int initial_value, int last_value);
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dcommand.py1784 last_value = self.last_shared_var_values.get(key, 0)
1788 delta = getattr(cls, name) - last_value
1789 self.last_shared_var_values[key] = delta + last_value