PageRenderTime 6657ms queryTime 3437ms sortTime 121ms getByIdsTime 676ms findMatchingLines 1592ms

100+ results results for 'i++; source:Bitbucket repo:kshdeo/avr-ethernet' (6657 ms)

Not the results you expected?
SerializationUtils.java https://bitbucket.org/kcnp/colordiscriptors.git | Java | 375 lines
                    
360            result[i] = next;
                    
361            i++;
                    
362        }
                    
                
check_names.c https://bitbucket.org/vrrm/brl-cad-copy-for-fast-history-browsing-in-git.git | C | 693 lines
                    
115		}
                    
116		i++;
                    
117		if( 'A'+i == '[' )
                    
151			j = 0;
                    
152			i++;
                    
153		}
                    
                
domain.c https://bitbucket.org/thelearninglabs/uclinux-distro-tll-public.git | C | 611 lines
                    
76                *(d++) = *((*name) ++);
                    
77                i++;
                    
78            } else if (isdigit(**name)) {
                    
91                *(d++) = (char) n;
                    
92                i++;
                    
93
                    
102            *(d++) = *((*name) ++);
                    
103            i++;
                    
104        }
                    
                
jazzdma.c https://bitbucket.org/hachicmo/hachicha1.git | C | 566 lines
                    
197		pgtbl[i].owner = VDMA_PAGE_EMPTY;
                    
198		i++;
                    
199	}
                    
                
concepts.hpp https://bitbucket.org/liflg/library-boost.git | C++ Header | 388 lines
                    
138                ++i;
                    
139                (void)i++;
                    
140            }
                    
                
boxpack2d.c https://bitbucket.org/brita/blender-gl_debug.git | C | 439 lines
                    
184		vert->trb = box;
                    
185		vert->index = i; i++;
                    
186		box->v[BL] = vert; vert++;
                    
192		vert->blb = box;
                    
193		vert->index = i; i++;
                    
194		box->v[TR] = vert; vert++;
                    
200		vert->brb = box;
                    
201		vert->index = i; i++;
                    
202		box->v[TL] = vert; vert++;
                    
208		vert->tlb = box; 
                    
209		vert->index = i; i++;
                    
210		box->v[BR] = vert; vert++;
                    
                
accounting.c https://bitbucket.org/killerpenguinassassins/open_distrib_devel.git | C | 499 lines
                    
408	if (hapd->acct_session_id_lo == 0) {
                    
409		hapd->acct_session_id_hi++;
                    
410	}
                    
                
traps.c https://bitbucket.org/alfredchen/linux-gc.git | C | 540 lines
                    
232			printk(" [<%08lx>]", addr);
                    
233			i++;
                    
234		}
                    
                
i2c-sh7760.c https://bitbucket.org/Tofe/picasso-kernel.git | C | 567 lines
                    
353		msgs++;
                    
354		i++;
                    
355	}
                    
                
st7586fb.c https://bitbucket.org/sirokujira/toppershrp2_ev3rt_test.git | C | 605 lines
                    
219		}
                    
220		i++;
                    
221	} while (!end_script);
                    
255	if (!driver_inited) {
                    
256	  while ( (!vmem[i]) && (i <(WIDTH+2)/3*HEIGHT)) i++;
                    
257	  if (i != ((WIDTH+2)/3*HEIGHT)) driver_inited = true;
                    
                
language.php https://bitbucket.org/alex_poluektov/itech_test.git | PHP | 566 lines
                    
374			$arDetectionFrom[$lang][] = $i;
                    
375			$i++;
                    
376		}
                    
408				$arDetection[$lang_from_to][] = $lang_from_to;
                    
409				$i++;
                    
410			}
                    
557					$result[$p1." ".$p2] = $weight;
                    
558					$i++;
                    
559				}
                    
                
ConvertCharset.class.php https://bitbucket.org/audith/persephone.git | PHP | 307 lines
                    
