Searched refs:last (Results 1 - 25 of 1039) sorted by relevance

1234567891011>>

/external/mesa3d/src/glsl/
H A Dir_basic_block.h26 ir_instruction *last,
H A Dir_function_can_inline.cpp30 * other than as the last instruction. We could potentially work
68 /* If the function is empty (no last instruction) or does not end with a
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local
72 if (last == NULL || !last->as_return())
H A Dopt_redundant_jumps.cpp61 /* If the last instruction in both branches is a 'break' or a 'continue',
102 /* If the last instruction of a loop body is a 'continue', remove it.
104 ir_instruction *const last = local
107 if (last && (last->ir_type == ir_type_loop_jump)
108 && (((ir_loop_jump *) last)->mode == ir_loop_jump::jump_continue)) {
109 last->remove();
/external/valgrind/memcheck/tests/
H A Dsbfragment.stdout.exp1 after 3000 loops, last size block requested 96032008
/external/libexif/test/
H A Dtest-sorted.c33 ExifTag last = 0, current; local
34 num = exif_tag_table_count() - 1; /* last entry is a NULL terminator */
37 if (current < last) {
46 last = current;
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A Dhello-world.cs1 Hello <?cs var:name.first ?> <?cs var:name.last ?>.
/external/google-breakpad/src/common/linux/
H A Dlinux_libc_support_unittest.cc171 const char* last; local
173 last = my_read_hex_ptr(&result, "");
175 ASSERT_EQ(*last, 0);
177 last = my_read_hex_ptr(&result, "0");
179 ASSERT_EQ(*last, 0);
181 last = my_read_hex_ptr(&result, "0123");
183 ASSERT_EQ(*last, 0);
185 last = my_read_hex_ptr(&result, "0123a");
187 ASSERT_EQ(*last, 0);
189 last
196 const char* last; local
[all...]
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
H A Dmax_element.pass.cpp15 // max_element(Iter first, Iter last);
24 test(Iter first, Iter last) argument
26 Iter i = std::max_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
33 assert(i == last);
H A Dmin_element.pass.cpp15 // min_element(Iter first, Iter last);
24 test(Iter first, Iter last) argument
26 Iter i = std::min_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
33 assert(i == last);
H A Dmax_element_comp.pass.cpp15 // max_element(Iter first, Iter last, Compare comp);
25 test(Iter first, Iter last) argument
27 Iter i = std::max_element(first, last, std::greater<int>());
28 if (first != last)
30 for (Iter j = first; j != last; ++j)
34 assert(i == last);
62 void test_eq0(Iter first, Iter last, Pred p) argument
64 assert(first == std::max_element(first, last, p));
H A Dmin_element_comp.pass.cpp15 // min_element(Iter first, Iter last, Compare comp);
25 test(Iter first, Iter last) argument
27 Iter i = std::min_element(first, last, std::greater<int>());
28 if (first != last)
30 for (Iter j = first; j != last; ++j)
34 assert(i == last);
62 void test_eq0(Iter first, Iter last, Pred p) argument
64 assert(first == std::min_element(first, last, p));
H A Dminmax_element.pass.cpp15 // minmax_element(Iter first, Iter last);
24 test(Iter first, Iter last) argument
26 std::pair<Iter, Iter> p = std::minmax_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
37 assert(p.first == last);
38 assert(p.second == last);
/external/libcxx/test/std/experimental/string.view/string.view.iterators/
H A Drbegin.pass.cpp27 const size_t last = s.size() - 1; local
28 assert( *b == s[last]);
29 assert( &*b == &s[last]);
30 assert( *cb1 == s[last]);
31 assert(&*cb1 == &s[last]);
32 assert( *cb2 == s[last]);
33 assert(&*cb2 == &s[last]);
/external/jetty/src/java/org/eclipse/jetty/server/
H A DInclusiveByteRange.java55 long last = 0; field in class:InclusiveByteRange
57 public InclusiveByteRange(long first, long last) argument
60 this.last = last;
70 return last;
102 long last = -1;
114 last = Long.parseLong(t.substring(d + 1).trim());
124 last = Long.parseLong(t.substring(d + 1).trim());
129 if (first == -1 && last == -1)
132 if (first != -1 && last !
[all...]
/external/libcxxabi/src/
H A Dcxa_demangle.cpp37 const char* parse_type(const char* first, const char* last, C& db);
39 const char* parse_encoding(const char* first, const char* last, C& db);
41 const char* parse_name(const char* first, const char* last, C& db,
44 const char* parse_expression(const char* first, const char* last, C& db);
46 const char* parse_template_args(const char* first, const char* last, C& db);
48 const char* parse_operator_name(const char* first, const char* last, C& db);
50 const char* parse_unqualified_name(const char* first, const char* last, C& db);
52 const char* parse_decltype(const char* first, const char* last, C& db);
97 print_state(const char* msg, const char* first, const char* last, const C& db) argument
100 for (; first != last;
109 parse_number(const char* first, const char* last) argument
172 parse_floating_number(const char* first, const char* last, C& db) argument
216 parse_source_name(const char* first, const char* last, C& db) argument
258 parse_substitution(const char* first, const char* last, C& db) argument
366 parse_builtin_type(const char* first, const char* last, C& db) argument
515 parse_cv_qualifiers(const char* first, const char* last, unsigned& cv) argument
544 parse_template_param(const char* first, const char* last, C& db) argument
601 parse_const_cast_expr(const char* first, const char* last, C& db) argument
627 parse_dynamic_cast_expr(const char* first, const char* last, C& db) argument
653 parse_reinterpret_cast_expr(const char* first, const char* last, C& db) argument
679 parse_static_cast_expr(const char* first, const char* last, C& db) argument
705 parse_pack_expansion(const char* first, const char* last, C& db) argument
720 parse_sizeof_type_expr(const char* first, const char* last, C& db) argument
740 parse_sizeof_expr_expr(const char* first, const char* last, C& db) argument
760 parse_sizeof_param_pack_expr(const char* first, const char* last, C& db) argument
794 parse_function_param(const char* first, const char* last, C& db) argument
833 parse_sizeof_function_param_pack_expr(const char* first, const char* last, C& db) argument
854 parse_typeid_expr(const char* first, const char* last, C& db) argument
878 parse_throw_expr(const char* first, const char* last, C& db) argument
898 parse_dot_star_expr(const char* first, const char* last, C& db) argument
924 parse_simple_id(const char* first, const char* last, C& db) argument
954 parse_unresolved_type(const char* first, const char* last, C& db) argument
1018 parse_destructor_name(const char* first, const char* last, C& db) argument
1046 parse_base_unresolved_name(const char* first, const char* last, C& db) argument
1105 parse_unresolved_qualifier_level(const char* first, const char* last, C& db) argument
1122 parse_unresolved_name(const char* first, const char* last, C& db) argument
1271 parse_dot_expr(const char* first, const char* last, C& db) argument
1297 parse_call_expr(const char* first, const char* last, C& db) argument
1352 parse_new_expr(const char* first, const char* last, C& db) argument
1474 parse_conversion_expr(const char* first, const char* last, C& db) argument
1541 parse_arrow_expr(const char* first, const char* last, C& db) argument
1571 parse_function_type(const char* first, const char* last, C& db) argument
1660 parse_pointer_to_member_type(const char* first, const char* last, C& db) argument
1697 parse_array_type(const char* first, const char* last, C& db) argument
1761 parse_decltype(const char* first, const char* last, C& db) argument
1794 parse_vector_type(const char* first, const char* last, C& db) argument
1883 parse_type(const char* first, const char* last, C& db) argument
2322 parse_operator_name(const char* first, const char* last, C& db) argument
2622 parse_integer_literal(const char* first, const char* last, const typename C::String& lit, C& db) argument
2653 parse_expr_primary(const char* first, const char* last, C& db) argument
2908 parse_ctor_dtor_name(const char* first, const char* last, C& db) argument
2958 parse_unnamed_type_name(const char* first, const char* last, C& db) argument
3071 parse_unqualified_name(const char* first, const char* last, C& db) argument
3118 parse_unscoped_name(const char* first, const char* last, C& db) argument
3150 parse_alignof_type(const char* first, const char* last, C& db) argument
3170 parse_alignof_expr(const char* first, const char* last, C& db) argument
3188 parse_noexcept_expression(const char* first, const char* last, C& db) argument
3203 parse_prefix_expression(const char* first, const char* last, const typename C::String& op, C& db) argument
3218 parse_binary_expression(const char* first, const char* last, const typename C::String& op, C& db) argument
3288 parse_expression(const char* first, const char* last, C& db) argument
3784 parse_template_arg(const char* first, const char* last, C& db) argument
3837 parse_template_args(const char* first, const char* last, C& db) argument
3901 parse_nested_name(const char* first, const char* last, C& db, bool* ends_with_template_args) argument
4049 parse_discriminator(const char* first, const char* last) argument
4087 parse_local_name(const char* first, const char* last, C& db, bool* ends_with_template_args) argument
4162 parse_name(const char* first, const char* last, C& db, bool* ends_with_template_args) argument
4253 parse_call_offset(const char* first, const char* last) argument
4299 parse_special_name(const char* first, const char* last, C& db) argument
4479 parse_encoding(const char* first, const char* last, C& db) argument
4601 parse_block_invoke(const char* first, const char* last, C& db) argument
4638 parse_dot_suffix(const char* first, const char* last, C& db) argument
4658 demangle(const char* first, const char* last, C& db, int& status) argument
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeRandom.hpp58 void choose (InputIter first, InputIter last, OutputIter result, int numItems);
61 T choose (InputIter first, InputIter last);
65 T chooseWeighted (InputIter first, InputIter last, WeightIter weight);
68 void shuffle (Iterator first, Iterator last);
103 void Random::choose (InputIter first, InputIter last, OutputIter result, int numItems) argument
110 for (ndx = 0; first != last; ++first, ++ndx)
126 T Random::choose (InputIter first, InputIter last) argument
129 DE_ASSERT(first != last);
130 choose(first, last, &val, 1);
135 T Random::chooseWeighted (InputIter first, InputIter last, WeightIte argument
166 shuffle(Iterator first, Iterator last) argument
[all...]
/external/doclava/res/assets/templates/
H A Djd_lists.cs6 tags:[<?cs var:page.tags ?>], type:"<?cs var:page.type ?>" }<?cs if:!last(page) ?>,<?cs /if ?><?cs
H A Dlists.cs3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DPushObserver.java52 * The response headers corresponding to a pushed request. When {@code last}
57 * @param last when true, there is no response data.
59 boolean onHeaders(int streamId, List<Header> responseHeaders, boolean last); argument
68 * @param last when true, there are no data frames to follow.
70 boolean onData(int streamId, BufferedSource source, int byteCount, boolean last) argument
82 @Override public boolean onHeaders(int streamId, List<Header> responseHeaders, boolean last) {
87 boolean last) throws IOException {
/external/toybox/toys/lsb/
H A Dseq.c1 /* seq.c - Count from first to last, by increment.
14 usage: seq [-f fmt_str] [-s sep_str] [first] [increment] last
16 Count from first to last, by increment. Omitted arguments default
17 to 1. Two arguments are used as first and last. Arguments can be
34 double first, increment, last, dd; local
45 default: last = atof(toys.optargs[toys.optc-1]);
53 for (dd=first; (increment>0 && dd<=last) || (increment<0 && dd>=last);
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_shorten_path.h43 vertex_type& last = vs[n]; local
45 FX_FLOAT x = prev.x + (last.x - prev.x) * d;
46 FX_FLOAT y = prev.y + (last.y - prev.y) * d;
47 last.x = x;
48 last.y = y;
49 if(!prev(last)) {
/external/skia/src/core/
H A DSkDeque.cpp118 Block* last = fBackBlock; local
121 if (NULL == last->fBegin) {
123 last->fBegin = last->start();
124 end = last->fBegin + fElemSize;
126 end = last->fEnd + fElemSize;
127 if (end > last->fStop) { // no more room in this chunk
129 last = this->allocateBlock(fAllocCount);
130 last->fPrev = fBackBlock;
131 fBackBlock->fNext = last;
189 Block* last = fBackBlock; local
[all...]
/external/v8/test/mjsunit/
H A Dcyrillic.js36 last: "\u044f", // ya
51 last: "\u03c9", // omega
71 var last = lc ? chars.last : chars.LAST;
74 var last_other_case = lc ? chars.LAST : chars.last;
76 assertTrue(Range(first, last).test(first), 1);
77 assertTrue(Range(first, last).test(middle), 2);
78 assertTrue(Range(first, last).test(last), 3);
80 assertFalse(Range(first, last)
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DVisitor.java64 Object last = null;
71 doBetween(c, last, item);
73 doAt(last=item);
75 doAfter(c, last);
86 Object last = null;
96 cpr = last == cpr0 ? cpr1 : cpr0; // make sure we don't override last
105 doBetween(c, last, item);
107 doAt(last = item);
109 doAfter(c, last);
[all...]
/external/bison/examples/calc++/
H A Dlocation.hh163 position last = loc.end - 1; local
165 if (last.filename
167 || *loc.begin.filename != *last.filename))
168 ostr << '-' << last; local
169 else if (loc.begin.line != last.line)
170 ostr << '-' << last.line << '.' << last.column;
171 else if (loc.begin.column != last.column)
172 ostr << '-' << last.column;

Completed in 1751 milliseconds

1234567891011>>