HomeSort by relevance Sort by last modified time
    Searched full:delta (Results 51 - 75 of 1042) sorted by null

1 23 4 5 6 7 8 91011>>

  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
PERF.awk 81 after++; # we always have to after the 1st time stamp to get a time delta
127 delta = $1 - last;
128 if (delta >= 2) {
129 print "Warning: Found a pause of", delta, "seconds";
133 x_no_pause += delta;
134 xx_no_pause += delta * delta;
137 x += delta;
138 xx += delta * delta;
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/impl/
SigDelta.java 59 for (T delta : deltas) {
60 if (type.equals(delta.getType())) {
61 addedElements.add(delta);
104 Object delta = field.get(this); local
105 if (delta != null) {
108 builder.append(delta);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyNetworkMonitor.java 61 long delta = timeNow - mEventTime; local
64 if (LDEBUG) System.out.println("Adding to mobile: " + delta);
65 mMobileElapsedTime += delta;
68 if (LDEBUG) System.out.println("Adding to wifi: " + delta);
69 mWifiElapsedTime += delta;
72 if (LDEBUG) System.out.println("Unaccounted for: " + delta);
  /external/skia/src/core/
SkColor.cpp 63 unsigned delta = max - min; local
68 if (0 == delta) { // we're a shade of gray
75 SkScalar s = ByteDivToScalar(delta, max);
80 h = ByteDivToScalar(g - b, delta);
82 h = SkIntToScalar(2) + ByteDivToScalar(b - r, delta);
84 h = SkIntToScalar(4) + ByteDivToScalar(r - g, delta);
  /external/freetype/src/base/
ftstroke.c 838 FT_Vector delta, delta2; local
845 FT_Vector_From_Polar( &delta, radius, angle );
847 delta.x += stroker->center.x + delta2.x;
848 delta.y += stroker->center.y + delta2.y;
850 error = ft_stroke_border_lineto( border, &delta, FALSE );
855 FT_Vector_From_Polar( &delta, radius, angle );
857 delta.x += delta2.x + stroker->center.x;
858 delta.y += delta2.y + stroker->center.y;
860 error = ft_stroke_border_lineto( border, &delta, FALSE );
865 FT_Vector delta; local
901 FT_Vector delta; local
988 FT_Vector middle, delta; local
1032 FT_Vector delta; local
1100 FT_Vector delta; local
1140 FT_Vector delta; local
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/
DxAbstractMain.java 28 static public void assertEquals(double expected, double actual, double delta) {
29 if(!(Math.abs(expected-actual) <= delta)) throw new RuntimeException("AssertionFailedError: not within delta");
DxTestCase.java 33 static public void assertEquals(double expected, double actual, double delta) {
34 if(!(Math.abs(expected-actual) <= delta)) throw new RuntimeException("AssertionFailedError: not within delta");
  /cts/tools/vm-tests/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");
  /cts/tests/tests/graphics/src/android/graphics/cts/
RadialGradientTest.java 98 double delta = (dist - positions[i1]) / (positions[i2] - positions[i1]); local
99 int alpha = (int) ((1d - delta) * Color.alpha(colors[i1]) +
100 delta * Color.alpha(colors[i2]));
101 int red = (int) ((1d - delta) * Color.red(colors[i1]) +
102 delta * Color.red(colors[i2]));
103 int green = (int) ((1d - delta) * Color.green(colors[i1]) +
104 delta * Color.green(colors[i2]));
105 int blue = (int) ((1d - delta) * Color.blue(colors[i1]) +
106 delta * Color.blue(colors[i2]));
SweepGradientTest.java 128 double delta = (relPos - positions[i1]) / (positions[i2] - positions[i1]); local
129 int alpha = (int) ((1d - delta) * Color.alpha(colors[i1]) +
130 delta * Color.alpha(colors[i2]));
131 int red = (int) ((1d - delta) * Color.red(colors[i1]) +
132 delta * Color.red(colors[i2]));
133 int green = (int) ((1d - delta) * Color.green(colors[i1]) +
134 delta * Color.green(colors[i2]));
135 int blue = (int) ((1d - delta) * Color.blue(colors[i1]) +
136 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}
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/signers/
ISO9796d2Signer.java 235 int delta = 0; local
240 delta = block.length - digSize - 1;
241 digest.doFinal(block, delta);
247 delta = block.length - digSize - 2;
248 digest.doFinal(block, delta);
261 delta -= mR;
263 System.arraycopy(mBuf, 0, block, delta, mR);
268 delta -= messageLength;
270 System.arraycopy(mBuf, 0, block, delta, messageLength);
273 if ((delta - 1) > 0
331 int delta = 0; local
    [all...]
  /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/dbus/test/name-test/
test-pending-call-dispatch.c 98 long delta; local
105 delta = end_tv_sec - start_tv_sec;
106 printf ("Iter %i: %lis\n", i, delta);
107 if (delta >= 5)
  /external/opencore/fileformats/mp4/composer/include/
timetosampleatom.h 51 void addDelta(int32 delta);
52 void addEntry(uint32 count, int32 delta);
53 void insertEntryAt(int32 index, uint32 count, int32 delta);
54 void replaceEntryAt(int32 index, uint32 count, int32 delta);
  /external/opencore/fileformats/mp4/parser/src/
copyrightatom.cpp 39 uint32 delta = (_size - count); local
42 if (delta > 0)
44 if (!AtomUtils::readString(fp, delta, CharType , _copyRightNotice))
51 count += delta;
timetosampleatom.cpp 189 uint32 delta = 0; local
197 if (!AtomUtils::read32(fp, delta))
203 _psampleDeltaVec[_parsed_entry_cnt] = (delta);
229 uint32 number, delta; local
252 if (!AtomUtils::read32(_fileptr, delta))
257 _psampleDeltaVec[_curr_entry_point] = (delta);
308 // Return sample delta at index
333 // This atom maintains timestamp deltas between samples, i.e. delta[i] is the
340 // entry in the table starts with the delta between sample 1 and sample 0
394 uint32 delta = _psampleDeltaVec[(_entryCount-1)%_stbl_buff_size] local
    [all...]
  /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);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
WaveformImage.java 65 int delta = size / (numSamplePerPixel * w); local
66 if (delta == 0) {
68 delta = 1;
81 index += delta;
  /external/freetype/src/autofit/
afcjk.c 87 axis->delta = scaler->x_delta;
92 axis->delta = scaler->y_delta;
619 hints->x_delta = metrics->axis[AF_DIMENSION_HORZ].delta;
621 hints->y_delta = metrics->axis[AF_DIMENSION_VERT].delta;
771 FT_Pos delta; local
774 delta = dist & 63;
777 if ( delta < 10 )
778 dist += delta;
779 else if ( delta < 22 )
781 else if ( delta < 42
899 FT_Pos d_off1, u_off1, d_off2, u_off2, delta; local
1026 FT_Pos delta = 0; local
1328 FT_Pos delta = edge->pos - edge->opos; local
1406 FT_Pos delta; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/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...]
  /dalvik/dx/src/com/android/dx/dex/code/
VariableSizeInsn.java 46 public final DalvInsn withRegisterOffset(int delta) {
47 return withRegisters(getRegisters().withOffset(delta));
  /packages/apps/Gallery3D/src/com/cooliris/wallpaper/
Slideshow.java 117 long delta = now - mPrevTime; local
118 if (delta > 50)
119 delta = 50;
120 mTimeElapsed += delta;
144 performUpdate(mQueuedFrameRect, sQueuedGrow, delta);
160 performUpdate(mFrameRect, sGrow, delta);
174 private void performUpdate(RectF rect, Vector3f grow, long delta) {
175 float timeElapsed = ((float) (delta)) / 1000.0f;

Completed in 250 milliseconds

1 23 4 5 6 7 8 91011>>