190                 if (($this -> FromCharset == "gsm0338") && ($HexChar == '1B')){
                    
191                     $i++;
                    
192                     $HexChar .= strtoupper(dechex(ord($StringToChange[$i])));
                    
                
asn.cpp https://bitbucket.org/fuzzybearbtc/trc-armory.git | C++ | 597 lines
                    
21		bt.Put(byte(length));
                    
22		i++;
                    
23	}
                    
26		bt.Put(byte(BytePrecision(length) | 0x80));
                    
27		i++;
                    
28		for (int j=BytePrecision(length); j; --j)
                    
30			bt.Put(byte(length >> (j-1)*8));
                    
31			i++;
                    
32		}
                    
233			BERDecodeError();
                    
234		i++;
                    
235		if (v >> (8*sizeof(v)-7))	// v about to overflow
                    
                
BufferedTokenStream.java https://bitbucket.org/rlyspn/androidrr.git | Java | 272 lines
                    
267        while ( tokens.get(i).getType()!=Token.EOF ) {
                    
268            i++;
                    
269            sync(i);
                    
                
logconf.c https://bitbucket.org/killerpenguinassassins/open_distrib_devel.git | C | 312 lines
                    
117	if (fileobj != NULL)
                    
118		i++;
                    
119	if (syslogobj != NULL)
                    
119	if (syslogobj != NULL)
                    
120		i++;
                    
121	if (nullobj != NULL)
                    
121	if (nullobj != NULL)
                    
122		i++;
                    
123	if (stderrobj != NULL)
                    
123	if (stderrobj != NULL)
                    
124		i++;
                    
125
                    
                
pA.cpp https://bitbucket.org/vermapratyush/online-judges.git | C++ | 339 lines
                    
57  {vector<pair<T,int> > R;for (T i=2;n>1;){if (n%i==0){int C=0;for (;n%i==0;C++,n/=i);R.push_back(make_pair(i,C));}
                    
58   i++;if (i>n/i) i=n;}if (n>1) R.push_back(make_pair(n,1));return R;}
                    
59template<class T> inline bool isPrimeNumber(T n)//NOTES:isPrimeNumber(
                    
                
Representation.cpp https://bitbucket.org/vrrm/brl-cad-copy-for-fast-history-browsing-in-git.git | C++ | 280 lines
                    
98	}
                    
99	i++;
                    
100    }
                    
113	}
                    
114	i++;
                    
115    }
                    
128	}
                    
129	i++;
                    
130    }
                    
                
patchedInterpolation2DTable.C https://bitbucket.org/bgschaid/swak4foam-temporary-replacement-for-original-repo-on | C | 520 lines
                    
322        {
                    
323            i++;
                    
324        }
                    
                
glue.c https://bitbucket.org/kasimling/u-boot.git | C | 435 lines
                    
211		/* take another device_info */
                    
212		di++;
                    
213
                    
                
mrbc.c https://bitbucket.org/monami_ya_mrb/monami-ya.mrb.git | C | 337 lines
                    
90        if (argv[i][2] == '\0' && argv[i+1]) {
                    
91          i++;
                    
92          args->outfile = get_outfilename(mrb, argv[i], "");
                    
99        if (argv[i][2] == '\0' && argv[i+1]) {
                    
100          i++;
                    
101          args->initname = argv[i];
                    
                
sql.php https://bitbucket.org/tuangillness/5330407188-lab7.git | PHP | 242 lines
                    
61            // Find first interesting character, several strpos seem to be faster than simple loop in php:
                    
62            //while (($i < $len) && (strpos('\'";#-/', $buffer[$i]) === FALSE)) $i++;
                    
63            //if ($i == $len) break;
                    
141                }
                    
142                $i++;
                    
143                // Aren't we at the end?
                    
190                    }
                    
191                    $i++;
                    
192                }
                    
193                // Skip last char
                    
194                $i++;
                    
195                // Next query part will start here
                    
