Home
last modified time | relevance | path

Searched refs:origBytes (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
DMetadataTest.cs86 var origBytes = new byte[] { 1, 2, 3 }; in Entry_Immutable()
90 CollectionAssert.AreEqual(origBytes, entry.ValueBytes); in Entry_Immutable()
93 CollectionAssert.AreEqual(origBytes, entry.ValueBytes); in Entry_Immutable()
/external/llvm-project/flang/runtime/
Dcharacter.cpp655 std::size_t origBytes{string.ElementBytes()}; in RTNAME() local
656 result.Establish(string.type(), origBytes * ncopies, nullptr, 0); in RTNAME()
661 for (char *to{result.OffsetElement()}; ncopies-- > 0; to += origBytes) { in RTNAME()
662 std::memcpy(to, from, origBytes); in RTNAME()
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DClassInstrumentor.java84 public byte[] instrument(byte[] origBytes, InstrumentationConfiguration config, in instrument() argument
86 MutableClass mutableClass = analyzeClass(origBytes, config, classNodeProvider); in instrument()
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java4333 byte[] origBytes = (byte[]) orig[i]; in deepCopy()
4334 result[i] = Arrays.copyOf(origBytes, origBytes.length); in deepCopy()