HomeSort by relevance Sort by last modified time
    Searched refs:start_i (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/v8/src/
array.js 196 function SmartSlice(array, start_i, del_count, len, deleted_elements) {
198 var indices = %GetArrayKeys(array, start_i + del_count);
201 for (var i = start_i; i < limit; ++i) {
204 deleted_elements[i - start_i] = current;
212 if (key >= start_i) {
215 deleted_elements[key - start_i] = current;
226 function SmartMove(array, start_i, del_count, len, num_additional_args) {
232 for (var i = 0; i < start_i && i < limit; ++i) {
238 for (var i = start_i + del_count; i < limit; ++i) {
249 if (key < start_i) {
    [all...]
string.js 551 var start_i = TO_INTEGER(start);
557 if (start_i < 0) {
558 start_i += s_len;
559 if (start_i < 0) {
560 start_i = 0;
563 if (start_i > s_len) {
579 if (end_i <= start_i) {
583 return %_SubString(s, start_i, end_i);
686 var start_i = TO_INTEGER(start);
687 if (start_i < 0)
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_engine.cpp 136 int start_i, end_i; local
138 start_i = (int)FXSYS_floor((FX_FLOAT)src_start);
141 start_i = (int)FXSYS_floor((FX_FLOAT)src_end);
144 if (start_i < src_min) {
145 start_i = src_min;
150 if (start_i > end_i) {
151 if (start_i >= src_max) {
152 start_i = src_max - 1;
154 pixel_weights.m_SrcStart = start_i;
155 pixel_weights.m_SrcEnd = start_i;
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp 86 void ResetIntraUpdateRegion(UChar *intraArray, Int start_i, Int rwidth,
154 Int numIntra, start_i, numLoop, incr_i; local
242 start_i = 1;
249 start_i = 0;
262 start_i = (start_i == 0 ? 1 : 0) ; /* toggle 0 and 1 */
264 offset = width * (j << 4) + (start_i << 4);
266 mbnum = j * mbwidth + start_i;
268 for (i = start_i; i < mbwidth; i += incr_i)
501 start_i = 0
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
htmllib.py 345 def start_cite(self, attrs): self.start_i(attrs)
351 def start_em(self, attrs): self.start_i(attrs)
363 def start_var(self, attrs): self.start_i(attrs)
368 def start_i(self, attrs): member in class:HTMLParser
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
htmllib.py 345 def start_cite(self, attrs): self.start_i(attrs)
351 def start_em(self, attrs): self.start_i(attrs)
363 def start_var(self, attrs): self.start_i(attrs)
368 def start_i(self, attrs): member in class:HTMLParser
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 255 int NumIntraSearch, start_i, numLoop, incr_i; local
322 start_i = 1;
329 start_i = 0;
342 start_i = (start_i == 0 ? 1 : 0) ; /* toggle 0 and 1 */
344 offset = pitch * (j << 4) + (start_i << 4);
346 mbnum = j * mbwidth + start_i;
348 for (i = start_i; i < mbwidth; i += incr_i)
456 start_i = 0;
    [all...]

Completed in 353 milliseconds