Searched refs:last (Results 101 - 125 of 1636) sorted by relevance

1234567891011>>

/external/libcxx/test/algorithms/alg.sorting/alg.binary.search/equal.range/
H A Dequal_range_comp.pass.cpp16 // equal_range(Iter first, Iter last, const T& value, Compare comp);
27 test(Iter first, Iter last, const T& value) argument
29 std::pair<Iter, Iter> i = std::equal_range(first, last, value, std::greater<int>());
32 for (Iter j = i.first; j != last; ++j)
36 for (Iter j = i.second; j != last; ++j)
/external/oprofile/libpp/
H A Dsymbol_sort.h30 last enumerator in enum:sort_options::sort_order
/external/skia/src/pathops/
H A DSkPathOpsOp.cpp22 if (const SkOpAngle* last = segment->activeAngle(*tIndex, tIndex, endIndex, &done,
24 if (last->unorderable()) {
27 *tIndex = last->start();
28 *endIndex = last->end();
34 return last->segment();
204 SkOpSpan* last = current->markAndChaseDoneBinary(index, endIndex); local
205 if (last && !last->fChased && !last->fLoop) {
206 last
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_methods.c107 struct eap_method *m, *last = NULL; local
118 last = m;
121 if (last)
122 last->next = method;
/external/bison/src/
H A DSbitset.c55 Sbitset last = self + Sbitset__nbytes (nbits) - 1; local
56 for (; self < last; ++self)
59 return ((*last) & Sbitset__last_byte_mask (nbits)) == 0;
/external/chromium_org/ppapi/tests/
H A Dtest_trace_event.cc56 int64_t last = interface_->Now(); local
60 ASSERT_LE(last, next);
61 last = next;
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DSizesCalcParser.cpp51 if (!stack.isEmpty() && stack.last().type() == DelimiterToken) {
52 if (!operatorPriority(stack.last().delimiter(), stackOperatorPriority))
55 appendOperator(stack.last());
121 while (!stack.isEmpty() && stack.last().type() != LeftParenthesisToken && stack.last().type() != FunctionToken) {
122 appendOperator(stack.last());
154 MediaQueryTokenType type = stack.last().type();
158 appendOperator(stack.last());
168 SizesCalcValue rightOperand = stack.last();
170 SizesCalcValue leftOperand = stack.last();
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStreamBuffer.h62 if (!m_buffer.size() || m_buffer.last()->size() == BlockSize)
64 size_t appendSize = std::min(BlockSize - m_buffer.last()->size(), size);
65 m_buffer.last()->append(data, appendSize);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dqueue.cpp52 auto last = std::find_if(queued_events.begin(), queued_events.end(), local
57 std::for_each(first, last, [&](event_ptr &ev) { ev->fence(fence); });
59 queued_events.erase(first, last);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_channel_expressions.cpp277 ir_expression *last = NULL; local
287 if (last) {
288 last = new(mem_ctx) ir_expression(ir_binop_add,
291 last);
293 last = temp;
296 assign(ir, 0, last);
309 ir_expression *last = NULL; local
325 if (last) {
326 last = new(mem_ctx) ir_expression(join,
329 last);
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dmake_unicode_groups.py33 last = -100
35 if c == last+1:
39 last = c
/external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/
H A Dlower_bound.pass.cpp15 // lower_bound(Iter first, Iter last, const T& value);
25 test(Iter first, Iter last, const T& value) argument
27 Iter i = std::lower_bound(first, last, value);
30 for (Iter j = i; j != last; ++j)
H A Dlower_bound_comp.pass.cpp15 // lower_bound(Iter first, Iter last, const T& value);
26 test(Iter first, Iter last, const T& value) argument
28 Iter i = std::lower_bound(first, last, value, std::greater<int>());
31 for (Iter j = i; j != last; ++j)
/external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/
H A Dupper_bound.pass.cpp15 // upper_bound(Iter first, Iter last, const T& value);
25 test(Iter first, Iter last, const T& value) argument
27 Iter i = std::upper_bound(first, last, value);
30 for (Iter j = i; j != last; ++j)
H A Dupper_bound_comp.pass.cpp15 // upper_bound(Iter first, Iter last, const T& value, Compare comp);
26 test(Iter first, Iter last, const T& value) argument
28 Iter i = std::upper_bound(first, last, value, std::greater<int>());
31 for (Iter j = i; j != last; ++j)
/external/libcxx/test/containers/sequences/vector.bool/
H A Dconstruct_iter_iter.pass.cpp13 // template <class InputIter> vector(InputIter first, InputIter last);
23 test(Iterator first, Iterator last) argument
25 C c(first, last);
27 assert(c.size() == std::distance(first, last));
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dqueue.cpp52 auto last = std::find_if(queued_events.begin(), queued_events.end(), local
57 std::for_each(first, last, [&](event_ptr &ev) { ev->fence(fence); });
59 queued_events.erase(first, last);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_channel_expressions.cpp277 ir_expression *last = NULL; local
287 if (last) {
288 last = new(mem_ctx) ir_expression(ir_binop_add,
291 last);
293 last = temp;
296 assign(ir, 0, last);
309 ir_expression *last = NULL; local
325 if (last) {
326 last = new(mem_ctx) ir_expression(join,
329 last);
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DTwoSecondIntersectionFinder.java74 long last = samples + 1;
78 fragments[i] = last ;
80 last = fragments[i];
/external/regex-re2/re2/
H A Dmake_unicode_groups.py33 last = -100
35 if c == last+1:
39 last = c
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRootInlineBox.cpp219 SVGTextLayoutAttributes*& first, SVGTextLayoutAttributes*& last)
222 last = 0;
229 if (!last && lastContext == current->context())
230 last = current;
231 if (first && last)
236 ASSERT(last);
239 static inline void reverseInlineBoxRangeAndValueListsIfNeeded(void* userData, Vector<InlineBox*>::iterator first, Vector<InlineBox*>::iterator last) argument
244 // This is a copy of std::reverse(first, last). It additionally assures that the metrics map within the renderers belonging to the InlineBoxes are reordered as well.
246 if (first == last || first == --last)
218 findFirstAndLastAttributesInVector(Vector<SVGTextLayoutAttributes*>& attributes, RenderSVGInlineText* firstContext, RenderSVGInlineText* lastContext, SVGTextLayoutAttributes*& first, SVGTextLayoutAttributes*& last) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_h264_unittest.cc97 bool last = false; local
100 ASSERT_TRUE(packetizer->NextPacket(packet.get(), &length, &last));
102 EXPECT_EQ(i == expected_sizes.size() - 1, last) << "FUA index: " << i;
106 EXPECT_FALSE(packetizer->NextPacket(packet.get(), &length, &last));
170 bool last = false;
171 ASSERT_TRUE(packetizer->NextPacket(packet, &length, &last));
173 EXPECT_TRUE(last);
176 EXPECT_FALSE(packetizer->NextPacket(packet, &length, &last));
200 bool last = false; local
201 ASSERT_TRUE(packetizer->NextPacket(packet, &length, &last));
237 bool last = false; local
272 bool last = false; local
324 bool last = false; local
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dedit.c178 struct edit_history *h, *match = NULL, *last = NULL; local
189 last = h;
200 if (count >= HISTORY_MAX && last) {
201 dl_list_del(&last->list);
202 os_free(last);
561 static enum edit_key_code esc_seq_to_key1_no(char last) argument
563 switch (last) {
578 static enum edit_key_code esc_seq_to_key1_shift(char last) argument
580 switch (last) {
595 static enum edit_key_code esc_seq_to_key1_alt(char last) argument
612 esc_seq_to_key1_alt_shift(char last) argument
629 esc_seq_to_key1_ctrl(char last) argument
646 esc_seq_to_key1(int param1, int param2, char last) argument
700 esc_seq_to_key2(int param1, int param2, char last) argument
728 char last, *pos; local
[all...]

Completed in 3246 milliseconds

1234567891011>>