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

1 2

  /external/opencore/codecs_v2/video/avc_h264/dec/src/
itrans.cpp 92 int e0, e1, e2, e3; /* note, at every step of the calculation, these values */ local
104 e3 = inout[1] + (inout[3] >> 1);
106 inout[0] = e0 + e3;
109 inout[3] = e0 - e3;
119 e3 = block[16] + (block[48] >> 1);
121 e0 += e3;
122 e3 = (e0 - (e3 << 1)); /* e0-e3 */
128 e3 += 32
172 int e0, e1, e2, e3; \/* note, at every step of the calculation, these values *\/ local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
itrans.cpp 91 int e0, e1, e2, e3; /* note, at every step of the calculation, these values */ local
103 e3 = inout[1] + (inout[3] >> 1);
105 inout[0] = e0 + e3;
108 inout[3] = e0 - e3;
118 e3 = block[16] + (block[48] >> 1);
120 e0 += e3;
121 e3 = (e0 - (e3 << 1)); /* e0-e3 */
127 e3 += 32
171 int e0, e1, e2, e3; \/* note, at every step of the calculation, these values *\/ local
    [all...]
  /external/guava/src/com/google/common/collect/
ImmutableList.java 98 public static <E> ImmutableList<E> of(E e1, E e2, E e3) {
99 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3));
107 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) {
108 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4));
116 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) {
117 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4, e5));
125 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) {
126 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4, e5, e6));
135 E e1, E e2, E e3, E e4, E e5, E e6, E e7) {
137 copyIntoArray(e1, e2, e3, e4, e5, e6, e7))
    [all...]
ImmutableSortedSetFauxverideShim.java 87 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2, E e3) {
102 E e1, E e2, E e3, E e4) {
117 E e1, E e2, E e3, E e4, E e5) {
ImmutableSet.java 112 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) {
113 return create(e1, e2, e3);
124 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) {
125 return create(e1, e2, e3, e4);
136 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) {
137 return create(e1, e2, e3, e4, e5);
ImmutableSortedSet.java 147 E e1, E e2, E e3) {
148 return ofInternal(Ordering.natural(), e1, e2, e3);
160 E e1, E e2, E e3, E e4) {
161 return ofInternal(Ordering.natural(), e1, e2, e3, e4);
173 E e1, E e2, E e3, E e4, E e5) {
174 return ofInternal(Ordering.natural(), e1, e2, e3, e4, e5);
  /dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
XMLReaderFactory.java 197 } catch (InstantiationException e3) {
200 e3);
ParserAdapter.java 95 } catch (InstantiationException e3) {
99 " loaded but cannot be instantiated", e3);
  /external/gtest/include/gtest/
gtest_pred_impl.h 185 const char* e3,
196 << e3 << ") evaluates to false, where"
199 << "\n" << e3 << " evaluates to " << v3;
243 const char* e3,
256 << e3 << ", "
260 << "\n" << e3 << " evaluates to " << v3
308 const char* e3,
323 << e3 << ", "
328 << "\n" << e3 << " evaluates to " << v3
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 137 DropBoxManager.Entry e3 = dropbox.getNextEntry("DropBoxTest", e2.getTimeMillis());
138 assertTrue(null == dropbox.getNextEntry("DropBoxTest", e3.getTimeMillis()));
143 assertTrue(e3.getTimeMillis() > e2.getTimeMillis());
148 assertEquals(0, e3.getFlags());
159 assertTrue(null == e3.getText(80));
161 assertEquals("DATA3", new String(buf3, 0, e3.getInputStream().read(buf3)));
166 e3.close();
199 DropBoxManager.Entry e3 = dropbox.getNextEntry(null, e2.getTimeMillis()); local
200 assertTrue(null == dropbox.getNextEntry(null, e3.getTimeMillis()));
205 assertEquals(null, e3.getText(80))
357 DropBoxManager.Entry e3 = dropbox.getNextEntry(null, e2.getTimeMillis()); local
477 DropBoxManager.Entry e3 = dropbox.getNextEntry(null, e2.getTimeMillis()); local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
EnumSet.java 202 * @param e3
208 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3) {
210 set.add(e3);
224 * @param e3
232 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4) {
233 EnumSet<E> set = of(e1, e2, e3);
248 * @param e3
258 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4, E e5) {
259 EnumSet<E> set = of(e1, e2, e3, e4);
DualPivotQuicksort.java 132 int e3 = (left + right) >>> 1; // The midpoint local
133 int e4 = e3 + sixth;
134 int e2 = e3 - sixth;
137 int ae1 = a[e1], ae2 = a[e2], ae3 = a[e3], ae4 = a[e4], ae5 = a[e5];
149 a[e1] = ae1; a[e3] = ae3; a[e5] = ae5;
250 * We know that pivot1 == a[e3] == pivot2. Thus, we know
253 * In other words, a[e3] acts as a sentinel for great.
410 int e3 = (left + right) >>> 1; // The midpoint local
411 int e4 = e3 + sixth;
412 int e2 = e3 - sixth
705 int e3 = (left + right) >>> 1; \/\/ The midpoint local
998 int e3 = (left + right) >>> 1; \/\/ The midpoint local
1293 int e3 = (left + right) >>> 1; \/\/ The midpoint local
1666 int e3 = (left + right) >>> 1; \/\/ The midpoint local
2039 int e3 = (left + right) >>> 1; \/\/ The midpoint local
    [all...]
  /external/icu4c/test/perf/perldriver/
Format.pm 95 my @MULT = (1 , 1e3, 1e6, 1e9);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.7.3.js 71 array[item++] = new TestCase( SECTION, "3.e3", 3000, 3.e3 );
77 array[item++] = new TestCase( SECTION, "3.3e3", 3300, 3.3e3 );
83 array[item++] = new TestCase( SECTION, ".3e3", 300, .3e3 );
89 array[item++] = new TestCase( SECTION, "3e3", 3000, 3e3 );
95 array[item++] = new TestCase( SECTION, "3e3", 3000, 3e3 );
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
ZoneInfoDB.java 233 } catch (IOException e3) {
235 java.util.logging.Logger.global.warning("IOException " + e3 +
237 e3.printStackTrace();
  /external/gtest/test/
gtest_pred_impl_unittest.cc 923 const char* e3,
931 msg << e1 << " + " << e2 << " + " << e3
942 const char* e3,
946 return PredFormatFunction3(e1, e2, e3, v1, v2, v3);
    [all...]
  /system/extras/tests/bionic/libc/other/
test_zlib.c 247 printf( "compression took: %10.3f ms (%.2f KB/s)\n", usec1/1e3, fsize*(1e6/1024)/usec1 );
262 printf( "decompression took: %10.3f ms (%.2f KB/s, %d passes)\n", usec1/1e3, fsize*(1e6/1024)*repeat_count/usec1, repeat_count );
test_jpeg.c 359 printf( "decompression took: %10.3f ms (%.2f KB/s, %d passes)\n", usec1/1e3, fsize*(1e6/1024)*repeat_count/usec1, repeat_count );
  /external/bluetooth/glib/tests/
regex-test.c 418 t1, s1, e1, t2, s2, e2, t3, s3, e3) { \
421 t1, s1, e1, t2, s2, e2, t3, s3, e3, NULL)) \
428 t1, s1, e1, t2, s2, e2, t3, s3, e3, t4, s4, e4) { \
431 t1, s1, e1, t2, s2, e2, t3, s3, e3, t4, s4, e4, NULL)) \
750 #define TEST_FETCH_ALL3(pattern, string, e1, e2, e3) { \
752 if (test_fetch_all (pattern, string, e1, e2, e3, NULL)) \
848 #define TEST_SPLIT_SIMPLE3(pattern, string, e1, e2, e3) { \
850 if (test_split_simple (pattern, string, e1, e2, e3, NULL)) \
1046 #define TEST_SPLIT3(pattern, string, start_position, max_tokens, e1, e2, e3) { \
1048 if (test_split_full (pattern, string, start_position, max_tokens, e1, e2, e3, NULL))
    [all...]
  /dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockAbstractPreferences.java 218 } catch (BackingStoreException e3) {
  /external/openssl/crypto/rc2/
rc2speed.c 168 ret=((double)(tend.time-tstart.time))+((double)i)/1e3;
  /external/openssl/crypto/rc4/
rc4speed.c 168 ret=((double)(tend.time-tstart.time))+((double)i)/1e3;
  /external/openssl/crypto/aes/
aes_wrap.c 214 static const unsigned char e3[] = { local
248 ret = AES_wrap_unwrap_test(kek, 256, NULL, e3, key, 16);
  /external/openssl/crypto/des/
speed.c 173 ret=((double)(tend.time-tstart.time))+((double)i)/1e3;
  /external/v8/test/mjsunit/
array-sort.js 325 0: "e3",
340 var sorted = ["a2", "a3", "b1", "b2", "c1", "c2", "d1", "d2", "e3",

Completed in 1324 milliseconds

1 2