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

1234567891011>>

/external/chromium_org/third_party/mesa/src/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())
/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())
/external/valgrind/main/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/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dstring_util.h23 size_t last = 0; local
27 std::string tmp(str, last, i - last);
32 last = i + 1;
/external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
H A Dstring_split.cc21 size_t last = 0; local
25 std::string tmp(str, last, i - last);
31 last = i + 1;
/external/oprofile/daemon/
H A Dopd_mangling.h30 int opd_open_sample_file(odb_t *file, struct sfile *last,
H A Dopd_mangling.c69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg) argument
109 if (last->kernel) {
110 values.cg_image_name = last->kernel->name;
111 } else if (last->anon) {
113 values.cg_image_name = mangle_anon(last->anon);
114 values.anon_name = last->anon->name;
116 values.cg_image_name = find_cookie(last->cookie);
141 int opd_open_sample_file(odb_t *file, struct sfile *last, argument
150 mangled = mangle_filename(last, sf, counter, cg);
161 if (sf != last)
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A Dhello-world.cs1 Hello <?cs var:name.first ?> <?cs var:name.last ?>.
/external/oprofile/libregex/tests/
H A Dregex_test.cpp36 string test, expect, last; local
38 while (getline(fin, last)) {
39 last = trim(last);
40 if (last.length() == 0 || last[0] == '#')
44 test = last;
47 expect = last;
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_qsort.c110 typedef struct { char * first; char * last; } stack_entry; member in struct:__anon29425
111 #define pushLeft {stack[stacktop].first=ffirst;stack[stacktop++].last=last;}
112 #define pushRight {stack[stacktop].first=first;stack[stacktop++].last=llast;}
113 #define doLeft {first=ffirst;llast=last;continue;}
114 #define doRight {ffirst=first;last=llast;continue;}
117 last=llast=stack[stacktop].last;\
133 * 3. We choose a pivot by looking at the first, last
187 { size_t l=last
282 pivot_big(char *first, char *mid, char *last, size_t size, int compare(const void *, const void *)) argument
325 char *first,*last; local
356 char *first,*last; local
387 char *first,*last; local
[all...]
/external/libcxx/test/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 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);
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 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);
/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/chromium_org/net/websockets/
H A Dwebsocket_net_log_params.cc18 size_t last = 0; local
25 std::string entry = headers->substr(last, pos - last);
27 last = pos;
/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.java42 * The response headers corresponding to a pushed request. When {@code last}
47 * @param last when true, there is no response data.
49 boolean onHeaders(int streamId, List<Header> responseHeaders, boolean last); argument
58 * @param last when true, there are no data frames to follow.
60 boolean onData(int streamId, BufferedSource source, int byteCount, boolean last) argument
72 @Override public boolean onHeaders(int streamId, List<Header> responseHeaders, boolean last) {
77 boolean last) throws IOException {
/external/chromium_org/cc/base/
H A Dscoped_ptr_algorithm.h16 ForwardIterator last,
19 for (; first != last; ++first) {
13 remove_if( ScopedContainer* container, ForwardIterator first, ForwardIterator last, Predicate predicate) argument
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
H A Dutilities.js60 var last = this.display[this.display.length - 1];
62 accumulator: last && last[0] || null,
63 operator: last && last[1] || null,
64 operand: last && last[2] || null
211 * adjust the last expected value array by setting only its accumulator value.
229 * of the last expected value array is set and changed as described in the
319 var last
[all...]

Completed in 426 milliseconds

1234567891011>>