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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkColor.cpp 39 unsigned delta = max - min; local
44 if (0 == delta) { // we're a shade of gray
51 SkScalar s = ByteDivToScalar(delta, max);
56 h = ByteDivToScalar(g - b, delta);
58 h = SkIntToScalar(2) + ByteDivToScalar(b - r, delta);
60 h = SkIntToScalar(4) + ByteDivToScalar(r - g, delta);
  /external/srtp/crypto/include/
rdbx.h 89 * rdbx_check(rdbx, delta);
91 * rdbx_check(&r, delta) checks to see if the xtd_seq_num_t
92 * which is at rdbx->window_start + delta is in the rdb
100 * replay_add_index(rdbx, delta)
102 * adds the xtd_seq_num_t at rdbx->window_start + delta to replay_db
111 rdbx_add_index(rdbx_t *rdbx, int delta);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixInSoft_D16C31_SAT.c 40 LVM_INT32 Delta=pInstance->Delta;
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
69 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
89 Current -= Delta; /* Q31 + Q31 into Q31*/
107 Current -= Delta; /* Q31 + Q31 into Q31*/
LVC_Core_MixSoft_1St_D16C31_WRA.c 40 LVM_INT32 Delta=pInstance->Delta;
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
63 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
78 Current -= Delta; /* Q31 + Q31 into Q31*/
90 Current -= Delta; /* Q31 + Q31 into Q31*/
  /external/chromium/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 53 -dictionary %DICTIONARY_FILE% -target %TARGET_FILE% -delta %DELTA_FILE% ^
62 -delta %DELTA_FILE% ^
66 -delta %DELTA_FILE% ^
108 -delta %DELTA_FILE% ^
123 -delta %DELTA_FILE% ^
143 -delta %DELTA_FILE% ^
156 -delta %DELTA_FILE% ^
167 -delta %DELTA_FILE% ^
176 -delta %DELTA_FILE% ^
181 rem Delta file not found
    [all...]
  /external/chromium_org/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 53 -dictionary %DICTIONARY_FILE% -target %TARGET_FILE% -delta %DELTA_FILE% ^
62 -delta %DELTA_FILE% ^
66 -delta %DELTA_FILE% ^
108 -delta %DELTA_FILE% ^
123 -delta %DELTA_FILE% ^
143 -delta %DELTA_FILE% ^
156 -delta %DELTA_FILE% ^
167 -delta %DELTA_FILE% ^
176 -delta %DELTA_FILE% ^
181 rem Delta file not found
    [all...]
  /external/open-vcdiff/vsprojects/
vcdiff_test.bat 53 -dictionary %DICTIONARY_FILE% -target %TARGET_FILE% -delta %DELTA_FILE% ^
62 -delta %DELTA_FILE% ^
66 -delta %DELTA_FILE% ^
108 -delta %DELTA_FILE% ^
123 -delta %DELTA_FILE% ^
143 -delta %DELTA_FILE% ^
156 -delta %DELTA_FILE% ^
167 -delta %DELTA_FILE% ^
176 -delta %DELTA_FILE% ^
181 rem Delta file not found
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/
DxTestCase.java 34 static public void assertEquals(double expected, double actual, double delta) {
35 if(!(Math.abs(expected-actual) <= delta)) throw new RuntimeException("AssertionFailedError: not within delta");
  /external/chromium/chrome/common/
time_format.h 28 static string16 TimeElapsed(const base::TimeDelta& delta);
31 static string16 TimeRemaining(const base::TimeDelta& delta);
34 static string16 TimeRemainingShort(const base::TimeDelta& delta);
time_format_unittest.cc 36 void TestTimeFormats(const TimeDelta delta, const char* expected_ascii) {
40 EXPECT_EQ(expected, TimeFormat::TimeRemainingShort(delta));
41 EXPECT_EQ(expected_left, TimeFormat::TimeRemaining(delta));
42 EXPECT_EQ(expected_ago, TimeFormat::TimeElapsed(delta));
  /external/chromium_org/content/renderer/
render_view_impl_android.cc 54 void RenderViewImpl::didScrollWithKeyboard(const WebKit::WebSize& delta) {
55 if (delta.height == 0)
58 cc::TopControlsState current = delta.height < 0 ? cc::SHOWN : cc::HIDDEN;
  /external/chromium_org/third_party/leveldatabase/src/util/
logging.cc 64 const int delta = (c - '0'); local
67 (v == kMaxUint64/10 && delta > kMaxUint64%10)) {
71 v = (v * 10) + delta;
  /external/chromium_org/third_party/skia/src/effects/
SkDiscretePathEffect.cpp 46 SkScalar delta = length / n; local
51 distance += delta/2;
59 distance += delta;
  /external/chromium_org/webkit/child/
touch_fling_gesture_curve_unittest.cc 27 virtual void scrollBy(const WebFloatSize& delta) {
28 cumulative_delta_.width += delta.width;
29 cumulative_delta_.height += delta.height;
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
MinSEParser.java 13 * Min-SE = "Min-SE" HCOLON delta-seconds *(SEMI generic-param)
49 int delta = Integer.parseInt(nextId); local
50 minse.setExpires(delta);
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 46 SkScalar delta = length / n; local
51 distance += delta/2;
59 distance += delta;
  /frameworks/av/media/libcpustats/
CentralTendencyStatistics.cpp 33 double delta = x - mMean; local
34 mMean += delta / mN;
35 mM2 += delta * (x - mMean);
  /cts/tests/tests/graphics/src/android/graphics/cts/
SweepGradientTest.java 109 double delta = (relPos - positions[i1]) / (positions[i2] - positions[i1]); local
110 int alpha = (int) ((1d - delta) * Color.alpha(colors[i1]) +
111 delta * Color.alpha(colors[i2]));
112 int red = (int) ((1d - delta) * Color.red(colors[i1]) +
113 delta * Color.red(colors[i2]));
114 int green = (int) ((1d - delta) * Color.green(colors[i1]) +
115 delta * Color.green(colors[i2]));
116 int blue = (int) ((1d - delta) * Color.blue(colors[i1]) +
117 delta * Color.blue(colors[i2]));
  /cts/tools/signature-tools/src/signature/compare/model/
IClassDefinitionDelta.java 24 * {@code IClassDefinitionDelta} models the delta between two
79 * Returns a super class delta or {@code null} if no delta is available.
81 * @return a super class delta, maybe {@code null}
  /external/blktrace/btt/
plat.c 59 double delta = pp->last_ts - pp->first_ts; local
62 pp->first_ts + (delta / 2), pp->tl / pp->nl);
80 double delta = pp->last_ts - pp->first_ts; local
83 pp->first_ts + (delta / 2), pp->tl / pp->nl);
  /external/chromium/sdch/open-vcdiff/
README 5 that can apply the encoder and decoder to source, target, and delta files.
19 To call the encoder from C++ code, assuming that dictionary, target, and delta
25 encoder.Encode(target.data(), target.size(), &delta);
31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
  /external/chromium_org/content/browser/renderer_host/
backing_store.h 72 // Scrolls the contents of clip_rect in the backing store by |delta| (but
73 // |delta|.x() and |delta|.y() cannot both be non-zero).
74 virtual void ScrollBackingStore(const gfx::Vector2d& delta,
smooth_scroll_calculator.h 12 // An utility class to calculate the delta for smooth scroll gesture
  /external/chromium_org/net/quic/congestion_control/
hybrid_slow_start.h 42 void Update(QuicTime::Delta rtt, QuicTime::Delta delay_min);
49 QuicTime::Delta SmoothedRtt();
60 QuicTime::Delta current_rtt_; // The minimum rtt of current round.
inter_arrival_state_machine_test.cc 29 QuicTime::Delta rtt = QuicTime::Delta::FromMilliseconds(100);
61 QuicTime::Delta rtt = QuicTime::Delta::FromMilliseconds(100);

Completed in 1320 milliseconds

1 2 3 4 5 6 7 8 91011>>