Home
last modified time | relevance | path

Searched refs:sourceBytes (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/data/
DOpenTypeDataTests.java49 byte[] sourceBytes = new byte[1024]; in testCopy()
51 for (int i = 0; i < sourceBytes.length; i++) { in testCopy()
52 sourceBytes[i] = (byte) i; in testCopy()
54 MemoryByteArray source = new MemoryByteArray(sourceBytes); in testCopy()
60 assertEquals(sourceBytes.length, length); in testCopy()
61 for (int i = 0; i < sourceBytes.length; i++) { in testCopy()
62 assertEquals(sourceBytes[i], destinationBytes[i]); in testCopy()
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
DBoundedByteStringTest.java48 byte[] sourceBytes = ByteStringTest.getTestBytes(2341, 11337766L); in setUp()
50 int to = sourceBytes.length - 100; in setUp()
51 stringUnderTest = ByteString.copyFrom(sourceBytes).substring(from, to); in setUp()
53 System.arraycopy(sourceBytes, from, referenceBytes, 0, to - from); in setUp()
DRopeByteStringSubstringTest.java48 byte[] sourceBytes = ByteStringTest.getTestBytes(22341, 22337766L); in setUp()
49 Iterator<ByteString> iter = ByteStringTest.makeConcretePieces(sourceBytes).iterator(); in setUp()
56 int to = sourceBytes.length - 5555; in setUp()
59 System.arraycopy(sourceBytes, from, referenceBytes, 0, to - from); in setUp()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DBoundedByteStringTest.java52 byte[] sourceBytes = ByteStringTest.getTestBytes(2341, 11337766L); in setUp()
54 int to = sourceBytes.length - 100; in setUp()
55 stringUnderTest = ByteString.copyFrom(sourceBytes).substring(from, to); in setUp()
57 System.arraycopy(sourceBytes, from, referenceBytes, 0, to - from); in setUp()
DRopeByteStringSubstringTest.java47 byte[] sourceBytes = ByteStringTest.getTestBytes(22341, 22337766L); in setUp()
48 Iterator<ByteString> iter = ByteStringTest.makeConcretePieces(sourceBytes).iterator(); in setUp()
55 int to = sourceBytes.length - 5555; in setUp()
58 System.arraycopy(sourceBytes, from, referenceBytes, 0, to - from); in setUp()
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Dutils_test.js643 var sourceBytes = new Uint8Array(sourceData);
644 var sourceBuffer = sourceBytes.buffer;
657 assertEquals(sourceBytes, convert(sourceBytes));
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Dutils_test.js643 var sourceBytes = new Uint8Array(sourceData);
644 var sourceBuffer = sourceBytes.buffer;
657 assertEquals(sourceBytes, convert(sourceBytes));
/third_party/protobuf/js/binary/
Dutils_test.js714 var sourceBytes = new Uint8Array(sourceData);
715 var sourceBuffer = sourceBytes.buffer;
728 expect(convert(sourceBytes)).toEqual(sourceBytes);
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DDevice.cpp610 …byte *sourceBytes = (byte*)source->lockInternal((int)sRect.x0, (int)sRect.y0, sourceRect->slice, L… in stretchRect() local
616 …copyBuffer(sourceBytes, destBytes, width, height, sourcePitchB, destPitchB, Surface::bytes(source-… in stretchRect()
692 … unsigned char *sourceBytes = (unsigned char*)source->lockInternal(0, 0, z, LOCK_READONLY, PUBLIC); in stretchCube() local
697 memcpy(destBytes, sourceBytes, bytes); in stretchCube()
707 sourceBytes += sourcePitch; in stretchCube()
/third_party/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitives.cs603 fixed (byte* sourceBytes = &MemoryMarshal.GetReference(data)) in ReadRawString()
605 value = WritingPrimitives.Utf8Encoding.GetString(sourceBytes, length); in ReadRawString()