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

  /external/v8/src/
array.js 206 function SmartSlice(array, start_i, del_count, len, deleted_elements) {
208 var indices = %GetArrayKeys(array, start_i + del_count);
211 for (var i = start_i; i < limit; ++i) {
214 deleted_elements[i - start_i] = current;
222 if (key >= start_i) {
225 deleted_elements[key - start_i] = current;
236 function SmartMove(array, start_i, del_count, len, num_additional_args) {
242 for (var i = 0; i < start_i && i < limit; ++i) {
248 for (var i = start_i + del_count; i < limit; ++i) {
259 if (key < start_i) {
    [all...]
string.js 549 var start_i = TO_INTEGER(start);
555 if (start_i < 0) {
556 start_i += s_len;
557 if (start_i < 0) {
558 start_i = 0;
561 if (start_i > s_len) {
577 if (end_i <= start_i) {
581 return %_SubString(s, start_i, end_i);
684 var start_i = TO_INTEGER(start);
685 if (start_i < 0)
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_engine.cpp 135 int start_i, end_i; local
137 start_i = (int)FXSYS_floor((FX_FLOAT)src_start);
140 start_i = (int)FXSYS_floor((FX_FLOAT)src_end);
143 if (start_i < src_min) {
144 start_i = src_min;
149 if (start_i > end_i) {
150 if (start_i >= src_max) {
151 start_i = src_max - 1;
153 pixel_weights.m_SrcStart = start_i;
154 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 650 milliseconds