<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[208396] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/208396">208396</a></dd>
<dt>Author</dt> <dd>mmaxfield@apple.com</dd>
<dt>Date</dt> <dd>2016-11-04 13:09:39 -0700 (Fri, 04 Nov 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Implement WebGL2RenderingContext::copyBufferSubData()
https://bugs.webkit.org/show_bug.cgi?id=164008

Reviewed by Dean Jackson.

Source/WebCore:

Similar to previous work regarding WebGL 2 buffers, this method implements
the ability to copy from one buffer to another without the data leaving
the GPU.

Test: fast/canvas/webgl/copyBufferSubData.html

* html/canvas/WebGL2RenderingContext.cpp:
(WebCore::WebGL2RenderingContext::copyBufferSubData):
* html/canvas/WebGLBuffer.cpp:
(WebCore::WebGLBuffer::associateCopyBufferSubData):
* html/canvas/WebGLBuffer.h:
* platform/graphics/GraphicsContext3D.h:
* platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
(WebCore::GraphicsContext3D::copyBufferSubData):

LayoutTests:

* fast/canvas/webgl/copyBufferSubData-expected.txt: Added.
* fast/canvas/webgl/copyBufferSubData.html: Added.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorehtmlcanvasWebGL2RenderingContextcpp">trunk/Source/WebCore/html/canvas/WebGL2RenderingContext.cpp</a></li>
<li><a href="#trunkSourceWebCorehtmlcanvasWebGLBuffercpp">trunk/Source/WebCore/html/canvas/WebGLBuffer.cpp</a></li>
<li><a href="#trunkSourceWebCorehtmlcanvasWebGLBufferh">trunk/Source/WebCore/html/canvas/WebGLBuffer.h</a></li>
<li><a href="#trunkSourceWebCoreplatformgraphicsGraphicsContext3Dh">trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h</a></li>
<li><a href="#trunkSourceWebCoreplatformgraphicsopenglGraphicsContext3DOpenGLCommoncpp">trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsfastcanvaswebglcopyBufferSubDataexpectedtxt">trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastcanvaswebglcopyBufferSubDatahtml">trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (208395 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2016-11-04 19:42:26 UTC (rev 208395)
+++ trunk/LayoutTests/ChangeLog        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -1,3 +1,13 @@
</span><ins>+2016-11-04  Myles C. Maxfield  &lt;mmaxfield@apple.com&gt;
+
+        Implement WebGL2RenderingContext::copyBufferSubData()
+        https://bugs.webkit.org/show_bug.cgi?id=164008
+
+        Reviewed by Dean Jackson.
+
+        * fast/canvas/webgl/copyBufferSubData-expected.txt: Added.
+        * fast/canvas/webgl/copyBufferSubData.html: Added.
+
</ins><span class="cx"> 2016-11-04  Antti Koivisto  &lt;antti@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         slotted() pseudo does not work with ID selector
</span></span></pre></div>
<a id="trunkLayoutTestsfastcanvaswebglcopyBufferSubDataexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData-expected.txt (0 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData-expected.txt                                (rev 0)
+++ trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData-expected.txt        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -0,0 +1,2865 @@
</span><ins>+Make sure that getBufferSubData() doesn't work on WebGL 1 contexts
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[0]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[1]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[2]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS receiver[0] is fullArrayView[0]
+PASS receiver[1] is fullArrayView[1]
+PASS receiver[2] is fullArrayView[1]
+PASS receiver[3] is fullArrayView[3]
+PASS receiver[4] is fullArrayView[4]
+PASS receiver[5] is fullArrayView[5]
+PASS receiver[6] is fullArrayView[6]
+PASS receiver[7] is fullArrayView[7]
+PASS receiver[8] is fullArrayView[8]
+PASS receiver[9] is fullArrayView[9]
+PASS context.getError() is context.NO_ERROR
+PASS context.getError() is context.NO_ERROR
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins><span class="cx">Property changes on: trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData-expected.txt
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+native
</ins><span class="cx">\ No newline at end of property
</span><a id="svnkeywords"></a>
<div class="addfile"><h4>Added: svn:keywords</h4></div>
<ins>+Author Date Id Rev URL
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsfastcanvaswebglcopyBufferSubDatahtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData.html (0 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData.html                                (rev 0)
+++ trunk/LayoutTests/fast/canvas/webgl/copyBufferSubData.html        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -0,0 +1,97 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;script src=&quot;../../../resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;canvas id=&quot;canvas&quot; width=&quot;40&quot; height=&quot;40&quot;&gt;&lt;/canvas&gt;
+&lt;script&gt;
+description(&quot;Make sure that getBufferSubData() doesn't work on WebGL 1 contexts&quot;);
+
+if (window.internals)
+        internals.setWebGL2Enabled(true);
+
+var arrayBuffer = new ArrayBuffer(40);
+var fullArrayView = new Float32Array(arrayBuffer); // [15, 16, 17, 18, 19, 20, 21, 22, 23, 24], 40 bytes
+var receiver = new Float32Array(20); // 20 floats, 80 bytes
+for (var i = 0; i &lt; 10; ++i)
+        fullArrayView[i] = 15 + i;
+
+var canvas = document.getElementById(&quot;canvas&quot;);
+var context = canvas.getContext(&quot;webgl2&quot;);
+
+var targets = [context.ARRAY_BUFFER, context.COPY_READ_BUFFER, context.COPY_WRITE_BUFFER, context.PIXEL_PACK_BUFFER, context.PIXEL_UNPACK_BUFFER, context.TRANSFORM_FEEDBACK_BUFFER, context.UNIFORM_BUFFER];
+targets.forEach(function(i) {
+        targets.forEach(function(j) {
+                if (i != j) {
+                        testCopy(i, j);
+                }
+        });
+});
+
+function testCopy(readTarget, writeTarget) {
+        var buffer1 = context.createBuffer();
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.bindBuffer(readTarget, buffer1);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.bufferData(readTarget, arrayBuffer, context.STATIC_DRAW);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+
+        var buffer2 = context.createBuffer();
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.bindBuffer(writeTarget, buffer2);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.bufferData(writeTarget, arrayBuffer, context.STATIC_DRAW);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+
+        context.copyBufferSubData(readTarget, writeTarget, 0, 4, 4);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.getBufferSubData(writeTarget, 0, receiver, 0, 10);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        shouldBe(&quot;receiver[0]&quot;, &quot;fullArrayView[0]&quot;);
+        shouldBe(&quot;receiver[1]&quot;, &quot;fullArrayView[0]&quot;);
+        for (var i = 2; i &lt; 10; ++i)
+                shouldBe(&quot;receiver[&quot; + i + &quot;]&quot;, &quot;fullArrayView[&quot; + i + &quot;]&quot;);
+
+        context.copyBufferSubData(readTarget, writeTarget, 0, 0, 40);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.getBufferSubData(writeTarget, 0, receiver, 0, 10);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        for (var i = 0; i &lt; 10; ++i)
+                shouldBe(&quot;receiver[&quot; + i + &quot;]&quot;, &quot;fullArrayView[&quot; + i + &quot;]&quot;);
+
+        context.copyBufferSubData(readTarget, writeTarget, 4, 0, 4);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.getBufferSubData(writeTarget, 0, receiver, 0, 10);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        shouldBe(&quot;receiver[0]&quot;, &quot;fullArrayView[1]&quot;);
+        for (var i = 1; i &lt; 10; ++i)
+                shouldBe(&quot;receiver[&quot; + i + &quot;]&quot;, &quot;fullArrayView[&quot; + i + &quot;]&quot;);
+
+        context.copyBufferSubData(readTarget, writeTarget, 0, 0, 40);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.getBufferSubData(writeTarget, 0, receiver, 0, 10);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        for (var i = 0; i &lt; 10; ++i)
+                shouldBe(&quot;receiver[&quot; + i + &quot;]&quot;, &quot;fullArrayView[&quot; + i + &quot;]&quot;);
+
+        context.copyBufferSubData(writeTarget, writeTarget, 4, 8, 4);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.getBufferSubData(writeTarget, 0, receiver, 0, 10);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        shouldBe(&quot;receiver[0]&quot;, &quot;fullArrayView[0]&quot;);
+        shouldBe(&quot;receiver[1]&quot;, &quot;fullArrayView[1]&quot;);
+        shouldBe(&quot;receiver[2]&quot;, &quot;fullArrayView[1]&quot;);
+        for (var i = 3; i &lt; 10; ++i)
+                shouldBe(&quot;receiver[&quot; + i + &quot;]&quot;, &quot;fullArrayView[&quot; + i + &quot;]&quot;);
+
+        context.deleteBuffer(buffer1);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+        context.deleteBuffer(buffer2);
+        shouldBe(&quot;context.getError()&quot;, &quot;context.NO_ERROR&quot;);
+}
+
+&lt;/script&gt;
+&lt;script src=&quot;../../../resources/js-test-post.js&quot;&gt;&lt;/script&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (208395 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-11-04 19:42:26 UTC (rev 208395)
+++ trunk/Source/WebCore/ChangeLog        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -1,3 +1,25 @@
</span><ins>+2016-11-04  Myles C. Maxfield  &lt;mmaxfield@apple.com&gt;
+
+        Implement WebGL2RenderingContext::copyBufferSubData()
+        https://bugs.webkit.org/show_bug.cgi?id=164008
+
+        Reviewed by Dean Jackson.
+
+        Similar to previous work regarding WebGL 2 buffers, this method implements
+        the ability to copy from one buffer to another without the data leaving
+        the GPU.
+
+        Test: fast/canvas/webgl/copyBufferSubData.html
+
+        * html/canvas/WebGL2RenderingContext.cpp:
+        (WebCore::WebGL2RenderingContext::copyBufferSubData):
+        * html/canvas/WebGLBuffer.cpp:
+        (WebCore::WebGLBuffer::associateCopyBufferSubData):
+        * html/canvas/WebGLBuffer.h:
+        * platform/graphics/GraphicsContext3D.h:
+        * platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
+        (WebCore::GraphicsContext3D::copyBufferSubData):
+
</ins><span class="cx"> 2016-11-04  Simon Fraser  &lt;simon.fraser@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Rename some ScrollingTree/Node-related functions to reduce the number of uses of &quot;update&quot;
</span></span></pre></div>
<a id="trunkSourceWebCorehtmlcanvasWebGL2RenderingContextcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/html/canvas/WebGL2RenderingContext.cpp (208395 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/html/canvas/WebGL2RenderingContext.cpp        2016-11-04 19:42:26 UTC (rev 208395)
+++ trunk/Source/WebCore/html/canvas/WebGL2RenderingContext.cpp        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -170,8 +170,49 @@
</span><span class="cx">     WebGLRenderingContextBase::bufferSubData(target, offset, BufferDataSource(slice.get()));
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void WebGL2RenderingContext::copyBufferSubData(GC3Denum, GC3Denum, GC3Dint64, GC3Dint64, GC3Dint64)
</del><ins>+void WebGL2RenderingContext::copyBufferSubData(GC3Denum readTarget, GC3Denum writeTarget, GC3Dint64 readOffset, GC3Dint64 writeOffset, GC3Dint64 size)
</ins><span class="cx"> {
</span><ins>+    if (isContextLostOrPending())
+        return;
+    if ((readTarget == GraphicsContext3D::ELEMENT_ARRAY_BUFFER &amp;&amp; writeTarget != GraphicsContext3D::ELEMENT_ARRAY_BUFFER)
+        || (writeTarget == GraphicsContext3D::ELEMENT_ARRAY_BUFFER &amp;&amp; readTarget != GraphicsContext3D::ELEMENT_ARRAY_BUFFER)) {
+        synthesizeGLError(GraphicsContext3D::INVALID_OPERATION, &quot;copyBufferSubData&quot;, &quot;Either both targets need to be ELEMENT_ARRAY_BUFFER or neither should be ELEMENT_ARRAY_BUFFER.&quot;);
+        return;
+    }
+    if (readOffset &lt; 0 || writeOffset &lt; 0 || size &lt; 0) {
+        synthesizeGLError(GraphicsContext3D::INVALID_VALUE, &quot;copyBufferSubData&quot;, &quot;offset &lt; 0&quot;);
+        return;
+    }
+    WebGLBuffer* readBuffer = validateBufferDataParameters(&quot;copyBufferSubData&quot;, readTarget, GraphicsContext3D::STATIC_DRAW);
+    WebGLBuffer* writeBuffer = validateBufferDataParameters(&quot;copyBufferSubData&quot;, writeTarget, GraphicsContext3D::STATIC_DRAW);
+    if (!readBuffer || !writeBuffer) {
+        synthesizeGLError(GraphicsContext3D::INVALID_VALUE, &quot;copyBufferSubData&quot;, &quot;Invalid readTarget or writeTarget&quot;);
+        return;
+    }
+
+    Checked&lt;GC3Dintptr, RecordOverflow&gt; checkedReadOffset(readOffset);
+    Checked&lt;GC3Dintptr, RecordOverflow&gt; checkedWriteOffset(writeOffset);
+    Checked&lt;GC3Dsizeiptr, RecordOverflow&gt; checkedSize(size);
+    if (checkedReadOffset.hasOverflowed() || checkedWriteOffset.hasOverflowed() || checkedSize.hasOverflowed()) {
+        synthesizeGLError(GraphicsContext3D::INVALID_VALUE, &quot;copyBufferSubData&quot;, &quot;Offset or size is too big&quot;);
+        return;
+    }
+
+    if (!this-&gt;isErrorGeneratedOnOutOfBoundsAccesses()) {
+        if (!writeBuffer-&gt;associateCopyBufferSubData(*readBuffer, checkedReadOffset.unsafeGet(), checkedWriteOffset.unsafeGet(), checkedSize.unsafeGet())) {
+            this-&gt;synthesizeGLError(GraphicsContext3D::INVALID_VALUE, &quot;copyBufferSubData&quot;, &quot;offset out of range&quot;);
+            return;
+        }
+    }
+
+    m_context-&gt;moveErrorsToSyntheticErrorList();
+#if PLATFORM(MAC) || PLATFORM(IOS)
+    m_context-&gt;copyBufferSubData(readTarget, writeTarget, checkedReadOffset.unsafeGet(), checkedWriteOffset.unsafeGet(), checkedSize.unsafeGet());
+#endif
+    if (m_context-&gt;moveErrorsToSyntheticErrorList()) {
+        // The bufferSubData function failed. Tell the buffer it doesn't have the data it thinks it does.
+        writeBuffer-&gt;disassociateBufferData();
+    }
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void WebGL2RenderingContext::getBufferSubData(GC3Denum target, long long srcByteOffset, RefPtr&lt;ArrayBufferView&gt;&amp;&amp; dstData, GC3Duint dstOffset, GC3Duint length)
</span></span></pre></div>
<a id="trunkSourceWebCorehtmlcanvasWebGLBuffercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/html/canvas/WebGLBuffer.cpp (208395 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/html/canvas/WebGLBuffer.cpp        2016-11-04 19:42:26 UTC (rev 208395)
+++ trunk/Source/WebCore/html/canvas/WebGLBuffer.cpp        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -176,6 +176,51 @@
</span><span class="cx">     return associateBufferSubDataImpl(offset, array-&gt;baseAddress(), array-&gt;byteLength());
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+bool WebGLBuffer::associateCopyBufferSubData(const WebGLBuffer&amp; readBuffer, GC3Dintptr readOffset, GC3Dintptr writeOffset, GC3Dsizeiptr size)
+{
+    if (readOffset &lt; 0 || writeOffset &lt; 0 || size &lt; 0)
+        return false;
+
+    if (size) {
+        Checked&lt;GC3Dintptr, RecordOverflow&gt; checkedReadBufferOffset(readOffset);
+        Checked&lt;GC3Dsizeiptr, RecordOverflow&gt; checkedDataLength(size);
+        Checked&lt;GC3Dintptr, RecordOverflow&gt; checkedReadBufferMax = checkedReadBufferOffset + checkedDataLength;
+        if (checkedReadBufferMax.hasOverflowed() || readOffset &gt; readBuffer.byteLength() || checkedReadBufferMax.unsafeGet() &gt; readBuffer.byteLength())
+            return false;
+
+        Checked&lt;GC3Dintptr, RecordOverflow&gt; checkedWriteBufferOffset(writeOffset);
+        Checked&lt;GC3Dintptr, RecordOverflow&gt; checkedWriteBufferMax = checkedWriteBufferOffset + checkedDataLength;
+        if (checkedWriteBufferMax.hasOverflowed() || writeOffset &gt; m_byteLength || checkedWriteBufferMax.unsafeGet() &gt; m_byteLength)
+            return false;
+    }
+
+    switch (m_target) {
+    case GraphicsContext3D::ELEMENT_ARRAY_BUFFER:
+        clearCachedMaxIndices();
+        if (size) {
+            if (!m_elementArrayBuffer)
+                return false;
+            memcpy(static_cast&lt;unsigned char*&gt;(m_elementArrayBuffer-&gt;data()) + writeOffset, static_cast&lt;const unsigned char*&gt;(readBuffer.elementArrayBuffer()-&gt;data()) + readOffset, size);
+        }
+        return true;
+    case GraphicsContext3D::ARRAY_BUFFER:
+        return true;
+    default:
+#if ENABLE(WEBGL2)
+        switch (m_target) {
+        case GraphicsContext3D::COPY_READ_BUFFER:
+        case GraphicsContext3D::COPY_WRITE_BUFFER:
+        case GraphicsContext3D::PIXEL_PACK_BUFFER:
+        case GraphicsContext3D::PIXEL_UNPACK_BUFFER:
+        case GraphicsContext3D::TRANSFORM_FEEDBACK_BUFFER:
+        case GraphicsContext3D::UNIFORM_BUFFER:
+            return true;
+        }
+#endif
+        return false;
+    }
+}
+
</ins><span class="cx"> void WebGLBuffer::disassociateBufferData()
</span><span class="cx"> {
</span><span class="cx">     m_byteLength = 0;
</span></span></pre></div>
<a id="trunkSourceWebCorehtmlcanvasWebGLBufferh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/html/canvas/WebGLBuffer.h (208395 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/html/canvas/WebGLBuffer.h        2016-11-04 19:42:26 UTC (rev 208395)
+++ trunk/Source/WebCore/html/canvas/WebGLBuffer.h        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -46,6 +46,7 @@
</span><span class="cx">     bool associateBufferData(JSC::ArrayBufferView*);
</span><span class="cx">     bool associateBufferSubData(GC3Dintptr offset, JSC::ArrayBuffer*);
</span><span class="cx">     bool associateBufferSubData(GC3Dintptr offset, JSC::ArrayBufferView*);
</span><ins>+    bool associateCopyBufferSubData(const WebGLBuffer&amp; readBuffer, GC3Dintptr readOffset, GC3Dintptr writeOffset, GC3Dsizeiptr);
</ins><span class="cx"> 
</span><span class="cx">     void disassociateBufferData();
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoreplatformgraphicsGraphicsContext3Dh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h (208395 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h        2016-11-04 19:42:26 UTC (rev 208395)
+++ trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -970,6 +970,7 @@
</span><span class="cx"> 
</span><span class="cx">     void* mapBufferRange(GC3Denum target, GC3Dintptr offset, GC3Dsizeiptr length, GC3Dbitfield access);
</span><span class="cx">     GC3Dboolean unmapBuffer(GC3Denum target);
</span><ins>+    void copyBufferSubData(GC3Denum readTarget, GC3Denum writeTarget, GC3Dintptr readOffset, GC3Dintptr writeOffset, GC3Dsizeiptr);
</ins><span class="cx"> 
</span><span class="cx">     GC3Denum checkFramebufferStatus(GC3Denum target);
</span><span class="cx">     void clear(GC3Dbitfield mask);
</span></span></pre></div>
<a id="trunkSourceWebCoreplatformgraphicsopenglGraphicsContext3DOpenGLCommoncpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp (208395 => 208396)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp        2016-11-04 19:42:26 UTC (rev 208395)
+++ trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp        2016-11-04 20:09:39 UTC (rev 208396)
</span><span class="lines">@@ -563,6 +563,12 @@
</span><span class="cx">     makeContextCurrent();
</span><span class="cx">     return ::glUnmapBuffer(target);
</span><span class="cx"> }
</span><ins>+
+void GraphicsContext3D::copyBufferSubData(GC3Denum readTarget, GC3Denum writeTarget, GC3Dintptr readOffset, GC3Dintptr writeOffset, GC3Dsizeiptr size)
+{
+    makeContextCurrent();
+    ::glCopyBufferSubData(readTarget, writeTarget, readOffset, writeOffset, size);
+}
</ins><span class="cx"> #endif
</span><span class="cx"> 
</span><span class="cx"> GC3Denum GraphicsContext3D::checkFramebufferStatus(GC3Denum target)
</span></span></pre>
</div>
</div>

</body>
</html>