/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | CryptographicallyRandomNumber.cpp | 69 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/ |
D | render_pictures_main.cpp | 221 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/ |
D | render_pictures_main.cpp | 232 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/ |
D | ByteStringTest.java | 32 @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()
|
D | OkBufferTest.java | 536 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/ |
D | DistinguishedNameParser.java | 180 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/ |
D | Unwind-EHABI.cpp | 32 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/ |
D | ProxyBuilderTest.java | 173 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/ |
D | BundleTest.java | 71 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()
|
D | ParcelTest.java | 320 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/ |
D | ImageHeaderParser.java | 85 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/ |
D | ArrayAccessReplaceTest.java | 56 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/ |
D | ShadowBundle.java | 117 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/ |
D | ByteArray.java | 125 public int getByte(int off) { in getByte() method in ByteArray
|
/external/okhttp/okio/src/main/java/okio/ |
D | GzipSource.java | 110 byte flags = source.buffer().getByte(3); in consumeHeader()
|
D | ByteString.java | 163 public byte getByte(int pos) { in getByte() method in ByteString
|
D | OkBuffer.java | 160 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/ |
D | Impl_RowSet.java | 339 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/ |
D | JDBCResultSet.java | 598 public byte getByte(int columnIndex) throws SQLException { 602 public byte getByte(String columnName) throws SQLException { 604 return getByte(col);
|
D | JDBCPreparedStatement.java | 652 public byte getByte(String parameterName) throws SQLException {
|