HomeSort by relevance Sort by last modified time
    Searched defs:delta (Results 1 - 25 of 1040) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-11-19-AddressOfRegister.c 4 short delta[4]; member in struct:item
9 aa[nt].delta;
  /frameworks/av/media/libcpustats/
CentralTendencyStatistics.cpp 33 double delta = x - mMean; local
34 mMean += delta / mN;
35 mM2 += delta * (x - mMean);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_eu_util.c 65 GLuint delta = i*32; local
66 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta));
67 brw_MOV(p, byte_offset(dst, delta+16), byte_offset(src, delta+16));
84 GLuint delta = i*32; local
85 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta));
99 GLuint delta = i*32; local
100 brw_MOV(p, deref_4f(dst_ptr, delta), deref_4f(src_ptr, delta))
117 GLuint delta = i*32; local
    [all...]
  /external/chromium_org/ui/gfx/
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/icu4c/layout/
GlyphSubstLookupProc.cpp 58 le_uint32 delta = 0; local
69 delta = subtable->process(glyphIterator, fFilter);
77 delta = subtable->process(glyphIterator, success, fFilter);
85 delta = subtable->process(glyphIterator, fFilter);
93 delta = subtable->process(glyphIterator, fFilter);
101 delta = subtable->process(this, glyphIterator, fontInstance, success);
109 delta = subtable->process(this, glyphIterator, fontInstance, success);
117 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success);
125 return delta;
GlyphPosnLookupProc.cpp 71 le_uint32 delta = 0; local
82 delta = subtable->process(glyphIterator, fontInstance);
90 delta = subtable->process(glyphIterator, fontInstance);
98 delta = subtable->process(glyphIterator, fontInstance);
106 delta = subtable->process(glyphIterator, fontInstance);
114 delta = subtable->process(glyphIterator, fontInstance);
122 delta = subtable->process(glyphIterator, fontInstance);
130 delta = subtable->process(this, glyphIterator, fontInstance, success);
138 delta = subtable->process(this, glyphIterator, fontInstance, success);
146 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu_util.c 65 GLuint delta = i*32; local
66 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta));
67 brw_MOV(p, byte_offset(dst, delta+16), byte_offset(src, delta+16));
84 GLuint delta = i*32; local
85 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta));
99 GLuint delta = i*32; local
100 brw_MOV(p, deref_4f(dst_ptr, delta), deref_4f(src_ptr, delta))
117 GLuint delta = i*32; local
    [all...]
  /external/srtp/crypto/replay/
rdb.c 102 int delta; local
106 delta = (index - rdb->window_start);
107 if (delta < rdb_bits_in_bitmask) {
110 v128_set_bit(&rdb->bitmask, delta);
114 delta -= rdb_bits_in_bitmask - 1;
116 /* shift the window forward by delta bits*/
117 v128_left_shift(&rdb->bitmask, delta);
119 rdb->window_start += delta;
  /external/valgrind/main/massif/tests/
pages_as_heap.c 9 int delta; local
14 // loop to increase(decrease) with small then big delta
15 for (delta = 1; delta <= 400; delta+=399) {
16 if (0) printf("initial brk value for inc_dec %d delta %d: %p\n",
17 inc_dec, delta, sbrk(0));
19 brk_stat = brk(sbrk(0) + inc_dec * delta);
26 if (0) printf("resulting brk value for inc_dec %d delta %d: %p\n",
27 inc_dec, delta, sbrk(0))
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_log.c 167 unsigned long delta = 0; local
172 delta = TIME_DELTA(perf->tempTime, perf->time);
174 *time_loc = delta; /* save time stamp */
  /cts/tools/signature-tools/src/signature/io/impl/
ToStringExternalizer.java 28 public void externalize(String location, IApiDelta delta)
34 if (delta == null) {
35 outputStreamWriter.write("No delta found!");
37 outputStreamWriter.write(delta.toString());
  /external/chromium_org/ash/
keyboard_uma_event_filter.cc 43 base::TimeDelta delta = event->time_stamp() - last_keystroke_time_; local
44 if (delta < base::TimeDelta::FromSeconds(kKeystrokeThresholdInSeconds))
45 UMA_HISTOGRAM_TIMES("Keyboard.KeystrokeDeltas", delta);
  /external/chromium_org/third_party/WebKit/public/web/
WebActiveWheelFlingParameters.h 38 WebFloatPoint delta; member in struct:blink::WebActiveWheelFlingParameters
  /external/chromium_org/third_party/re2/re2/
unicode_casefold.h 29 // For those, the special delta value EvenOdd marks even/odd pairs
56 int32 delta; member in struct:re2::CaseFold
  /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/chromium_org/v8/test/mjsunit/
array-iteration.js 166 var o = { delta: 42 }
168 assertArrayEquals(result, a.map(function(n) { return this.delta + n; }, o));
  /external/lzma/CPP/Common/
DynamicBuffer.h 12 size_t delta; local
14 delta = this->_capacity / 4;
16 delta = 16;
18 delta = 4;
19 delta = MyMax(delta, size);
20 size_t newCap = this->_capacity + delta;
21 if (newCap < delta)
IntToString.cpp 18 int delta = (int)(value % base); local
19 temp[pos++] = (char)((delta < 10) ? ('0' + delta) : ('a' + (delta - 10)));
  /external/regex-re2/re2/
unicode_casefold.h 29 // For those, the special delta value EvenOdd marks even/odd pairs
56 int32 delta; member in struct:re2::CaseFold
  /external/v8/test/mjsunit/
array-iteration.js 166 var o = { delta: 42 }
168 assertArrayEquals(result, a.map(function(n) { return this.delta + n; }, o));
  /frameworks/av/media/libeffects/testlibs/
AudioCoefInterpolator.cpp 80 int64_t delta = static_cast<int64_t>(hi-lo) * frac; local
81 return lo + static_cast<audio_coef_t> (delta >> 32);
  /external/aac/libAACenc/src/
line_pe.cpp 189 INT delta = isScale[sfbGrp+sfb] - lastValIs; local
191 peChanData->sfbPe[sfbGrp+sfb] = FDKaacEnc_bitCountScalefactorDelta(delta)<<PE_CONSTPART_SHIFT;
  /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/ceres-solver/include/ceres/internal/
numeric_diff.h 129 const double delta = local
132 x_plus_delta(j) = x(j) + delta;
148 double one_over_delta = 1.0 / delta;
151 x_plus_delta(j) = x(j) - delta;
  /external/chromium/chrome/browser/tabs/
tab_strip_model_order_controller.cc 34 int delta = (insertion_policy_ == TabStripModel::INSERT_AFTER) ? 1 : 0; local
38 return tabstrip_->active_index() + delta;
53 return index + delta;
55 return tabstrip_->active_index() + delta;

Completed in 1709 milliseconds

1 2 3 4 5 6 7 8 91011>>