/external/chromium_org/net/quic/congestion_control/ |
send_algorithm_interface.h | 53 QuicTime::Delta rtt) = 0; 69 virtual QuicTime::Delta TimeUntilSend( 80 virtual QuicTime::Delta SmoothedRtt() = 0; 85 virtual QuicTime::Delta RetransmissionDelay() = 0;
|
tcp_cubic_sender_test.cc | 32 : rtt_(QuicTime::Delta::FromMilliseconds(60)), 33 one_ms_(QuicTime::Delta::FromMilliseconds(1)), 62 const QuicTime::Delta rtt_; 63 const QuicTime::Delta one_ms_; 230 EXPECT_EQ(QuicTime::Delta::Zero(), sender_->RetransmissionDelay()); 232 sender_->AckAccounting(QuicTime::Delta::FromMilliseconds(kRttMs)); 237 QuicTime::Delta expected_delay = 238 QuicTime::Delta::FromMilliseconds(kRttMs + kRttMs / 2 * 4); 244 QuicTime::Delta::FromMilliseconds(kRttMs + kDeviationMs)); 246 QuicTime::Delta::FromMilliseconds(kRttMs - kDeviationMs)) [all...] |
/external/chromium_org/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/sync/sessions/ |
test_util.cc | 100 const base::TimeDelta& delta) { 103 session->delegate()->OnThrottled(delta); 109 const base::TimeDelta& delta) { 112 session->delegate()->OnTypesThrottled(types, delta);
|
/external/chromium_org/ui/base/l10n/ |
time_format_unittest.cc | 18 void TestTimeFormats(const TimeDelta& delta, const char* expected_ascii) { 22 EXPECT_EQ(expected, TimeFormat::TimeRemainingShort(delta)); 23 EXPECT_EQ(expected_left, TimeFormat::TimeRemaining(delta)); 24 EXPECT_EQ(expected_ago, TimeFormat::TimeElapsed(delta));
|
/external/chromium_org/ui/base/text/ |
utf16_indexing.cc | 25 ptrdiff_t delta = 0; local 27 delta += IsValidCodePointIndex(s, base++) ? 1 : 0; 29 delta -= IsValidCodePointIndex(s, pos++) ? 1 : 0; 30 return delta;
|
/external/chromium_org/v8/src/ |
heap-snapshot-generator-inl.h | 66 SnapshotObjectId HeapObjectsMap::GetNthGcSubrootId(int delta) { 67 return kGcRootsFirstSubrootId + delta * kObjectIdStep; 71 HeapObject* V8HeapExplorer::GetNthGcSubrootObject(int delta) { 74 delta * HeapObjectsMap::kObjectIdStep);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ConcurrentHashMultisetBasherTest.java | 123 int delta = random.nextInt(10); local 124 multiset.add(key, delta); 125 deltas[keyIndex] += delta; 143 int delta = random.nextInt(6); // [0, 5] local 144 int oldValue = multiset.remove(key, delta); 145 deltas[keyIndex] -= Math.min(delta, oldValue); 149 int delta = random.nextInt(5); // [0, 4] local 150 if (multiset.removeExactly(key, delta)) { 151 deltas[keyIndex] -= delta;
|
/external/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/srec/srec/cfront/ |
cheldsp4.c | 86 for (j = 1; j <= DELTA; j++) 92 cepdata a = (DELTA * (DELTA + 1) * (2 * DELTA + 1) / 6) * 2; 93 d = DELTA; 112 static const cepdata deldel[] = {2, 0, -1, -2, -1, 0, 2}; /* delta - delta */ 116 ** Computes ALL delta delta mel cep pars. BP 8/96 */ 122 d = DELTA; [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
float-weight.h | 81 float delta = kDelta) { 82 return w1.Value() <= w2.Value() + delta && w2.Value() <= w1.Value() + delta; 140 TropicalWeight Quantize(float delta = kDelta) const { 141 return TropicalWeight(floor(Value()/delta + 0.5F) * delta); 206 LogWeight Quantize(float delta = kDelta) const { 207 return LogWeight(floor(Value()/delta + 0.5F) * delta);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
lbxdeltastr.h | 33 * An entry in the delta compactor cache 42 * Delta compactor cache 54 * Motion delta cache 70 * Motion delta events
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
lbxdeltastr.h | 33 * An entry in the delta compactor cache 42 * Delta compactor cache 54 * Motion delta cache 70 * Motion delta events
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
lbxdeltastr.h | 33 * An entry in the delta compactor cache 42 * Delta compactor cache 54 * Motion delta cache 70 * Motion delta events
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntitySet.java | 52 public static EntitySet fromSingle(EntityDelta delta) { 54 state.add(delta); 121 for (EntityDelta delta : this) { 122 delta.buildAssert(diff); 131 for (EntityDelta delta : this) { 134 delta.buildDiff(diff); 137 if (!delta.isContactInsert()) continue; 232 for (EntityDelta delta : this) { 233 final Long rawContactId = delta.getValues().getAsLong(RawContacts._ID); 246 final EntityDelta delta = this.get(index) local [all...] |
/external/icu4c/layout/ |
GlyphIterator.cpp | 432 le_bool GlyphIterator::nextInternal(le_uint32 delta) 436 while (newPosition != nextLimit && delta > 0) { 441 delta -= 1; 449 le_bool GlyphIterator::next(le_uint32 delta) 451 return nextInternal(delta) && hasFeatureTag(TRUE); 454 le_bool GlyphIterator::prevInternal(le_uint32 delta) 458 while (newPosition != prevLimit && delta > 0) { 463 delta -= 1; 471 le_bool GlyphIterator::prev(le_uint32 delta) 473 return prevInternal(delta) && hasFeatureTag(TRUE) [all...] |
/external/chromium_org/third_party/freetype/src/base/ |
ftstroke.c | 921 FT_Vector delta, delta2; local 928 FT_Vector_From_Polar( &delta, radius, angle ); 930 delta.x += stroker->center.x + delta2.x; 931 delta.y += stroker->center.y + delta2.y; 933 error = ft_stroke_border_lineto( border, &delta, FALSE ); 938 FT_Vector_From_Polar( &delta, radius, angle ); 940 delta.x += delta2.x + stroker->center.x; 941 delta.y += delta2.y + stroker->center.y; 943 error = ft_stroke_border_lineto( border, &delta, FALSE ); 948 FT_Vector delta; local 985 FT_Vector delta; local 1101 FT_Vector delta; local 1117 FT_Vector middle, delta; local 1168 FT_Vector delta; local 1243 FT_Vector delta; local 1285 FT_Vector delta; local 1482 FT_Vector bvec, delta; local 1689 FT_Vector bvec, delta; local [all...] |
/external/freetype/src/base/ |
ftstroke.c | 921 FT_Vector delta, delta2; local 928 FT_Vector_From_Polar( &delta, radius, angle ); 930 delta.x += stroker->center.x + delta2.x; 931 delta.y += stroker->center.y + delta2.y; 933 error = ft_stroke_border_lineto( border, &delta, FALSE ); 938 FT_Vector_From_Polar( &delta, radius, angle ); 940 delta.x += delta2.x + stroker->center.x; 941 delta.y += delta2.y + stroker->center.y; 943 error = ft_stroke_border_lineto( border, &delta, FALSE ); 948 FT_Vector delta; local 985 FT_Vector delta; local 1101 FT_Vector delta; local 1117 FT_Vector middle, delta; local 1167 FT_Vector delta; local 1242 FT_Vector delta; local 1284 FT_Vector delta; local 1481 FT_Vector bvec, delta; local 1688 FT_Vector bvec, delta; local [all...] |
/art/runtime/ |
barrier.cc | 44 void Barrier::Increment(Thread* self, int delta) { 46 SetCountLocked(self, count_ + delta);
|
barrier.h | 41 // Increment the count by delta, wait on condition if count is non zero. 42 void Increment(Thread* self, int delta);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
VariableSizeInsn.java | 46 public final DalvInsn withRegisterOffset(int delta) { 47 return withRegisters(getRegisters().withOffset(delta));
|
/dalvik/dx/src/com/android/dx/dex/code/ |
VariableSizeInsn.java | 46 public final DalvInsn withRegisterOffset(int delta) { 47 return withRegisters(getRegisters().withOffset(delta));
|
/external/chromium_org/chrome/browser/captive_portal/ |
testing_utils.cc | 38 void CaptivePortalDetectorTestBase::AdvanceTime(const base::TimeDelta& delta) { 39 detector()->advance_time_for_testing(delta);
|
/external/chromium_org/chrome/browser/extensions/ |
permissions_updater_unittest.cc | 140 scoped_refptr<PermissionSet> delta = local 145 updater.AddPermissions(extension.get(), delta.get()); 153 ASSERT_EQ(*delta.get(), *listener.permissions()); 157 PermissionSet::CreateUnion(default_permissions.get(), delta.get()); 178 delta = new PermissionSet(apis, hosts, URLPatternSet()); 181 updater.RemovePermissions(extension.get(), delta.get()); 188 ASSERT_EQ(*delta.get(), *listener.permissions()); 192 PermissionSet::CreateDifference(active_permissions.get(), delta.get());
|
/external/chromium_org/chrome/installer/gcapi/ |
gcapi_omaha_experiment.cc | 23 TimeDelta delta = Time::Now() - f; local 24 return delta.InDays() / 7;
|