HomeSort by relevance Sort by last modified time
    Searched defs:upto (Results 1 - 4 of 4) sorted by null

  /external/e2fsprogs/lib/ext2fs/
alloc.c 112 ext2_ino_t i, ino_in_group, upto, first_zero; local
137 upto = i + (EXT2_INODES_PER_GROUP(fs->super) - ino_in_group);
138 if (i < start_inode && upto >= start_inode)
139 upto = start_inode - 1;
140 if (upto > fs->super->s_inodes_count)
141 upto = fs->super->s_inodes_count;
143 retval = ext2fs_find_first_zero_inode_bitmap2(map, i, upto,
151 i = upto + 1;
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
CallbackStack.cpp 200 Block* upto = 0; local
202 upto = from;
204 invokeOldestCallbacks(from, upto, visitor);
208 void CallbackStack::invokeOldestCallbacks(Block* from, Block* upto, Visitor* visitor)
210 if (from == upto)
214 invokeOldestCallbacks(from->next(), upto, visitor);
  /external/chromium_org/third_party/skia/third_party/lua/src/
lstrlib.c 567 size_t upto = 0; local
569 if (strpbrk(p + upto, SPECIALS))
571 upto += strlen(p + upto) + 1; /* may have more after \0 */
572 } while (upto <= l);
  /external/zxing/core/
core.jar 

Completed in 225 milliseconds