Searched refs:it_b (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc474 RowSpanSet::const_iterator it_b = set_b.begin(); local
481 if (it_b == set_b.end() || it_a->right < it_b->left) {
488 while (it_b != set_b.end() && it_b->left < it_a->right) {
489 if (it_b->left > pos)
490 output->push_back(RowSpan(pos, it_b->left));
491 if (it_b->right > pos) {
492 pos = it_b->right;
496 ++it_b;
[all...]
/external/vulkan-validation-layers/layers/
H A Dshader_validation.cpp724 auto it_b = inputs.begin(); local
727 while ((attribs.size() > 0 && it_a != attribs.end()) || (inputs.size() > 0 && it_b != inputs.end())) {
729 bool b_at_end = inputs.size() == 0 || it_b == inputs.end();
731 auto b_first = b_at_end ? 0 : it_b->first.first;
744 it_b++;
747 unsigned input_type = get_fundamental_type(vs, it_b->second.type_id);
754 string_VkFormat(it_a->second->format), a_first, describe_type(vs, it_b->second.type_id).c_str());
759 it_b++;
788 auto it_b = color_attachments.begin(); local
792 while ((outputs.size() > 0 && it_a != outputs.end()) || (color_attachments.size() > 0 && it_b !
[all...]

Completed in 358 milliseconds