231                } else {
                    
232                    $i++;
                    
233                    $start_pos = $i;
                    
                
paf.c https://bitbucket.org/jwalraven/fobs-mac-64x.git | C | 455 lines
                    
178        copy_block4(dst, src, avctx->width, avctx->width, 4);
                    
179        i++;
                    
180        if ((i & 0x3F) == 0)
                    
                
ringmod.cpp https://bitbucket.org/bucket_brigade/neil/ | C++ | 421 lines
                    
51  while (numsamples--) {
                    
52    *o++ += *i++;
                    
53  }
                    
                
drm_edid_load.c https://bitbucket.org/ace0/linux-restore-support.git | C | 255 lines
                    
140		while (i < GENERIC_EDIDS && strcmp(name, generic_edid_name[i]))
                    
141			i++;
                    
142		if (i < GENERIC_EDIDS) {
                    
                
sh_stack.c https://bitbucket.org/vrrm/brl-cad-copy-for-fast-history-browsing-in-git.git | C | 378 lines
                    
260					inputs |= sp->mfuncs[i]->mf_inputs;
                    
261					i++;
                    
262			} else {
                    
279			inputs |= sp->mfuncs[i]->mf_inputs;
                    
280			i++;
                    
281		} else {
                    
                
radeon_cursor.c https://bitbucket.org/natep/linux-at91.git | C | 288 lines
                    
233			if (crtc_p->enabled)
                    
234				i++;
                    
235		}
                    
                
ScriptTool.java https://bitbucket.org/pedpresn/gpr.git | Java | 293 lines
                    
95
                    
96                i++;
                    
97            }
                    
                
generic_buffer.c https://bitbucket.org/ahluntang/ubuntu-precise.git | C | 321 lines
                    
51		bytes = channels[i].location + channels[i].bytes;
                    
52		i++;
                    
53	}
                    
                
NodeEquivClass.java https://bitbucket.org/wthys/groove.git | Java | 277 lines
                    
126            result[i] = obj;
                    
127            i++;
                    
128        }
                    
146            a[i] = (T) obj;
                    
147            i++;
                    
148        }
                    
                
s3c24x0_i2c.c https://bitbucket.org/radiofid/u-boot-irz.git | C | 574 lines
                    
295				ReadWriteByte(i2c);
                    
296				i++;
                    
297			}
                    
302				ReadWriteByte(i2c);
                    
303				i++;
                    
304			}
                    
314				ReadWriteByte(i2c);
                    
315				i++;
                    
316			}
                    
339					result = WaitForXfer(i2c);
                    
340					i++;
                    
341				}
                    
358					data[i] = readl(&i2c->iicds);
                    
359					i++;
                    
360				}
                    
                
LegacyCommonTokenStream.java https://bitbucket.org/rlyspn/androidrr.git | Java | 394 lines
                    
147		while ( i<n && ((Token)tokens.get(i)).getChannel()!=channel ) {
                    
148			i++;
                    
149		}
                    
                
bgp_community.c https://bitbucket.org/janovic/quagga.git | C | 649 lines
                    
94	}
                    
95      i++;
                    
96    }
                    
107      community_del_val (com1, com2->val + i);
                    
108      i++;
                    
109    }
                    
432	j++;
                    
433      i++;
                    
434    }
                    
                
card.c https://bitbucket.org/emiliolopez/linux.git | C | 458 lines
                    
44					break;
                    
45				i++;
                    
46			}
                    
                
Triangulate.hx https://bitbucket.org/deltaluca/stressing.git | Haxe | 254 lines
                    
226                complete[ntri] = false;
                    
227                ntri++;
                    
228            }
                    
242            }
                    
243            else i++;
                    
244        }
                    
                
dt_isadep.c https://bitbucket.org/freebsd/freebsd-base.git | C | 338 lines
                    
256is_ret:
                    
257		i++;
                    
258is_ret_baa:
                    
                
Code93Reader.java https://bitbucket.org/rfrick81/phonegap-plugins.git | Java | 274 lines
                    
244        // bump up i again since we read two characters
                    
245        i++;
                    
