Home
last modified time | relevance | path

Searched refs:getByte (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DCryptographicallyRandomNumber.cpp69 inline uint8_t getByte();
113 getByte(); in stir()
123 uint8_t ARC4RandomNumberGenerator::getByte() in getByte() function in WTF::__anonf7a6cddc0111::ARC4RandomNumberGenerator
137 val = getByte() << 24; in getWord()
138 val |= getByte() << 16; in getWord()
139 val |= getByte() << 8; in getWord()
140 val |= getByte(); in getWord()
162 result[length] = getByte(); in randomValues()
/external/skia/tools/
Drender_pictures_main.cpp221 static inline int getByte(uint32_t value, int index) { in getByte() function
227 …return SkMax32(SkMax32(abs(getByte(v1, 0) - getByte(v2, 0)), abs(getByte(v1, 1) - getByte(v2, 1))), in MaxByteDiff()
228 … SkMax32(abs(getByte(v1, 2) - getByte(v2, 2)), abs(getByte(v1, 3) - getByte(v2, 3)))); in MaxByteDiff()
/external/chromium_org/third_party/skia/tools/
Drender_pictures_main.cpp232 static inline int getByte(uint32_t value, int index) { in getByte() function
238 …return SkMax32(SkMax32(abs(getByte(v1, 0) - getByte(v2, 0)), abs(getByte(v1, 1) - getByte(v2, 1))), in MaxByteDiff()
239 … SkMax32(abs(getByte(v1, 2) - getByte(v2, 2)), abs(getByte(v1, 3) - getByte(v2, 3)))); in MaxByteDiff()
/external/okhttp/okio/src/test/java/okio/
DByteStringTest.java32 @Test public void getByte() throws Exception { in getByte() method in ByteStringTest
34 assertEquals(-85, byteString.getByte(0)); in getByte()
35 assertEquals(18, byteString.getByte(1)); in getByte()
41 byteString.getByte(2); in getByteOutOfBounds()
DOkBufferTest.java536 assertEquals('a', buffer.getByte(0)); in byteAt()
537 assertEquals('a', buffer.getByte(0)); // getByte doesn't mutate! in byteAt()
538 assertEquals('c', buffer.getByte(buffer.size - 1)); in byteAt()
539 assertEquals('b', buffer.getByte(buffer.size - 2)); in byteAt()
540 assertEquals('b', buffer.getByte(buffer.size - 3)); in byteAt()
546 buffer.getByte(0); in getByteOfEmptyBuffer()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DDistinguishedNameParser.java180 encoded[i] = (byte) getByte(p); in hexAV()
264 int res = getByte(pos); in getUTF8()
291 b = getByte(pos); in getUTF8()
311 private int getByte(int position) { in getByte() method in DistinguishedNameParser
/external/libcxxabi/src/Unwind/
DUnwind-EHABI.cpp32 uint8_t getByte(const uint32_t* data, size_t offset) { in getByte() function
254 uint8_t byte = getByte(data, offset++); in _Unwind_VRS_Interpret()
270 (((uint32_t)getByte(data, offset++)) << 4); in _Unwind_VRS_Interpret()
304 uint8_t registers = getByte(data, offset++); in _Unwind_VRS_Interpret()
317 uint32_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
332 uint8_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
361 uint8_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
372 uint8_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
380 uint8_t v = getByte(data, offset++); in _Unwind_VRS_Interpret()
/external/dexmaker/src/test/java/com/google/dexmaker/stock/
DProxyBuilderTest.java173 public byte getByte() { return 2; } in getByte() method in ProxyBuilderTest.AllReturnTypes
190 assertEquals(9, proxy.getByte()); in testAllReturnTypes()
210 public byte getByte(byte input) { return input; } in getByte() method in ProxyBuilderTest.PassThroughAllTypes
235 assertEquals((byte) 2, proxy.getByte((byte) 2)); in testPassThroughWorksForAllTypes()
236 assertEquals((byte) 3, proxy.getByte((byte) 3)); in testPassThroughWorksForAllTypes()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DBundleTest.java71 assertEquals((byte) 0xA, bundle.getByte("foo")); in testByte()
72 assertEquals((byte) 0x0, bundle.getByte("bar")); in testByte()
73 assertEquals((byte) 0x37, bundle.getByte("bar", (byte) 0x37).byteValue()); in testByte()
DParcelTest.java320 assertEquals((byte) 0xAA, b2.getByte("byte")); in testReadWriteBundleWithDifferentValueTypes()
333 assertEquals((byte) 0xAA, b2.getByte("byte")); in testReadWriteBundleWithDifferentValueTypes()
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
DImageHeaderParser.java85 int alpha = streamReader.getByte(); in getType()
315 public int getByte() throws IOException { in getByte() method in ImageHeaderParser.StreamReader
/external/javassist/src/test/test/javassist/convert/
DArrayAccessReplaceTest.java56 assertEquals(i, simple.getByte(i)); in testByte()
249 public byte getByte(int pos); in getByte() method
301 public byte getByte(int pos) { in getByte() method in ArrayAccessReplaceTest.Simple
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBundle.java117 public byte getByte(String key) { in getByte() method in ShadowBundle
118 return getByte(key, (byte) 0); in getByte()
122 public Byte getByte(String key, byte defaultValue) { in getByte() method in ShadowBundle
/external/dexmaker/src/dx/java/com/android/dx/util/
DByteArray.java125 public int getByte(int off) { in getByte() method in ByteArray
/external/okhttp/okio/src/main/java/okio/
DGzipSource.java110 byte flags = source.buffer().getByte(3); in consumeHeader()
DByteString.java163 public byte getByte(int pos) { in getByte() method in ByteString
DOkBuffer.java160 public byte getByte(long pos) {
322 if (newline > 0 && getByte(newline - 1) == '\r') {
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
DImpl_RowSet.java339 public byte getByte(int columnIndex) throws SQLException { in getByte() method in Impl_RowSet
343 public byte getByte(String columnName) throws SQLException { in getByte() method in Impl_RowSet
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCResultSet.java598 public byte getByte(int columnIndex) throws SQLException {
602 public byte getByte(String columnName) throws SQLException {
604 return getByte(col);
DJDBCPreparedStatement.java652 public byte getByte(String parameterName) throws SQLException {