HomeSort by relevance Sort by last modified time
    Searched refs:DELTA (Results 1 - 25 of 40) sorted by null

1 2

  /external/toybox/scripts/
bloatcheck 11 NEXT="$(printf "%s% $((50-${#LASTNAME}))d% 10d %10d" "$LASTNAME" "$OLD" "$NEW" "$DELTA")"
20 DELTA=0
26 printf "name% 46s% 10s% 11s\n" old new delta
34 TOTAL=$(($TOTAL+$DELTA))
35 [ $DELTA -ne 0 ] && addline
37 DELTA=0
50 DELTA=$(($DELTA+$SIZE))
53 TOTAL=$(($TOTAL+$DELTA))
54 [ $DELTA -ne 0 ] && addlin
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 37 private static final float DELTA = 0.1f;
87 assertEquals(-128.66, location.bearingTo(dest), DELTA);
99 assertEquals(0.0f, bearing, DELTA);
102 assertEquals(90.0f, bearing, DELTA);
107 assertEquals(0.0f, bearing, DELTA);
220 assertEquals(0.0, result[0], DELTA);
221 assertEquals(0.0, result[1], DELTA);
222 assertEquals(0.0, result[2], DELTA);
226 assertEquals(125.4538, result[1], DELTA);
227 assertEquals(93.3971, result[2], DELTA);
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 48 private static final float DELTA = 0.01f;
81 assertEquals(X_3F, mMotionEvent1.getX(), DELTA);
82 assertEquals(Y_4F, mMotionEvent1.getY(), DELTA);
83 assertEquals(X_3F, mMotionEvent1.getRawX(), DELTA);
84 assertEquals(Y_4F, mMotionEvent1.getRawY(), DELTA);
88 assertEquals(PRESSURE_1F, mMotionEvent1.getPressure(), DELTA);
89 assertEquals(SIZE_1F, mMotionEvent1.getSize(), DELTA);
90 assertEquals(1.0f, mMotionEvent1.getXPrecision(), DELTA);
91 assertEquals(1.0f, mMotionEvent1.getYPrecision(), DELTA);
102 assertEquals(motionEvent.getX(), mMotionEvent1.getX(), DELTA);
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimationControllerTest.java 49 private static final float DELTA = 0.1f;
138 assertEquals(0.0f, transformation2.getAlpha(), DELTA);
139 assertEquals(0.0f, transformation3.getAlpha(), DELTA);
145 assertEquals(1.0f, transformation1.getAlpha(), DELTA);
146 assertEquals(0.0f, transformation2.getAlpha(), DELTA);
147 assertEquals(0.0f, transformation3.getAlpha(), DELTA);
153 assertEquals(1.0f, transformation1.getAlpha(), DELTA);
155 assertEquals(0.0f, transformation3.getAlpha(), DELTA);
161 assertEquals(1.0f, transformation1.getAlpha(), DELTA);
162 assertEquals(1.0f, transformation2.getAlpha(), DELTA);
    [all...]
LayoutAnimationControllerTest.java 51 private static final float DELTA = 0.1f;
101 assertEquals(0.0f, transformation2.getAlpha(), DELTA);
102 assertEquals(0.0f, transformation3.getAlpha(), DELTA);
108 assertEquals(1.0f, transformation1.getAlpha(), DELTA);
110 assertEquals(0.0f, transformation3.getAlpha(), DELTA);
116 assertEquals(1.0f, transformation1.getAlpha(), DELTA);
117 assertEquals(1.0f, transformation2.getAlpha(), DELTA);
141 assertEquals(0.0f, transformation1.getAlpha(), DELTA);
142 assertEquals(0.0f, transformation2.getAlpha(), DELTA);
149 assertEquals(0.0f, transformation1.getAlpha(), DELTA);
    [all...]
ScaleAnimationTest.java 35 private static float DELTA = 0.001f;
146 assertEquals(expectedX, values[Matrix.MSCALE_X], DELTA);
147 assertEquals(expectedY, values[Matrix.MSCALE_Y], DELTA);
AnimationSetTest.java 42 private static final float DELTA = 0.001f;
318 assertEquals(expected.getAlpha(), actual.getAlpha(), DELTA);
324 assertEquals(expectedValues[i], actualValues[i], DELTA);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateTimePatternGenerator.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateTimePatternGenerator.java     [all...]
  /external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
InternetDomainNameTest.java 41 * The Greek letter delta, used in unicode testing.
43 private static final String DELTA = "\u0394";
49 static final String LOTS_OF_DELTAS = Strings.repeat(DELTA, 62);
71 "a" + DELTA + "b.com",
94 "a" + DELTA + " .com",
  /external/autotest/client/site_tests/power_Thermal/
power_Thermal.py 54 DELTA = 3.0
239 DELTA/2 above the temperature when the test started). This is
242 - the temperature raises DELTA degrees above the original temperature
246 If the temperature does not reach the DELTA and throttling does not
255 # Wait 30 seconds for the temp to raise DELTA degrees or throttling to
259 if new_temp - base_temp >= DELTA:
313 if self.preserved_throttle_limit - self._cpu_temp() < 4 * DELTA:
332 self._set_throttle_limit(self._cpu_temp() + DELTA/2)
  /external/guava/guava-tests/test/com/google/common/net/
InternetDomainNameTest.java 43 * The Greek letter delta, used in unicode testing.
45 private static final String DELTA = "\u0394";
51 static final String LOTS_OF_DELTAS = Strings.repeat(DELTA, 62);
73 "a" + DELTA + "b.com",
96 "a" + DELTA + " .com",
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewFadingEdgeTest.java 36 public static final float DELTA = 0.01f;
137 data.expectationLeft, textView.getLeftFadingEdgeStrength(), DELTA);
139 data.expectationRight, textView.getRightFadingEdgeStrength(), DELTA);
GalleryTest.java 64 private final static float DELTA = 0.01f;
156 assertEquals(DEFAULT_ALPHA, t.getAlpha(), DELTA);
158 assertEquals(alpha, t.getAlpha(), DELTA);
  /external/autotest/client/cros/faft/utils/