246      } else {
                    
                
setup.c https://bitbucket.org/gideonx/bms-jb-3.4.y.git | C | 460 lines
                    
327		if (map[i].size == 0)
                    
328			i++;
                    
329	}
                    
                
qrad3.c https://bitbucket.org/ibah42/quake2.git | C | 717 lines
                    
609			numbounce = atoi (argv[i+1]);
                    
610			i++;
                    
611		}
                    
623			numthreads = atoi (argv[i+1]);
                    
624			i++;
                    
625		}
                    
628			subdiv = atoi (argv[i+1]);
                    
629			i++;
                    
630		}
                    
633			lightscale = atof (argv[i+1]);
                    
634			i++;
                    
635		}
                    
639			printf ("direct light scaling at %f\n", direct_scale);
                    
640			i++;
                    
641		}
                    
                
oasis_game.js https://bitbucket.org/obelzile/herodeo.git | JavaScript | 497 lines
                    
152			result[i] = cells[c];
                    
153			i++;
                    
154		}
                    
                
LexTAL.cxx https://bitbucket.org/cafu/cafu.git | C++ | 399 lines
                    
55		s[i] = static_cast<char>(tolower(styler[start + i]));
                    
56		i++;
                    
57	}
                    
                
cx25821-i2c.c https://bitbucket.org/Lloir/lge-kernel-msm7x27x.git | C | 425 lines
                    
259				goto err;
                    
260			i++;
                    
261			retval = i2c_readbytes(i2c_adap, &msgs[i], 1);
                    
                
mkd2term.c https://bitbucket.org/zielmicha/markdown-to-terminal.git | C | 327 lines
                    
107		else bufputc(ob, ch);
                    
108		i++;
                    
109	}
                    
                
smp.c https://bitbucket.org/alfredchen/linux-gc.git | C | 512 lines
                    
87		action >>= 1;
                    
88		i++;
                    
89	}
                    
                
yaffs_yaffs1.c https://bitbucket.org/droidzone/supernova-kernel.git | C | 465 lines
                    
85		}
                    
86		bi++;
                    
87	}
                    
                
inode.c https://bitbucket.org/cyanogenmod/cm-kernel.git | C | 466 lines
                    
280			goto out;
                    
281		i++;
                    
282		filp->f_pos++;
                    
289			goto out;
                    
290		i++;
                    
291		filp->f_pos++;
                    
                
interpolationCellPointFace.hpp https://bitbucket.org/gsoxley/caelus-contributors.git | C++ Header | 450 lines
                    
264                }
                    
265                faceI++;
                    
266            }
                    
                
priv.c https://bitbucket.org/Xmister/endeavoru-jb-crc-3.1.10.git | C | 377 lines
                    
242
                    
243	vcpu->stat.instruction_stsi++;
                    
244	VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
                    
                
fb_generic.c https://bitbucket.org/vrrm/brl-cad-copy-for-fast-history-browsing-in-git.git | C | 442 lines
                    
166	}
                    
167	i++;
                    
168    }
                    
358	       _if_list[i]->if_type);
                    
359	i++;
                    
360    }
                    
                
WindowFeatures.cpp https://bitbucket.org/kasimling/qt.git | C++ | 266 lines
                    
85                break;
                    
86            i++;
                    
87        }
                    
91        while (!isWindowFeaturesSeparator(buffer[i]))
                    
92            i++;
                    
93        keyEnd = i;
                    
98                break;
                    
99            i++;
                    
100        }
                    
105                break;
                    
106            i++;
                    
107        }
                    
111        while (!isWindowFeaturesSeparator(buffer[i]))
                    
112            i++;
                    
113        valueEnd = i;
                    
                
Table.php https://bitbucket.org/sader/domset.git | PHP | 305 lines
                    
139    {
                    
140        $this->i++;
                    
141        $this->insideLoop = 1;
                    
                
Porter.java https://bitbucket.org/teamwildtreechase/hatparsing.git | Java | 393 lines
                    
103         count++;
                    
104         i++;
                    
105      }
                    
                
Dib.c https://bitbucket.org/peluchejs/ku-a-aty.git | C | 311 lines
                    
