Searched defs:last_index (Results 1 - 25 of 40) sorted by relevance

12

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpstack.c39 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/chrome/browser/ui/search_engines/
H A Dsearch_engine_tab_helper.cc174 int last_index = controller.GetLastCommittedEntryIndex(); local
179 if (last_index <= 0)
183 controller.GetEntryAtIndex(last_index - 1)));
/external/chromium_org/ui/gfx/animation/
H A Dmulti_animation.cc48 size_t last_index = current_part_index_; local
64 if ((current_value_ != last_value || current_part_index_ != last_index) &&
/external/chromium_org/ui/app_list/
H A Dapp_list_item_list.cc101 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;
[all...]
/external/chromium_org/chrome/browser/
H A Dprocess_singleton_browsertest.cc318 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/content/renderer/
H A Dskia_benchmarking_extension.cc177 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/media/base/
H A Dvector_math.cc88 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;
207 const int last_index = len - rem; local
232 const int last_index = len - rem; local
[all...]
/external/chromium_org/cc/trees/
H A Docclusion_tracker.cc201 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]
[all...]
/external/chromium_org/ui/app_list/views/
H A Dapps_grid_view_unittest.cc691 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)));
/external/openssl/crypto/srp/
H A Dsrp_vfy.c367 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/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc954 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
1136 if (i / 8 != last_index / 8 || last_index < 0) {
1137 if (last_index >
1614 int last_index = -1; local
[all...]
/external/chromium_org/third_party/ots/src/
H A Dots.cc324 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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc1184 int last_index = -1; local
1200 if (i / 8 != last_index / 8 || last_index < 0) {
1201 if (last_index >= 0) {
1210 last_index = i;
1235 if (last_index >= 0) {
1356 int last_index = -1; local
1363 if (i / 8 != last_index / 8 || last_index < 0) {
1364 if (last_index >
1862 int last_index = -1; local
[all...]
/external/qemu/block/
H A Dqcow2-refcount.c426 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);
425 write_refcount_block_entries(BlockDriverState *bs, int64_t refcount_block_offset, int first_index, int last_index) argument
[all...]
/external/chromium_org/net/quic/
H A Dquic_connection_logger.cc853 const QuicPacketSequenceNumber last_index = local
857 std::min<QuicPacketSequenceNumber>(21, last_index);
865 for (size_t i = 1; i <= last_index; ++i) {
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-uniscribe.cc650 unsigned int last_index = 0; local
655 if (event->index != last_index)
685 range->index_first = last_index;
688 last_index = event->index;
H A Dhb-coretext.cc510 unsigned int last_index = 0; local
515 if (event->index != last_index)
571 range->index_first = last_index;
574 last_index = event->index;
/external/chromium_org/ui/message_center/views/
H A Dmessage_center_view.cc435 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) {
/external/compiler-rt/lib/lsan/
H A Dlsan_common.cc669 uptr last_index = root_regions->size() - 1; local
670 (*root_regions)[i] = (*root_regions)[last_index];
/external/harfbuzz_ng/src/
H A Dhb-uniscribe.cc649 unsigned int last_index = 0; local
654 if (event->index != last_index)
684 range->index_first = last_index;
687 last_index = event->index;
/external/chromium_org/ash/shelf/
H A Dshelf_view_unittest.cc1534 int last_index = test_for_overflow_view.GetLastVisibleIndex(); local
1537 ShelfButton* last_button = test_for_overflow_view.GetButton(last_index);
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dchrome_launcher_controller_unittest.cc134 int last_index() const { return last_index_; } function in class:__anon4990::TestShelfModelObserver
2479 int panel_index = model_observer_->last_index();
2506 EXPECT_EQ(panel_index, model_observer_->last_index());
/external/chromium_org/net/socket/
H A Dssl_client_socket_unittest.cc2148 size_t last_index = ExpectLogContainsSomewhereAfter( local
2164 last_index =
2166 last_index + 1,
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
H A Dos2_table.cc510 void OS2Table::Builder::SetUsLastCharIndex(int32_t last_index) { argument
511 InternalWriteData()->WriteUShort(Offset::kUsLastCharIndex, last_index);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc1827 size_t last_index = (size / sizeof(kAllocationMarkMask)) - 1; local
1828 return static_cast<MarkType*>(ptr) + last_index;

Completed in 6094 milliseconds

12