HomeSort by relevance Sort by last modified time
    Searched full:delta (Results 501 - 525 of 3461) sorted by null

<<21222324252627282930>>

  /external/chromium_org/ash/wm/workspace/
snap_sizer.h 73 // Changes the bounds. |x| is the current x-coordinate and |delta| the amount
74 // to increase by. |delta| comes from CalculateIncrement() and is applied
76 void ChangeBounds(int x, int delta);
  /external/chromium_org/chrome/browser/component_updater/
component_patcher_operation.h 86 // A 'create' operation takes a full file that was sent in the delta update
110 // format patch file provided in the delta update package, and runs bsdiff
133 // format patch file provided in the delta update package, and runs Courgette
  /external/chromium_org/chrome/test/chromedriver/net/
sync_websocket_impl.cc 82 base::TimeDelta delta = deadline - base::TimeTicks::Now(); local
83 if (delta <= base::TimeDelta())
85 on_update_event_.TimedWait(delta);
  /external/chromium_org/chrome_frame/test/data/
chrome_frame_resize.html 95 function DebugResizeChromeFrame(delta) {
97 var newWidth = chromeFrame.clientWidth + delta;
98 var newHeight = chromeFrame.clientHeight + delta;
  /external/chromium_org/net/quic/congestion_control/
channel_estimator.cc 43 QuicTime::Delta sent_delta = send_time.Subtract(last_send_time_);
44 QuicTime::Delta received_delta = receive_time.Subtract(last_receive_time_);
102 void ChannelEstimator::UpdateFilter(QuicTime::Delta received_delta,
  /external/chromium_org/sdch/open-vcdiff/src/
headerparser.h 97 // Represents one of the three sections in the delta window, as described in
190 // Used to parse the bytes and Varints that make up the delta file header
191 // or delta window header.
235 // Parses the first three elements of the delta window header:
275 // Parses the following two elements of the delta window header:
277 // Length of the delta encoding - integer (VarintBE format)
286 // Returns a pointer to the end of the delta window (which might not point to
291 // Parses the following element of the delta window header:
302 // Parses the following 3 elements of the delta window header:
383 // parsed length of the delta encoding
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarker.cpp 152 void DocumentMarker::shiftOffsets(int delta)
154 m_startOffset += delta;
155 m_endOffset += delta;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollAnimator.h 99 virtual void notifyContentAreaScrolled(const FloatSize& delta) { UNUSED_PARAM(delta); }
106 virtual void notifyPositionChanged(const FloatSize& delta);
Timer.h 57 void augmentRepeatInterval(double delta) {
58 setNextFireTime(m_nextFireTime + delta);
59 m_repeatInterval += delta;
  /external/chromium_org/third_party/freetype/src/autofit/
aflatin.c 528 FT_Pos delta; local
536 delta = scaler->x_delta;
541 delta = scaler->y_delta;
546 if ( axis->org_scale == scale && axis->org_delta == delta )
550 axis->org_delta = delta;
593 axis->delta = delta;
598 metrics->root.scaler.x_delta = delta;
603 metrics->root.scaler.y_delta = delta;
630 blue->ref.cur = FT_MulFix( blue->ref.org, scale ) + delta;
1630 FT_Pos delta; local
1717 FT_Pos delta; local
2087 FT_Pos dist1, dist2, span, delta; local
2138 FT_Pos delta; local
2273 FT_Pos delta; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_vbo_t.c 270 int delta = *pdelta; local
274 if (delta < 0)
275 delta = ((int)offset - (int)a->offset) / a->stride;
277 dirty = (delta < 0 ||
278 offset != (a->offset + delta * a->stride));
283 *pdelta = (dirty ? 0 : delta);
305 unsigned delta = (base + min_index) * array->StrideB; local
312 offset[i] = delta + (intptr_t)array->Ptr;
317 nouveau_bufferobj_sys(obj), array->Ptr) + delta;
364 int i, delta = 0, basevertex = 0 local
    [all...]
  /external/chromium_org/ui/app_list/
pagination_model_unittest.cc 230 // Scroll to the next page (negative delta) and finish it.
239 // Scroll to the previous page (positive delta) and finish it.
248 // Scroll to the next page (negative delta) and cancel it.
257 // Scroll to the previous page (position delta) and cancel it.
270 // Scroll to the next page (negative delta) with a transition in the same
282 // Scroll to the next page (negative delta) with a transition in a different
292 // Scroll to the previous page (positive delta) with a transition in the same
304 // Scroll to the previous page (positive delta) with a transition in a
318 // Scroll to the next page (negative delta) with a transition in the same
334 // Scroll to the next page (negative delta) with a transition in a differen
    [all...]
  /external/chromium_org/ui/base/models/
list_selection_model.cc 92 int delta = std::abs(index - anchor_); local
93 SelectedIndices new_selection(delta + 1, 0);
94 for (int i = 0, min = std::min(index, anchor_); i <= delta; ++i)
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
InsnList.java 110 * @param delta the amount to offset register numbers by
113 public InsnList withRegisterOffset(int delta) {
120 result.set0(i, one.withRegisterOffset(delta));
PlainInsn.java 91 public Insn withRegisterOffset(int delta) {
93 getResult().withOffset(delta),
94 getSources().withOffset(delta));
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicLongMap.java 87 * Adds {@code delta} to the value currently associated with {@code key}, and returns the new
90 public long addAndGet(K key, long delta) {
94 atomic = map.putIfAbsent(key, new AtomicLong(delta));
96 return delta;
105 if (map.replace(key, atomic, new AtomicLong(delta))) {
106 return delta;
112 long newValue = oldValue + delta;
136 * Adds {@code delta} to the value currently associated with {@code key}, and returns the old
139 public long getAndAdd(K key, long delta) {
143 atomic = map.putIfAbsent(key, new AtomicLong(delta));
    [all...]
  /external/libvorbis/lib/
lsp.c 317 double new=0.f,delta; local
343 delta = m*p/denom;
344 new -= delta;
346 if(delta<0.f)delta*=-1;
348 if(fabs(delta/new)<10e-12)break;
349 lastdelta=delta;
377 double pp=0.,delta; local
386 delta = p/pp;
387 root[i] -= delta;
    [all...]
  /external/llvm/include/llvm/ADT/
DeltaAlgorithm.h 17 /// DeltaAlgorithm - Implements the delta debugging algorithm (A. Zeller '99)
58 /// Delta - Minimize a set of \p Changes which has been partioned into
60 changeset_ty Delta(const changeset_ty &Changes,
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_vbo_t.c 270 int delta = *pdelta; local
274 if (delta < 0)
275 delta = ((int)offset - (int)a->offset) / a->stride;
277 dirty = (delta < 0 ||
278 offset != (a->offset + delta * a->stride));
283 *pdelta = (dirty ? 0 : delta);
305 unsigned delta = (base + min_index) * array->StrideB; local
312 offset[i] = delta + (intptr_t)array->Ptr;
317 nouveau_bufferobj_sys(obj), array->Ptr) + delta;
364 int i, delta = 0, basevertex = 0 local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
Amf0Track.java 74 long delta = key - lastTimeStamp; local
75 if (timesToSample.size() > 0 && timesToSample.peek().getDelta() == delta) {
78 timesToSample.add(new TimeToSampleBox.Entry(1, delta));
  /external/open-vcdiff/src/
headerparser.h 97 // Represents one of the three sections in the delta window, as described in
190 // Used to parse the bytes and Varints that make up the delta file header
191 // or delta window header.
235 // Parses the first three elements of the delta window header:
275 // Parses the following two elements of the delta window header:
277 // Length of the delta encoding - integer (VarintBE format)
286 // Returns a pointer to the end of the delta window (which might not point to
291 // Parses the following element of the delta window header:
302 // Parses the following 3 elements of the delta window header:
383 // parsed length of the delta encoding
    [all...]
  /external/openfst/src/bin/
fstmap.cc 27 DEFINE_double(delta, fst::kDelta, "Comparison/quantization delta");
30 "\"plus (--weight)\", \"quantize (--delta)\", \"rmweight\", "
  /external/openfst/src/include/fst/
equal.h 31 bool Equal(const Fst<Arc> &fst1, const Fst<Arc> &fst2, float delta = kDelta) {
58 if (!ApproxEqual(final1, final2, delta)) {
89 } else if (!ApproxEqual(arc1.weight, arc2.weight, delta)) {
float-weight.h 151 float delta = kDelta) {
152 return w1.Value() <= w2.Value() + delta && w2.Value() <= w1.Value() + delta;
221 TropicalWeightTpl<T> Quantize(float delta = kDelta) const {
227 return TropicalWeightTpl<T>(floor(Value()/delta + 0.5F) * delta);
346 LogWeightTpl<T> Quantize(float delta = kDelta) const {
352 return LogWeightTpl<T>(floor(Value()/delta + 0.5F) * delta);
481 MinMaxWeightTpl<T> Quantize(float delta = kDelta) const
    [all...]
shortest-distance.h 45 float delta; // Determines the degree of convergence required member in struct:fst::ShortestDistanceOptions
58 : state_queue(q), arc_filter(filt), source(src), delta(d),
83 arc_filter_(opts.arc_filter), delta_(opts.delta),
230 // The state queue discipline, arc filter, and convergence delta are
284 float delta = kDelta) {
293 opts.delta = delta;
306 ropts.delta = delta;
323 typename Arc::Weight ShortestDistance(const Fst<Arc> &fst, float delta = kDelta)
    [all...]

Completed in 630 milliseconds

<<21222324252627282930>>