160	        pal->palPalEntry[i].peBlue = i;
                    
161		i++;
                    
162	    }
                    
180			pal->palPalEntry[i].peBlue = b;
                    
181			i++;
                    
182		    }
                    
187		pal->palPalEntry[i].peBlue = r * 255 / (22-1);
                    
188		i++;
                    
189	    }
                    
201			pal->palPalEntry[i].peBlue = b;
                    
202			i++;
                    
203		    }
                    
                
fdt_ro.c https://bitbucket.org/__wp__/mb-linux-msli.git | C | 502 lines
                    
103	while (fdt64_to_cpu(_fdt_mem_rsv(fdt, i)->size) != 0)
                    
104		i++;
                    
105	return i;
                    
                
LexCOBOL.cxx https://bitbucket.org/cafu/cafu.git | C++ | 379 lines
                    
74        s[i] = static_cast<char>(tolower(styler[start + i]));
                    
75        i++;
                    
76    }
                    
                
SimpleCharStream.java https://bitbucket.org/plepic/titanium_modules.git | Java | 457 lines
                    
435        columnDiff = nextColDiff;
                    
436        i++;
                    
437     } 
                    
                
btAlignedObjectArray.h https://bitbucket.org/wlitzlbauer/spacecrafts.git | C Header | 511 lines
                    
345				while (CompareFunc(m_data[i],x)) 
                    
346					i++; 
                    
347				while (CompareFunc(x,m_data[j])) 
                    
351					swap(i,j);
                    
352					i++; j--;
                    
353				}
                    
                
profile_helpers.c https://bitbucket.org/rlyspn/androidrr.git | C | 309 lines
                    
293		if (*t == 0) {
                    
294			i++;
                    
295			break;
                    
                
mem.c https://bitbucket.org/alfredchen/linux-gc.git | C | 248 lines
                    
104			p++;
                    
105			i++;
                    
106		}
                    
212			}
                    
213			i++;
                    
214
                    
                
xmlcatalog.c https://bitbucket.org/ardalanaz/dava.framework.git | C | 614 lines
                    
156		    nbargs++;
                    
157		    i++;
                    
158		    cur++;
                    
166		    nbargs++;
                    
167		    i++;
                    
168		    cur++;
                    
175		nbargs++;
                    
176		i++;
                    
177		cur++;
                    
550    } else {
                    
551	for (i++; i < argc; i++) {
                    
552	    xmlURIPtr uri;
                    
                
EnglishPennTreebankParseEvaluator.java https://bitbucket.org/yoavgo/blatt_spmrl.git | Java | 520 lines
                    
435					/* i==1 */rC = child.getLabel();
                    
436				i++;
                    
437				end += childSpan;
                    
                
framebuffer.cpp https://bitbucket.org/androidarmv6/android_hardware_msm7k.git | C++ | 416 lines
                    
161        fd = open(name, O_RDWR, 0);
                    
162        i++;
                    
163    }
                    
                
Serializer.php https://bitbucket.org/brunoMaurice/youfood.git | PHP | 346 lines
                    
159                         }
                    
160                         $i++;
                    
161                    }
                    
                
CollectionModelBinderUtil.cs https://bitbucket.org/mdavid/aspnetwebstack.git | C# | 145 lines
                    
82                yield return i.ToString(CultureInfo.InvariantCulture);
                    
83                i++;
                    
84            }
                    
                
TestLocalStringKeys.java https://bitbucket.org/rsaqc/openesb-core.git | Java | 199 lines
                    
128            }
                    
129            i++;
                    
130        }
                    
                
Strings.java https://bitbucket.org/devconcert1/textsecure.git | Java | 246 lines
                    
137
                    
138            i++;
                    
139        }
                    
                
vga_switcheroo.c https://bitbucket.org/ace0/linux-restore-support.git | C | 573 lines
                    
267			   pci_name(client->pdev));
                    
