HomeSort by relevance Sort by last modified time
    Searched refs:last_index (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/v8/test/cctest/
test-constantpool.cc 47 CHECK_EQ(expected_last_idx[i], array->last_index(kTypes[i], kSmall));
91 CHECK_EQ(small_last_idx[i], array->last_index(kTypes[i], kSmall));
103 CHECK_EQ(extended_last_idx[i], array->last_index(kTypes[i], kExtended));
120 i <= array->last_index(ConstantPoolArray::INT32, kSmall); i++) {
121 if (i <= array->last_index(ConstantPoolArray::INT64, kSmall)) {
123 } else if (i <= array->last_index(ConstantPoolArray::CODE_PTR, kSmall)) {
125 } else if (i <= array->last_index(ConstantPoolArray::HEAP_PTR, kSmall)) {
128 CHECK(i <= array->last_index(ConstantPoolArray::INT32, kSmall));
133 i <= array->last_index(ConstantPoolArray::INT32, kExtended); i++) {
134 if (i <= array->last_index(ConstantPoolArray::INT64, kExtended))
    [all...]
  /external/chromium_org/media/base/
vector_math.cc 88 const int last_index = len - rem; local
90 for (int i = 0; i < last_index; i += 4)
94 for (int i = last_index; i < len; ++i)
100 const int last_index = len - rem; local
102 for (int i = 0; i < last_index; i += 4) {
108 for (int i = last_index; i < len; ++i)
135 const int last_index = len - rem; local
150 for (i = 0; i < last_index; i += 4) {
193 const int last_index = len - rem; local
195 for (int i = 0; i < last_index; i += 4)
207 const int last_index = len - rem; local
232 const int last_index = len - rem; local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pstack.c 39 unsigned short i = pstack->top, last_index = pstack->top - 1; local
43 if (i < last_index)
46 (last_index - i) * sizeof(void *));
  /external/chromium_org/ui/app_list/
app_list_item_list.cc 101 size_t last_index = app_list_items_.size() - 1; local
102 if (from_index == last_index)
104 new_position = app_list_items_[last_index]->position().CreateAfter();
227 size_t last_index = index + 1; local
228 for (; last_index < nitems; ++last_index) {
229 if (!app_list_items_[last_index]->position().Equals(prev->position()))
232 AppListItem* last = last_index < nitems ? app_list_items_[last_index] : NULL;
233 for (size_t i = index; i < last_index; ++i)
    [all...]
  /external/chromium_org/ui/gfx/animation/
multi_animation.cc 48 size_t last_index = current_part_index_; local
64 if ((current_value_ != last_value || current_part_index_ != last_index) &&
  /external/chromium_org/cc/trees/
occlusion_tracker.cc 201 int last_index = stack_.size() - 1; local
205 stack_[last_index].occlusion_from_outside_target =
207 stack_[last_index - 1].occlusion_from_outside_target,
211 stack_[last_index].occlusion_from_outside_target.Union(
213 stack_[last_index - 1].occlusion_from_inside_target,
306 int last_index = stack_.size() - 1; local
308 stack_.size() > 1 && stack_[last_index - 1].target == new_target;
314 const LayerType* old_target = stack_[last_index].target;
320 stack_[last_index].occlusion_from_inside_target,
327 stack_[last_index].occlusion_from_inside_target
    [all...]
  /external/chromium_org/chrome/browser/ui/search_engines/
search_engine_tab_helper.cc 174 int last_index = controller.GetLastCommittedEntryIndex(); local
179 if (last_index <= 0)
183 controller.GetEntryAtIndex(last_index - 1)));
  /external/chromium_org/chrome/browser/
process_singleton_browsertest.cc 318 size_t last_index = pending_starters.front(); local
320 if (chrome_starters_[last_index]->process_handle_ !=
322 KillProcessTree(chrome_starters_[last_index]->process_handle_);
323 chrome_starters_[last_index]->done_event_.Wait();
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 1184 int last_index = -1; local
1356 int last_index = -1; local
1862 int last_index = -1; local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 954 int last_index = -1; local
973 if (i / 8 != last_index / 8 || last_index < 0) {
974 if (last_index >= 0) {
982 last_index = i;
1005 if (last_index >= 0) {
1126 int last_index = -1; local
1614 int last_index = -1; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_queryobj.c 189 for (i = query->first_index; i <= query->last_index; i++) {
196 for (i = query->first_index; i <= query->last_index; i++) {
266 query->last_index = -1;
435 query->last_index = brw->query.index;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_queryobj.c 189 for (i = query->first_index; i <= query->last_index; i++) {
196 for (i = query->first_index; i <= query->last_index; i++) {
266 query->last_index = -1;
435 query->last_index = brw->query.index;
  /external/chromium_org/v8/src/
objects-printer.cc 522 for (int i = 0; i <= last_index(INT32, SMALL_SECTION); i++) {
523 if (i < last_index(INT64, SMALL_SECTION)) {
525 } else if (i <= last_index(CODE_PTR, SMALL_SECTION)) {
528 } else if (i <= last_index(HEAP_PTR, SMALL_SECTION)) {
531 } else if (i <= last_index(INT32, SMALL_SECTION)) {
538 i <= last_index(INT32, EXTENDED_SECTION); i++) {
539 if (i < last_index(INT64, EXTENDED_SECTION)) {
541 } else if (i <= last_index(CODE_PTR, EXTENDED_SECTION)) {
544 } else if (i <= last_index(HEAP_PTR, EXTENDED_SECTION)) {
547 } else if (i <= last_index(INT32, EXTENDED_SECTION))
    [all...]
  /external/qemu/block/
qcow2-refcount.c 426 int64_t refcount_block_offset, int first_index, int last_index)
441 last_index = (last_index + REFCOUNTS_PER_SECTOR)
444 size = (last_index - first_index) << REFCOUNT_SHIFT;
465 int first_index = -1, last_index = -1; local
493 first_index, last_index);
499 last_index = -1;
516 if (block_index > last_index) {
517 last_index = block_index;
539 first_index, last_index);
    [all...]
  /external/chromium_org/content/renderer/
skia_benchmarking_extension.cc 177 int last_index = debug_canvas.getSize() - 1; local
178 if (last_index >= 0) {
182 stop_index < 0 ? last_index : std::min(last_index, stop_index));
  /external/chromium_org/ui/message_center/views/
message_center_view.cc 435 int last_index = -1; local
443 last_index = i;
447 if (last_index > 0) {
452 for (int i = last_index; i < child_count(); ++i) {
462 int last_index = -1; local
470 last_index = i;
474 if (last_index >= 0) {
478 ? reposition_top_ + child_at(last_index)->height()
480 for (int i = last_index; i >= 0; --i) {
    [all...]
  /external/chromium_org/third_party/ots/src/
ots.cc 324 uint32_t last_index = 0; local
344 if (i == 0 || tables[last_index].offset < table.offset)
345 last_index = i;
357 if (tables[last_index].offset >= length ||
358 length - tables[last_index].offset < tables[last_index].length) {
364 static_cast<uint64_t>(tables[last_index].offset) +
365 static_cast<uint64_t>(tables[last_index].length));
  /external/openssl/crypto/srp/
srp_vfy.c 367 char *last_index = NULL; local
392 last_index = SRP_get_default_gN(NULL)->id;
414 last_index = pp[DB_srpid];
442 if (last_index != NULL)
446 if (((gN = SRP_get_gN_by_id(last_index,SRP_gN_tab))==NULL))
  /external/chromium_org/ui/app_list/views/
apps_grid_view_unittest.cc 691 const int last_index = kItems - 1; local
706 apps_grid_view_->SetSelectedView(GetItemViewAt(last_index));
708 EXPECT_TRUE(apps_grid_view_->IsSelectedView(GetItemViewAt(last_index)));
710 EXPECT_TRUE(apps_grid_view_->IsSelectedView(GetItemViewAt(last_index)));
749 last_index)));
753 last_index)));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multibytecodec.py 258 last_index = len(self.text) - 1
260 encoder.encode(char, index == last_index)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multibytecodec.py 258 last_index = len(self.text) - 1
260 encoder.encode(char, index == last_index)
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-coretext.cc 510 unsigned int last_index = 0; local
515 if (event->index != last_index)
571 range->index_first = last_index;
574 last_index = event->index;
    [all...]
hb-uniscribe.cc 650 unsigned int last_index = 0; local
655 if (event->index != last_index)
685 range->index_first = last_index;
688 last_index = event->index;
  /external/harfbuzz_ng/src/
hb-coretext.cc 498 unsigned int last_index = 0; local
503 if (event->index != last_index)
560 range->index_first = last_index;
563 last_index = event->index;
    [all...]
hb-uniscribe.cc 649 unsigned int last_index = 0; local
654 if (event->index != last_index)
684 range->index_first = last_index;
687 last_index = event->index;

Completed in 931 milliseconds

1 2 3