Searched refs:delta (Results 251 - 275 of 547) sorted by relevance

<<11121314151617181920>>

/external/icu4c/test/intltest/
H A Dcaltest.h179 virtual void marchByDelta(Calendar* cal, int32_t delta);
/external/icu4c/tools/gensprep/
H A Dstore.c99 * OFF: The value in the next 14 bits is an delta value from the code point
432 /* calculate the delta */
433 int16_t delta = (int16_t)((int32_t)codepoint - (int16_t) mapping[0]); local
434 if(delta >= SPREP_DELTA_RANGE_NEGATIVE_LIMIT && delta <= SPREP_DELTA_RANGE_POSITIVE_LIMIT){
436 trieWord = delta << 2;
441 fprintf(stderr,"The second bit in the trie word is not zero while storing a delta.\n");
456 * if the delta is not in the given range or if the trieWord is larger than the threshold
/external/v8/src/
H A Dplatform-openbsd.cc523 struct timeval delta; local
524 delta.tv_usec = timeout % kOneSecondMicros;
525 delta.tv_sec = timeout / kOneSecondMicros;
535 timeradd(&current_time, &delta, &end_time);
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Duiter.h115 * or backward by specifying a positive or negative delta.
131 * @param delta can be positive, zero, or negative
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
394 * or backward by specifying a positive or negative delta.
/external/webkit/Source/JavaScriptGlue/icu/unicode/
H A Duiter.h115 * or backward by specifying a positive or negative delta.
131 * @param delta can be positive, zero, or negative
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
394 * or backward by specifying a positive or negative delta.
/external/webkit/Source/WebCore/icu/unicode/
H A Duiter.h115 * or backward by specifying a positive or negative delta.
131 * @param delta can be positive, zero, or negative
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
394 * or backward by specifying a positive or negative delta.
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResource.cpp320 int delta = size - m_decodedSize; local
347 memoryCache()->adjustSize(hasClients(), delta); local
359 int delta = size - m_encodedSize; local
374 memoryCache()->adjustSize(hasClients(), delta); local
H A DMemoryCache.h154 void adjustSize(bool live, int delta);
H A DCachedImage.cpp344 void CachedImage::decodedSizeChanged(const Image* image, int delta) argument
349 setDecodedSize(decodedSize() + delta);
/external/webkit/Source/WebKit/mac/icu/unicode/
H A Duiter.h115 * or backward by specifying a positive or negative delta.
131 * @param delta can be positive, zero, or negative
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
394 * or backward by specifying a positive or negative delta.
/external/google-diff-match-patch/name/fraser/neil/plaintext/
H A Ddiff_match_patch_test.java309 // Convert a diff into delta string.
314 String delta = dmp.diff_toDelta(diffs);
315 assertEquals("diff_toDelta:", "=4\t-1\t+ed\t=6\t-3\t+a\t=5\t+old dog", delta);
317 // Convert delta string into a diff.
318 assertEquals("diff_fromDelta: Normal.", diffs, dmp.diff_fromDelta(text1, delta));
322 dmp.diff_fromDelta(text1 + "x", delta);
330 dmp.diff_fromDelta(text1.substring(1), delta);
349 delta = dmp.diff_toDelta(diffs);
350 assertEquals("diff_toDelta: Unicode.", "=7\t-7\t+%DA%82 %02 %5C %7C", delta);
352 assertEquals("diff_fromDelta: Unicode.", diffs, dmp.diff_fromDelta(text1, delta));
[all...]
/external/valgrind/main/VEX/priv/
H A Dir_opt.c3314 /* Adjust all tmp values (names) in e by delta. e is destructively
3317 static void deltaIRExpr ( IRExpr* e, Int delta )
3322 e->Iex.RdTmp.tmp += delta;
3328 deltaIRExpr(e->Iex.GetI.ix, delta);
3331 deltaIRExpr(e->Iex.Qop.arg1, delta);
3332 deltaIRExpr(e->Iex.Qop.arg2, delta);
3333 deltaIRExpr(e->Iex.Qop.arg3, delta);
3334 deltaIRExpr(e->Iex.Qop.arg4, delta);
3337 deltaIRExpr(e->Iex.Triop.arg1, delta);
3338 deltaIRExpr(e->Iex.Triop.arg2, delta);
[all...]
/external/bluetooth/bluez/tools/
H A Ddfu.c102 uint32_t crc32_byte(uint32_t accum, uint8_t delta) argument
104 return dfu_crc32_table[(accum ^ delta) & 0xff] ^ (accum >> 8);
/external/chromium/chrome/browser/ui/touch/tabs/
H A Dtouch_tab_strip.cc336 base::TimeDelta delta = event.time_stamp() - last_tap_time_;
338 if (delta.InMilliseconds() < views::GetDoubleClickInterval() &&
/external/icu4c/tools/gencase/
H A Dstore.c85 15..6 signed delta to simple case mapping code point
86 (add delta to input code point)
117 moved here because the exception index needs more bits than the delta
298 int32_t delta; local
304 delta=0;
312 /* uppercase mapping as delta if the character is lowercase */
314 delta=p->upperCase-p->code;
320 /* lowercase mapping as delta if the character is uppercase or titlecase */
322 delta=p->lowerCase-p->code;
340 if(delta<UCASE_MIN_DELT
[all...]
/external/icu4c/tools/tzcode/
H A Dzdump.c166 static long delta(struct tm * newp, struct tm * oldp);
521 (delta(&newtm, &tm) != (newt - t) ||
535 (delta(&newtm, &tm) != (newt - t) ||
702 (delta(&tm, &lotm) == (t - lot) &&
716 ** Thanks to Paul Eggert for logic used in delta.
720 delta(newp, oldp) function
728 return -delta(oldp, newp);
902 (delta(&tm, &lotm) == (t - lot) &&
954 offset = delta(&loc, &gmt);
/external/javassist/src/main/javassist/bytecode/
H A DByteStream.java184 public void enlarge(int delta) { argument
185 int newCount = count + delta;
H A DLocalVariableAttribute.java133 * this method increases <code>index</code> by <code>delta</code>.
138 public void shiftIndex(int lessThan, int delta) { argument
143 ByteArray.write16bit(org + delta, info, i + 8);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dproduct-weight.h80 ProductWeight<W1, W2> Quantize(float delta = kDelta) const {
120 float delta = kDelta) {
/external/valgrind/main/coregrind/
H A Dpub_core_aspacemgr.h345 ( NSegment* seg, SSizeT delta );
357 NSegment* seg, SizeT delta );
/external/webkit/Source/WebCore/loader/
H A DProgressTracker.cpp251 long long delta = item->bytesReceived - item->estimatedLength; local
252 m_totalPageAndResourceBytesToLoad += delta;
/external/webkit/Source/WebCore/platform/graphics/
H A DContextShadow.cpp130 int delta = (!k) ? rowStride : 4; local
134 for (int j = 0; j < jfinal; ++j, pixels += delta) {
H A DFloatRect.h107 void move(const FloatSize& delta) { m_location += delta; } argument
/external/webkit/Source/WebCore/rendering/
H A DRenderView.h113 void addLayoutDelta(const IntSize& delta) argument
116 m_layoutState->m_layoutDelta += delta;
/external/webkit/Source/WebKit2/Shared/
H A DWebEventConversion.cpp104 m_deltaX = webEvent.delta().width();
105 m_deltaY = webEvent.delta().height();

Completed in 993 milliseconds

<<11121314151617181920>>