CloneSet326


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6540.977statement_block
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16597
libraries/joomla/utilities/string.php
26603
libraries/joomla/utilities/string.php
36609
libraries/joomla/utilities/string.php
413615
libraries/joomla/utilities/string.php
56628
libraries/joomla/utilities/string.php
Clone Instance
1
Line Count
6
Source Line
597
Source File
libraries/joomla/utilities/string.php

                                                                   {
                                        // First octet of 2 octet sequence
                                        $mUcs4=  ($in);
                                        $mUcs4=  ($mUcs4&  0x1f)<<  6;
                                        $mState=  1;
                                        $mBytes=  2;
                                      }


Clone Instance
2
Line Count
6
Source Line
603
Source File
libraries/joomla/utilities/string.php

                                                                   {
                                        // First octet of 3 octet sequence
                                        $mUcs4=  ($in);
                                        $mUcs4=  ($mUcs4&  0x0f)<<  12;
                                        $mState=  2;
                                        $mBytes=  3;
                                      }


Clone Instance
3
Line Count
6
Source Line
609
Source File
libraries/joomla/utilities/string.php

                                                                   {
                                        // First octet of 4 octet sequence
                                        $mUcs4=  ($in);
                                        $mUcs4=  ($mUcs4&  0x07)<<  18;
                                        $mState=  3;
                                        $mBytes=  4;
                                      }


Clone Instance
4
Line Count
13
Source Line
615
Source File
libraries/joomla/utilities/string.php

                                                                   {
                                        /* First octet of 5 octet sequence.
                                         *
                                         * This is illegal because the encoded codepoint must be either
                                         * (a) not the shortest form or
                                         * (b) outside the Unicode range of 0-0x10FFFF.
                                         * Rather than trying to resynchronize, we will carry on until the end
                                         * of the sequence and let the later error handling code catch it.
                                         */
                                        $mUcs4=  ($in);
                                        $mUcs4=  ($mUcs4&  0x03)<<  24;
                                        $mState=  4;
                                        $mBytes=  5;
                                      }


Clone Instance
5
Line Count
6
Source Line
628
Source File
libraries/joomla/utilities/string.php

                                                                   {
                                        // First octet of 6 octet sequence, see comments for 5 octet sequence.
                                        $mUcs4=  ($in);
                                        $mUcs4=  ($mUcs4&  1)<<  30;
                                        $mState=  5;
                                        $mBytes=  6;
                                      }


Clone AbstractionParameter Count: 4Parameter Bindings

{
  // First octet of 2 octet sequence
  // First octet of 3 octet sequence
  // First octet of 4 octet sequence
  /* First octet of 5 octet sequence.
                                           *
                                           * This is illegal because the encoded codepoint must be either
                                           * (a) not the shortest form or
                                           * (b) outside the Unicode range of 0-0x10FFFF.
                                           * Rather than trying to resynchronize, we will carry on until the end
                                           * of the sequence and let the later error handling code catch it.
                                           */
  // First octet of 6 octet sequence, see comments for 5 octet sequence.
  $mUcs4=($in);
  $mUcs4=($mUcs4& [[#variable3eb3ff00]])<< [[#variable3eb3fec0]];
  $mState= [[#variable3eb3fe60]];
  $mBytes= [[#variable3eb3fe80]];
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#3eb3ff00]]
0x1f 
12[[#3eb3ff00]]
0x0f 
13[[#3eb3ff00]]
0x07 
14[[#3eb3ff00]]
0x03 
15[[#3eb3ff00]]
1 
21[[#3eb3fec0]]
6 
22[[#3eb3fec0]]
12 
23[[#3eb3fec0]]
18 
24[[#3eb3fec0]]
24 
25[[#3eb3fec0]]
30 
31[[#3eb3fe60]]
1 
32[[#3eb3fe60]]
2 
33[[#3eb3fe60]]
3 
34[[#3eb3fe60]]
4 
35[[#3eb3fe60]]
5 
41[[#3eb3fe80]]
2 
42[[#3eb3fe80]]
3 
43[[#3eb3fe80]]
4 
44[[#3eb3fe80]]
5 
45[[#3eb3fe80]]
6