/dalvik/dx/src/com/android/dx/rop/code/ |
PlainCstInsn.java | 69 public Insn withRegisterOffset(int delta) { 71 getResult().withOffset(delta), 72 getSources().withOffset(delta),
|
SwitchInsn.java | 82 public Insn withRegisterOffset(int delta) { 84 getResult().withOffset(delta), 85 getSources().withOffset(delta),
|
/external/chromium/chrome/browser/history/ |
top_sites_backend.h | 47 // Updates top sites database from the specified delta. 48 void UpdateTopSites(const TopSitesDelta& delta); 84 void UpdateTopSitesOnDBThread(const TopSitesDelta& delta);
|
/external/chromium_org/chrome/browser/history/ |
top_sites_backend.h | 47 // Updates top sites database from the specified delta. 48 void UpdateTopSites(const TopSitesDelta& delta); 81 void UpdateTopSitesOnDBThread(const TopSitesDelta& delta);
|
/external/chromium_org/chrome/browser/metrics/ |
time_ticks_experiment_win.cc | 61 int delta = static_cast<int>(qpc_now.QuadPart - qpc_last.QuadPart); local 62 if (delta != 0) { 63 min_delta = std::min(min_delta, delta);
|
/external/chromium_org/net/quic/congestion_control/ |
cubic.h | 40 QuicTime::Delta delay_min); 48 static const QuicTime::Delta MaxCubicTimeInterval() { 49 return QuicTime::Delta::FromMilliseconds(30);
|
/external/chromium_org/net/tools/crl_set_dump/ |
crl_set_dump.cc | 6 // delta CRL set. 21 fprintf(stderr, "Usage: %s <crl-set file> [<delta file>]" 56 fprintf(stderr, "Failed to apply delta to CRLSet\n");
|
/external/chromium_org/net/tools/quic/ |
quic_spdy_client_stream.cc | 95 size_t delta = read_buf_len - len; local 96 if (delta > 0) { 97 mutable_data()->append(data + len, delta);
|
quic_spdy_server_stream.cc | 94 size_t delta = read_buf_len - len; local 95 if (delta > 0) { 96 mutable_body()->append(data + len, delta);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
PlatformGestureEvent.h | 54 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, const IntSize& area, const FloatPoint& delta, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) 59 , m_deltaX(delta.x()) 60 , m_deltaY(delta.y())
|
/external/chromium_org/ui/views/ |
view_model_utils.cc | 64 int delta = primary_axis_coordinate( local 74 bounds.x() + bounds.width() / 2 - delta, 75 bounds.y() + bounds.height() / 2 - delta);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
PlainCstInsn.java | 69 public Insn withRegisterOffset(int delta) { 71 getResult().withOffset(delta), 72 getSources().withOffset(delta),
|
SwitchInsn.java | 82 public Insn withRegisterOffset(int delta) { 84 getResult().withOffset(delta), 85 getSources().withOffset(delta),
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/ |
EntropyComputeUtil.java | 16 * Computes the entropy value ? (delta) for a given terrain block and 63 float delta = Math.abs(realHeight - contactPoint.y); local 64 entropy = Math.max(delta, entropy);
|
/external/chromium_org/base/time/ |
time.h | 78 static TimeDelta FromInternalValue(int64 delta) { 79 return TimeDelta(delta); 94 // Returns the time delta in some unit. The F versions return a floating 183 // Constructs a delta given the duration in microseconds. This is private 189 // Delta in microseconds. 215 // On Mac & Linux, this value is the delta from the Windows epoch of 1601 to 216 // the Posix delta of 1970. This is used for migrating between the old 408 // Modify by some time delta. 409 Time& operator+=(TimeDelta delta) { 410 us_ += delta.delta_ [all...] |
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
LevenbergMarquardt.h | 119 Scalar delta; member in class:Eigen::LevenbergMarquardt 234 /* and initialize the step bound delta. */ 236 delta = parameters.factor * xnorm; 237 if (delta == 0.) 238 delta = parameters.factor; 265 internal::lmpar2<Scalar>(qrfac, diag, qtf, delta, par, wa1); 274 delta = (std::min)(delta,pnorm); 310 delta = temp * (std::min)(delta, pnorm / Scalar(.1)) [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
chvr_filter.cpp | 42 int sum, delta; local 146 delta = (sum + *ptr_c + 4) >> 3; /* Average pixel values with rounding */ 147 *(ptr_c) = (uint8) delta; 158 delta = (sum + *ptr_c + 4) >> 3; 159 *ptr_c = (uint8)(delta); 209 delta = (*(ptr - w1) - *(ptr)) >> 1; 210 if (delta >= 0) 212 if (delta >= A3_0) 214 delta = PV_MAX(A3_0, 0); 221 delta = 0 [all...] |
/external/qemu/ |
qemu-timer.c | 287 int64_t delta; local 295 delta = cur_icount - cur_time; 297 if (delta > 0 298 && last_delta + ICOUNT_WOBBLE < delta * 2 303 if (delta < 0 304 && last_delta - ICOUNT_WOBBLE > delta * 2 309 last_delta = delta; 464 int64_t delta = cur_time - cur_icount; local 465 qemu_icount_bias += MIN(warp_delta, delta); 812 static int64_t delta_max, delta_cum, last_clock, delta, ti 849 int64_t delta = INT32_MAX; local 865 int64_t delta; local 1344 int64_t delta; local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xxf86dga/ |
XF86DGA.c | 391 unsigned long delta; /* delta to account for page alignment */ member in struct:__anon26795 392 void * vaddr; /* mapped address, without the delta */ 471 unsigned long offset, delta; local 485 return (void *)((unsigned long)mp->vaddr + mp->delta); 506 delta = address % pagesize; 507 offset = address - delta; 516 mloc.length = size + delta; 545 pmap.size = size + delta; 557 size + delta, SM_READ|SM_WRITE) [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
vcdecoder.cc | 49 // This class is used to parse delta file windows as described 58 // The delta encoding of the target window 59 // Length of the delta encoding - integer 60 // The delta encoding 88 // (delta file) data. 108 // Decodes as many delta windows as possible using the input data from 120 // more delta file windows. If this number is met exactly after finishing a 121 // delta window, this function will return RESULT_SUCCESS without processing 133 // When parsing an interleaved-format delta file, 167 // this function is called to parse the following delta window header fields [all...] |
/cts/tools/signature-tools/src/signature/compare/model/ |
DeltaType.java | 20 * {@code DeltaType} defines the three possible types of a delta.
|
IConstructorDelta.java | 22 * {@code IConstructorDelta} models the delta between two {@link IConstructor}
|
IEnumConstantDelta.java | 22 * {@code IEnumConstantDelta} models the delta between two {@link IEnumConstant}
|
IFieldDelta.java | 22 * {@code IFieldDelta} models the delta between two {@link IField} instances.
|
IGenericDeclarationDelta.java | 22 * {@code IGenericDeclarationDelta} models the delta between two
|