kernel_handler.py 33 DELTA = 1
107 delta,
113 just adds the value of delta to the first byte of the kernel blob.
116 The second type, KERNEL_VERSION_MOD - will use 'delta' as the new
127 data[0] = '%c' % ((ord(data[0]) + delta) % 0x100)
131 new_version = delta
158 """Corrupt a kernel section (add DELTA to the first byte)."""
159 self._modify_kernel(section.upper(), self.DELTA)
163 self._modify_kernel(section.upper(), -self.DELTA)
flashrom_handler.py 87 DELTA = 1 # value to add to a byte to corrupt a section contents
253 def _modify_section(self, section, delta, body_or_sig=False,
257 If corrupt_all is set, the passed in delta is added to all bytes in the
258 section. Otherwise, the delta is added to the value located at 2% offset
262 delta value would restore the section contents.
282 blob_list = [('%c' % ((ord(x) + delta) % 0x100)) for x in blob]
286 ((ord(blob[modified_index]) + delta) % 0x100))
295 return self._modify_section(section, self.DELTA, body_or_sig=False,
301 return self._modify_section(section, self.DELTA, body_or_sig=True,
307 return self._modify_section(section, -self.DELTA, body_or_sig=False
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msputils.h 32 const DWORD DELTA = 8;
34 template <class T,DWORD dwInitial = INITIAL,DWORD dwDelta = DELTA> class CMSPArray {
45 int nNewAllocSize = (m_nAllocSize==0) ? dwInitial : (m_nSize + DELTA);
  /external/opencv3/3rdparty/libjasper/
jpc_qmfb.c     [all...]
  /external/e2fsprogs/lib/ext2fs/
dirhash.c 31 #define DELTA 0x9E3779B9
41 sum += DELTA;
  /external/f2fs-tools/lib/
libf2fs.c 218 #define DELTA 0x9E3779B9
228 sum += DELTA;
  /external/icu/icu4c/source/common/
ucnvisci.c 53 #define TELUGU_DELTA DELTA * TELUGU
77 DELTA=0x80
122 uint16_t defDeltaToUnicode; /* delta for switching to default state when DEF is encountered */
123 uint16_t currentDeltaFromUnicode; /* current delta in Indic block */
124 uint16_t currentDeltaToUnicode; /* current delta in Indic block */
129 UBool resetToDefaultToUnicode; /* boolean for reseting to default delta and mask when a newline is encountered*/
208 = converterData->defDeltaToUnicode = (uint16_t)(lookupInitialData[pArgs->options & UCNV_OPTIONS_VERSION_MASK].uniLang * DELTA);
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetISCII.java 45 private static final short TELUGU_DELTA = (UniLang.DELTA * UniLang.TELUGU);
73 static final short DELTA = 0x80;
116 short defDeltaToUnicode; /* delta for switching to default state when DEF is encountered */
117 short currentDeltaFromUnicode; /* current delta in Indic block */
118 short currentDeltaToUnicode; /* current delta in Indic block */
123 boolean resetToDefaultToUnicode; /* boolean for reseting to default delta and mask when a newline is encountered */
137 this.defDeltaToUnicode = (short)(lookupInitialData[option & UCNV_OPTIONS_VERSION_MASK].uniLang * UniLang.DELTA); /* defDeltaToUnicode */
138 this.currentDeltaFromUnicode = (short)(lookupInitialData[option & UCNV_OPTIONS_VERSION_MASK].uniLang * UniLang.DELTA); /* currentDeltaFromUnicode */
139 this.currentDeltaToUnicode = (short)(lookupInitialData[option & UCNV_OPTIONS_VERSION_MASK].uniLang * UniLang.DELTA); /* currentDeltaToUnicode */
    [all...]
  /external/opencv3/modules/imgproc/src/opencl/
remap.cl 103 #define DELTA int delta = 0
105 #define DELTA int delta = 1
109 DELTA; \
116 v2.x = -v2.x - 1 + delta; \
118 v2.x = src_cols - 1 - (v2.x - src_cols) - delta; \
128 v2.y = -v2.y - 1 + delta; \
130 v2.y = src_rows - 1 - (v2.y - src_rows) - delta; \
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multiprocessing.py 69 DELTA = 0.1
287 p = self.Process(target=time.sleep, args=(DELTA,))
313 time.sleep(DELTA)
449 time.sleep(DELTA)
510 time.sleep(DELTA)
566 time.sleep(DELTA)
598 time.sleep(DELTA)
746 time.sleep(DELTA)
755 time.sleep(DELTA)
764 time.sleep(DELTA)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multiprocessing.py 69 DELTA = 0.1
287 p = self.Process(target=time.sleep, args=(DELTA,))
313 time.sleep(DELTA)
449 time.sleep(DELTA)
510 time.sleep(DELTA)
566 time.sleep(DELTA)
598 time.sleep(DELTA)
746 time.sleep(DELTA)
755 time.sleep(DELTA)
764 time.sleep(DELTA)
    [all...]

Completed in 2269 milliseconds

1 2