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

1 2 3

  /libcore/luni/src/test/java/libcore/java/lang/
ShortTest.java 21 final short min = Short.MIN_VALUE;
22 final short zero = 0;
23 final short max = Short.MAX_VALUE;
24 assertTrue(Short.compare(max, max) == 0);
25 assertTrue(Short.compare(min, min) == 0);
26 assertTrue(Short.compare(zero, zero) == 0);
27 assertTrue(Short.compare(max, zero) > 0);
28 assertTrue(Short.compare(max, min) > 0)
    [all...]
  /external/clang/test/CodeGen/
x86_32-fpcc-struct-return.c 13 typedef struct { short s; } Short;
30 Short returnShort(Short x) { return x; }
  /external/valgrind/coregrind/m_debuginfo/
priv_misc.h 91 Short ML_(read_Short)( const UChar* data );
94 DEF_READ(Short);
  /external/aac/libAACenc/src/
psy_data.h 99 * short energies and thresholds between FDKaacEnc_groupShortData() and BuildInterface() in FDKaacEnc_psyMain().
105 FIXP_DBL Short[TRANS_FAC][MAX_SFB_SHORT];
110 FIXP_DBL Short[TRANS_FAC][MAX_SFB_SHORT];
115 FIXP_DBL Short[TRANS_FAC][MAX_SFB_SHORT];
120 INT Short[TRANS_FAC][MAX_SFB_SHORT];
aacenc_tns.h 107 * tnsMask |= 0x1; activate TNS short blocks
109 * tnsMask |= 0x4; activate TNS PEAK tool for short blocks
144 could be they have to be split up for each individual (short) window or
172 TNS_DATA_SHORT Short;
190 /* for Short: length TRANS_FAC*TNS_MAX_ORDER (only 5 for short LC) is required -> 8*5=40 */
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 33 primitiveTypes.put(Short.TYPE.getName(), Short.TYPE);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ShortTest.java 22 private Short sp = new Short((short) 18000);
23 private Short sn = new Short((short) -19000);
26 * java.lang.Short#byteValue()
29 // Test for method byte java.lang.Short.byteValue()
30 assertEquals("Returned incorrect byte value", 0, new Short(Short.MIN_VALUE
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
otConverters.py 127 class Short(IntValue):
372 "int16": Short,
  /external/valgrind/VEX/pub/
libvex_basictypes.h 51 typedef unsigned short UShort;
52 typedef signed short Short;
122 static inline Short toShort ( Int x ) {
124 return (Short)x;
  /libcore/ojluni/src/main/java/java/lang/
Short.java 30 * The {@code Short} class wraps a value of primitive type {@code
31 * short} in an object. An object of type {@code Short} contains a
32 * single field whose type is {@code short}.
35 * a {@code short} to a {@code String} and a {@code String} to a
36 * {@code short}, as well as other constants and methods useful when
37 * dealing with a {@code short}.
44 public final class Short extends Number implements Comparable<Short> {
47 * A constant holding the minimum value a {@code short} ca
    [all...]
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 303 builder.setMtu(Short.parseShort(fields[1]));
  /external/valgrind/VEX/useful/
show_fp_state.c 9 typedef unsigned short UShort;
14 typedef short Short;
  /external/valgrind/memcheck/tests/amd64/
bt_everything.c 8 typedef unsigned short UShort;
12 typedef signed short Short;
140 : "r" ((Short)bitno));
154 : "r" ((Short)bitno));
165 : "r" ((Short)bitno));
176 : "r" ((Short)bitno)
346 : "r" ((Short)bitno), "r" (reg_in)
364 : "r" ((Short)bitno), "r" (reg_in)
382 : "r" ((Short)bitno), "r" (reg_in
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
std.h 167 typedef short MdInt; /* MDSIZE-bit signed integer */
175 typedef unsigned short MdUns; /* MDSIZE-bit unsigned integer */
183 typedef unsigned short MdBits; /* MDSIZE-bit bit string */
195 typedef short int Short;
  /hardware/ti/omap3/dspbridge/libbridge/inc/
std.h 167 typedef short MdInt; /* MDSIZE-bit signed integer */
175 typedef unsigned short MdUns; /* MDSIZE-bit unsigned integer */
183 typedef unsigned short MdBits; /* MDSIZE-bit bit string */
195 typedef short int Short;
  /external/clang/test/SemaCXX/
overloaded-builtin-operators.cpp 8 struct Short {
9 operator short();
40 void f(Short s, Long l, Enum1 e1, Enum2 e2, Xpmf pmf) {
69 operator short&();
89 short s1 = sr++;
95 short& sr1 = (sr *= lr);
107 short& sr2 = (sr %= lr);
160 sr = (short)0; // expected-error{{no viable overloaded '='}}
  /external/gmock/test/
gmock-more-actions_test.cc 72 inline short Short(short n) { return n; } // NOLINT
108 const char* Binary(const char* input, short n) { return input + n; } // NOLINT
112 int Ternary(int x, char y, short z) { return x + y + z; } // NOLINT
186 short Unary(long x) { return static_cast<short>(value_ + x); } // NOLINT
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
250 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2))));
255 Action<int(int, char, short)> a = Invoke(Ternary); // NOLIN
    [all...]