268		i++;
                    
269	}
                    
                
builtin-fetch--tool.c https://bitbucket.org/ppolatowski/git-kata-registration.git | C | 574 lines
                    
443			}
                    
444			i++;
                    
445			cp = np;
                    
                
Form3s.cs https://bitbucket.org/sivanov68/examples_of_my_work.git | C# | 299 lines
                    
46                    str = listBox1.Items[i].ToString();
                    
47                    if (str != "") i++;
                    
48                }
                    
                
diff-lib.c https://bitbucket.org/ppolatowski/git-kata-registration.git | C | 527 lines
                    
167					ce = nce;
                    
168				i++;
                    
169			}
                    
                
la_get_set_items.i https://bitbucket.org/aterrel/dolfin.git | Swig | 537 lines
                    
502        values[nz_i] = values[j];
                    
503        nz_i++;
                    
504      }
                    
                
ValueTimelineParserNode.cs https://bitbucket.org/microdee/iris.git | C# | 292 lines
                    
257					}
                    
258					i++;	
                    
259				}
                    
                
DiscographyController.php https://bitbucket.org/kdeberna/akalepse.git | PHP | 363 lines
                    
130				$xmlData .= "\t</item>\n";
                    
131				$i++;
                    
132 			}
                    
269				$xmlData .= "\t</item>\n";
                    
270				$i++;
                    
271 			}
                    
                
BisectionRefinement.cpp https://bitbucket.org/mylese/dolfin.git | C++ | 181 lines
                    
171            (*bi_new)[number_bi] = bi_table[table_map];
                    
172            number_bi++;
                    
173          }
                    
                
OpenGlGui.cxx https://bitbucket.org/a30151/mikey-sakke.git | C++ | 305 lines
                    
104	while (i<len && s[i]!=' ')	//pass first digits
                    
105		i++;
                    
106
                    
106
                    
107	i++;				//pass space
                    
108
                    
114	while (i<len && s[i]!=' ')	//pass repeat counter
                    
115		i++;
                    
116
                    
116
                    
117	i++;				//pass space
                    
118
                    
                
make_nurb_face.c https://bitbucket.org/vrrm/brl-cad-copy-for-fast-history-browsing-in-git.git | C | 445 lines
                    
150	}
                    
151	i++;
                    
152	if ( i == no_of_edges )
                    
369	}
                    
370	i++;
                    
371	if ( i == no_of_edges )
                    
                
fileman.c https://bitbucket.org/killerpenguinassassins/open_distrib_devel.git | C | 485 lines
                    
164  while (line[i] && whitespace (line[i]))
                    
165    i++;
                    
166  word = line + i;
                    
168  while (line[i] && !whitespace (line[i]))
                    
169    i++;
                    
170
                    
183  while (whitespace (line[i]))
                    
184    i++;
                    
185
                    
                
ftrfork.h https://bitbucket.org/codefirex/external_freetype.git | C Header | 258 lines
                    
105          local[i].type = FT_RFork_Rule_ ## type_suffix;             \
                    
106          i++;
                    
107#define CONST_FT_RFORK_RULE_ARRAY_END  }
                    
                
ps3disk.c https://bitbucket.org/danhamilt1/linux.git | C | 590 lines
                    
117		bvec_kunmap_irq(buf, &flags);
                    
118		i++;
                    
119	}
                    
                
jcdctmgr.c https://bitbucket.org/jeromegill/genie.git | C | 387 lines
                    
156		       aanscalefactor[row] * aanscalefactor[col] * 8.0)));
                    
157	    i++;
                    
158	  }
                    
                
lis3l02dq_ring.c https://bitbucket.org/GT-P6200/samsung-kernel-p6200.git | C | 514 lines
                    
160			break;
                    
161		i++;
                    
162	}
                    
                
main.c https://bitbucket.org/floren/inferno/ | C | 469 lines
                    
79	for(i = 0; i < 100*1024*1024; i++)
                    
80		i++;
                    
