Skip to content

Commit

Permalink
[] (0) Make the length encoding big-endian to be compatible with Perl…
Browse files Browse the repository at this point in the history
…. (credit: pt)

git-svn-id: http://svn.whatwg.org/webapps@1846 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 3, 2008
1 parent f75e741 commit f91ac9a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions index
Expand Up @@ -41867,8 +41867,10 @@ Proxy-authorization: Basic ZWRuYW1vZGU6bm9jYXBlcyE=</pre>
you would get by <i>and</i>ing <var title="">b</var> with 0x7f).

<li>
<p>Add <var title="">b<sub title="">v</sub></var> multiplied by <var
title="">multiple</var> to <var title="">length</var>.
<p>Multiply <var title="">length</var> by <var
title="">multiple</var>, add <var title="">b<sub
title="">v</sub></var> to that result, and store the final result in
<var title="">length</var>.

<li>
<p>Multiply <var title="">multiple</var> by 128, and store that new
Expand Down
7 changes: 4 additions & 3 deletions source
Expand Up @@ -39513,9 +39513,10 @@ Proxy-authorization: Basic ZWRuYW1vZGU6bm9jYXBlcyE=</pre>
(the value you would get by <i>and</i>ing <var title="">b</var>
with 0x7f).</p></li>

<li><p>Add <var title="">b<sub title="">v</sub></var>
multiplied by <var title="">multiple</var> to <var
title="">length</var>.</p></li>
<li><p>Multiply <var title="">length</var> by <var
title="">multiple</var>, add <var title="">b<sub
title="">v</sub></var> to that result, and store the final
result in <var title="">length</var>.</p></li>

<li><p>Multiply <var title="">multiple</var> by 128, and store
that new value in <var title="">multiple</var>.</p></li>
Expand Down

0 comments on commit f91ac9a

Please sign in to comment.