Home
last modified time | relevance | path

Searched refs:destinationLength (Results 1 – 2 of 2) sorted by relevance

/third_party/node/test/fixtures/wpt/encoding/
DencodeInto.any.js79 const bufferLength = testData.destinationLength + destinationData.bufferIncrease,
81 destinationLength = testData.destinationLength, constant
85 view = new Uint8Array(buffer, destinationOffset, destinationLength),
101 assert_equals(view.byteLength, destinationLength);
102 assert_equals(view.length, destinationLength);
114 …o() with " + testData.input + " and destination length " + testData.destinationLength + ", offset …
/third_party/grpc/src/csharp/Grpc.Core/Internal/
DMarshalUtils.cs45 public static unsafe int GetBytesUTF8(string str, byte* destination, int destinationLength) in GetBytesUTF8() argument
51 return EncodingUTF8.GetBytes(source, charCount, destination, destinationLength); in GetBytesUTF8()