81}
                    
                
e_powersaver.c https://bitbucket.org/ahluntang/ubuntu-precise.git | C | 480 lines
                    
124		rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
                    
125		i++;
                    
126		if (unlikely(i > 64)) {
                    
137		rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
                    
138		i++;
                    
139		if (unlikely(i > 64)) {
                    
                
gpu_cooling.c https://bitbucket.org/corsicanu/hadeskernel-o.git | C | 460 lines
                    
189		}
                    
190		i++;
                    
191	}
                    
                
nwflash.c https://bitbucket.org/Lloir/lge-kernel-msm7x27x.git | C | 689 lines
                    
214			rc = erase_block(nBlock);
                    
215			i++;
                    
216		} while (rc && i < 10);
                    
                
fscore.php https://bitbucket.org/jorgenio/boca.git | PHP | 349 lines
                    
289	while ($i<$n) {
                    
290		if($a[$i]["anstime"] > $ta) { $i++; continue; }
                    
291		$user = $a[$i]["user"];
                    
294		$k = 0;
                    
295		if(!isset($resp[$user])) { $i++; continue; }
                    
296		$resp[$user]["user"] = $user;
                    
309			$k++;
                    
310			$i++;
                    
311		}
                    
326		while ($i<$n && $a[$i]["user"]==$user && $a[$i]["problem"]==$problem) {
                    
327			$i++;
                    
328		}
                    
                
tools.c https://bitbucket.org/psteinhoff/pyptv-git.git | C | 507 lines
                    
328	{
                    
329		while (crd[i].x < xm  &&  i<right)	i++;
                    
330		while (xm < crd[j].x  &&  j>left)	j--;
                    
336			crd[j] = temp;
                    
337			i++;	j--;
                    
338		}
                    
371    {
                    
372      while (crd[i].pnr < pnrm  &&  i<right)	i++;
                    
373      while (pnrm < crd[j].pnr  &&  j>left)	j--;
                    
379	  crd[j] = temp;
                    
380	  i++;	j--;
                    
381	}
                    
418    {
                    
419      while (pix[i].y < ym  &&  i<right)	i++;
                    
420      while (ym < pix[j].y  &&  j>left)	j--;
                    
                
luagsub.c https://bitbucket.org/MartinRJ/emscripten_make.git | C | 415 lines
                    
173  while ((s+i)<ms->src_end && singlematch(uchar(*(s+i)), p, ep))
                    
174    i++;
                    
175  /* keeps trying to match with the maximum repetitions */
                    
370	} else {
                    
371      i++;  /* skip ESC */
                    
372	  if (!isdigit(uchar(news[i]))) {
                    
                
ProtoImageBuilder.cs https://bitbucket.org/dbernard456/cegepa12.git | C# | 209 lines
                    
91
                    
92            this.currentI++;
                    
93
                    
                
PR3PartPacingViewController.m https://bitbucket.org/zayar/smqv2.git | Objective C | 278 lines
                    
140                y += lbl.frame.size.height;
                    
141                i++;
                    
142                [lbl release];
                    
161                y += lbl.frame.size.height;
                    
162                i++;
                    
163                [lbl release];
                    
181                y += lbl.frame.size.height;
                    
182                i++;
                    
183                [lbl release];
                    
                
parseconf.c https://bitbucket.org/freebsd/freebsd-base.git | C | 360 lines
                    
350		else if ((BootFiles[i] = NewStr(dp->d_name)) != NULL)
                    
351			i++;
                    
352	}
                    
                
handlebars-base.js https://bitbucket.org/moodle/moodle.git | JavaScript | 463 lines
                    
161          ret = ret + fn(context[key], {data: data});
                    
162          i++;
                    
163        }
                    
                
fw-card.c https://bitbucket.org/hachicmo/hachicha1.git | C | 557 lines
                    
101		config_rom[i] = desc->key | (j - i);
                    
102		i++;
                    
103		j += desc->length;
                    
                
OggInputStream.java https://bitbucket.org/lothario/slick-mod.git | Java | 506 lines
                    
