HomeSort by relevance Sort by last modified time
    Searched full:shorts (Results 26 - 50 of 265) sorted by null

12 3 4 5 6 7 8 91011

  /external/libvpx/libvpx/third_party/libyuv/source/
row_neon64.cc     [all...]
scale_neon.cc 197 // expand chars to shorts to allow for room
783 "vpaddl.u8 q0, q0 \n" // B 16 bytes -> 8 shorts.
784 "vpaddl.u8 q1, q1 \n" // G 16 bytes -> 8 shorts.
785 "vpaddl.u8 q2, q2 \n" // R 16 bytes -> 8 shorts.
786 "vpaddl.u8 q3, q3 \n" // A 16 bytes -> 8 shorts.
814 "vpaddl.u8 q0, q0 \n" // B 16 bytes -> 8 shorts.
815 "vpaddl.u8 q1, q1 \n" // G 16 bytes -> 8 shorts.
816 "vpaddl.u8 q2, q2 \n" // R 16 bytes -> 8 shorts.
817 "vpaddl.u8 q3, q3 \n" // A 16 bytes -> 8 shorts.
822 "vpadal.u8 q0, q8 \n" // B 16 bytes -> 8 shorts
    [all...]
  /external/guava/guava/src/com/google/common/hash/
AbstractByteHasher.java 25 import com.google.common.primitives.Shorts;
96 return update(Shorts.BYTES);
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
ShortArrayAsListTest.java 30 * Test suite covering {@link Shorts#asList(short[])}.
42 return Shorts.asList(temp);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
IndexData.java 43 * @param count the number of shorts to copy */
57 * @param count the number of shorts to copy */
IndexArray.java 68 * @param count the number of shorts to copy */
  /external/fec/
peakval_av.c 1 /* Return the largest absolute value of a vector of signed shorts
sumsq_av.c 1 /* Compute the sum of the squares of a vector of signed shorts
  /external/skia/src/core/
SkDither.cpp 45 #else // used packed shorts for a scanlines worth of dither values
  /toolchain/binutils/binutils-2.25/gprof/
hist.h 31 int *sample; /* Histogram samples (shorts in the file!). */
  /external/libvncserver/libvncserver/
tableinit24.c 48 r = colourMap->data.shorts[3*i+0];
49 g = colourMap->data.shorts[3*i+1];
50 b = colourMap->data.shorts[3*i+2];
  /art/test/003-omnibus-opcodes/src/
IntMath.java 475 Shorty shorts = new Shorty(); local
477 shorts.mShort = (short) x;
478 shorts.mChar = (char) x;
479 shorts.mByte = (byte) x;
480 return shorts;
482 static void truncateCheck(Shorty shorts) {
483 Main.assertTrue(shorts.mShort == -5597); // 0xea23
484 Main.assertTrue(shorts.mChar == 59939); // 0xea23
485 Main.assertTrue(shorts.mByte == 35); // 0x23
603 Shorty shorts = truncateTest(-16717277); // 0xff00ea2 local
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/
BufferTest.java 184 short[] shorts = new short[6]; local
185 b.order(ByteOrder.BIG_ENDIAN).asShortBuffer().get(shorts, 1, 4);
186 assertEquals(0, shorts[0]);
187 assertEquals(0x0102, shorts[1]);
188 assertEquals(0x0304, shorts[2]);
189 assertEquals(0x0506, shorts[3]);
190 assertEquals(0x0708, shorts[4]);
191 assertEquals(0, shorts[5]);
192 b.order(ByteOrder.LITTLE_ENDIAN).asShortBuffer().get(shorts, 1, 4);
193 assertEquals(0, shorts[0])
255 short[] shorts = new short[] { 0, 0x0102, 0x0304, 0x0506, 0x0708, 0 }; local
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Shorts.java 50 public final class Shorts {
51 private Shorts() {}
326 * bytes, in big-endian order; equivalent to {@code Shorts.fromByteArray(new
352 return "Shorts.stringConverter()";
363 * shorts using {@link Short#decode} and {@link Short#toString()}.
455 int result = Shorts.compare(left[i], right[i]);
548 && Shorts.indexOf(array, (Short) target, start, end) != -1;
554 int i = Shorts.indexOf(array, (Short) target, start, end);
565 int i = Shorts.lastIndexOf(array, (Short) target, start, end);
613 result = 31 * result + Shorts.hashCode(array[i])
    [all...]
package-info.java 56 * <li>{@link com.google.common.primitives.Shorts}
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
BufferUtilsTest.java 195 short[] shorts = new short[1024 * 1024 / 2]; local
196 int len = shorts.length;
203 sb.put(shorts[i]);
212 sb.put(i, shorts[i]);
220 sb.put(shorts);
228 BufferUtils.copy(shorts, 0, sb, len);
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Shorts.java 48 public final class Shorts {
49 private Shorts() {}
300 return "Shorts.stringConverter()";
311 * shorts using {@link Short#decode} and {@link Short#toString()}.
403 int result = Shorts.compare(left[i], right[i]);
496 && Shorts.indexOf(array, (Short) target, start, end) != -1;
502 int i = Shorts.indexOf(array, (Short) target, start, end);
513 int i = Shorts.lastIndexOf(array, (Short) target, start, end);
561 result = 31 * result + Shorts.hashCode(array[i]);
  /external/icu/icu4c/source/tools/genrb/
rle.h 65 * Construct an array of shorts from a run-length encoded string.
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/array/
PrimitiveArrayTest.java 33 private final short[] shorts = new short[] { 300, 301, 302 }; field in class:PrimitiveArrayTest
43 + pkg + ".ShortArr [ " + Arrays.toString(shorts) + " ]\n" + "- " + pkg
55 Assert.assertArrayEquals(shorts, ((ShortArr) wrappers.get(1)).getShorts());
160 ShortArr shortArr = new ShortArr(shorts);
  /frameworks/base/core/java/android/speech/
IRecognitionListener.aidl 50 * @param buffer the byte buffer containing a sequence of 16-bit shorts.
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
ethernet.h 151 /* compare two ethernet addresses - assumes the pointers can be referenced as shorts */
158 /* copy an ethernet address - assumes the pointers can be referenced as shorts */
  /external/libyuv/files/source/
scale_neon.cc 190 // expand chars to shorts to allow for room
772 "vpaddl.u8 q0, q0 \n" // B 16 bytes -> 8 shorts.
773 "vpaddl.u8 q1, q1 \n" // G 16 bytes -> 8 shorts.
774 "vpaddl.u8 q2, q2 \n" // R 16 bytes -> 8 shorts.
775 "vpaddl.u8 q3, q3 \n" // A 16 bytes -> 8 shorts.
802 "vpaddl.u8 q0, q0 \n" // B 16 bytes -> 8 shorts.
803 "vpaddl.u8 q1, q1 \n" // G 16 bytes -> 8 shorts.
804 "vpaddl.u8 q2, q2 \n" // R 16 bytes -> 8 shorts.
805 "vpaddl.u8 q3, q3 \n" // A 16 bytes -> 8 shorts.
810 "vpadal.u8 q0, q8 \n" // B 16 bytes -> 8 shorts
    [all...]
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 282 private short[] shorts; field in class:ArrayAccessReplaceTest.Simple
334 return shorts[pos];
378 shorts[pos] = value;
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/
Kerning.java 400 int[] shorts = new int[count]; local
402 shorts[i] = readUnsignedShort();
404 return shorts;
  /external/chromium-trace/catapult/third_party/coverage/coverage/
html.py 216 shorts = []
220 shorts.append("exit")
223 shorts.append(b)
228 annotate_html = ",&nbsp;&nbsp; ".join(short_fmt % (lineno, d) for d in shorts)

Completed in 1017 milliseconds

12 3 4 5 6 7 8 91011