gmock-generated-actions_test.cc 67 inline short Short(short n) { return n; } // NOLINT
95 const char* Binary(const char* input, short n) { return input + n; } // NOLINT
99 int Ternary(int x, char y, short z) { return x + y + z; } // NOLINT
248 Action<const char*(const char*(*)(const char* input, short n))> a = // NOLINT
249 InvokeArgument<0>(static_cast<const char*>("Hi"), Short(1));
256 Action<const char*(const char*(*)(const char* input, short n))> a = // NOLINT
257 InvokeArgument<0>("Hi", Short(1));
293 Action<const char*(const char* s, double x, short n)> a
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-more-actions_test.cc 72 inline short Short(short n) { return n; } // NOLINT
108 const char* Binary(const char* input, short n) { return input + n; } // NOLINT
112 int Ternary(int x, char y, short z) { return x + y + z; } // NOLINT
186 short Unary(long x) { return static_cast<short>(value_ + x); } // NOLINT
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
250 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2))));
255 Action<int(int, char, short)> a = Invoke(Ternary); // NOLIN
    [all...]
gmock-generated-actions_test.cc 67 inline short Short(short n) { return n; } // NOLINT
95 const char* Binary(const char* input, short n) { return input + n; } // NOLINT
99 int Ternary(int x, char y, short z) { return x + y + z; } // NOLINT
248 Action<const char*(const char*(*)(const char* input, short n))> a = // NOLINT
249 InvokeArgument<0>(static_cast<const char*>("Hi"), Short(1));
256 Action<const char*(const char*(*)(const char* input, short n))> a = // NOLINT
257 InvokeArgument<0>("Hi", Short(1));
293 Action<const char*(const char* s, double x, short n)> a
    [all...]
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/parsing/
JavaMethodParser.java 64 Boolean("jboolean"), Byte("jbyte"), Char("jchar"), Short("jshort"), Integer("jint"), Long("jlong"), Float("jfloat"), Double(
100 if (this == CharBuffer) return "unsigned short*";
101 if (this == ShortBuffer) return "short*";
113 if (this == CharArray) return "unsigned short*";
114 if (this == ShortArray) return "short*";
  /external/testng/src/main/java/org/testng/
Assert.java 367 static public void assertEquals(short actual, short expected, String message) {
368 assertEquals(Short.valueOf(actual), Short.valueOf(expected), message);
377 static public void assertEquals(short actual, short expected) {
879 static void assertNotEquals(short actual1, short actual2, String message) {
880 assertNotEquals(Short.valueOf(actual1), Short.valueOf(actual2), message)
    [all...]
  /external/icu/icu4c/source/i18n/
decNumberLocal.h 71 #define Short int16_t
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h 29 typedef unsigned short UShort;
30 typedef short Short;
367 * @brief This function encodes a GOB (short header mode) or a packet (data partitioning mode or combined mode with resync marker)
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetMetaDataTest.java 78 assertEquals(Short.class.getName(), rsmd.getColumnClassName(1));

Completed in 923 milliseconds

1 2 3