246						oggInfo.synthesis_headerin(comment, packet);
                    
247						i++;
                    
248					}
                    
                
h264_parser.c https://bitbucket.org/starup/android-rdp.git | C | 340 lines
                    
74                if(pc->frame_start_found){
                    
75                    i++;
                    
76                    goto found;
                    
                
PorterStemmer.java https://bitbucket.org/szitnik/iobie.git | Java | 428 lines
                    
133        {  if (i > j) return n;
                    
134            if (! cons(i)) break; i++;
                    
135        }
                    
135        }
                    
136        i++;
                    
137        while(true)
                    
140            if (cons(i)) break;
                    
141            i++;
                    
142        }
                    
142        }
                    
143            i++;
                    
144            n++;
                    
147                if (! cons(i)) break;
                    
148                i++;
                    
149            }
                    
                
Sort.cpp https://bitbucket.org/kasimling/qt.git | C++ | 345 lines
                    
185				}
                    
186				i++;
                    
187			}
                    
288			  
                    
289			i++;
                    
290		}
                    
                
mtd_speedtest.c https://bitbucket.org/ahluntang/ubuntu-precise.git | C | 580 lines
                    
545			if (j < 1) {
                    
546				i++;
                    
547				continue;
                    
                
FidQueryTest.java https://bitbucket.org/dyp/geotools.git | Java | 265 lines
                    
244        for (Iterator iter = fids.entrySet().iterator(); iter.hasNext();) {
                    
245            i++;
                    
246            Map.Entry entry = (Map.Entry) iter.next();
                    
                
FontUtils.java https://bitbucket.org/prupe/mcpatcher.git | Java | 255 lines
                    
169                if (cWidth < 0.0f && i < s.length() - 1) {
                    
170                    i++;
                    
171                    c = s.charAt(i);
                    
                
OnlineTest.php https://bitbucket.org/pcelta/zf2.git | PHP | 277 lines
                    
220            $this->assertEquals($key, $node->getDnString(Ldap\Dn::ATTR_CASEFOLD_LOWER));
                    
221            $i++;
                    
222        }
                    
                
add_post_list.php https://bitbucket.org/Yatindra_Mohite/spectre.git | PHP | 239 lines
                    
124                                            { 
                    
125                                                $i++;
                    
126
                    
                
ucstr.c https://bitbucket.org/__wp__/mb-linux-msli.git | C | 452 lines
                    
218	    *p = s[i] & mask[clen];
                    
219	    i++;
                    
220	    for (j = 1; j < clen; j++) {
                    
226		*p |= s[i] & 0x3f;
                    
227		i++;
                    
228	    }
                    
282	/* finish off everything up to char before next non-ascii */
                    
283	for (i++; (i < len) && KRB5_UTF8_ISASCII(s + i); i++) {
                    
284	    out[outpos++] = casefold ? TOLOWER(s[i - 1]) : s[i - 1];
                    
                
MeshIterate.cpp https://bitbucket.org/imsejae/meshgencpp.git | C++ | 272 lines
                    
113                  t[numtri].n3 = ttemp[i].n3;
                    
114                  numtri++;
                    
115                }
                    
                
RFC4180CSVReader.java https://bitbucket.org/dcode/racetrack.git | Java | 211 lines
                    
73        int char_i = 0; char c = '\n', last_c = '\n'; while (char_i < line.length()) {
                    
74          last_c = c; c = line.charAt(char_i); char_i++; row.append(c);
                    
75
                    
                
a_utctm.c https://bitbucket.org/cvp2ri/openssl.git | C | 350 lines
                    
133			{
                    
134			i++;
                    
135			if (tm)
                    
                
except.cxx https://bitbucket.org/jorgenio/libreoffice.git | C++ | 438 lines
                    
88            while( *pRTTI == ':' )
                    
89                pRTTI++;
                    
90            pLast = pRTTI;
                    
94        else
                    
95            pRTTI++;
                    
96    }
                    
                
 

Source

Language