Searched refs:last (Results 1 - 25 of 1408) 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())
/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/curl/lib/
H A Dstrtok.h28 char *Curl_strtok_r(char *s, const char *delim, char **last);
/external/curl/src/
H A Dslist_wc.c29 /* The last #include files should be: */
53 list->last = new_item;
57 list->last->next = new_item;
58 list->last = list->last->next;
H A Dslist_wc.h28 /* linked-list structure with last node cache for easysrc */
31 struct curl_slist *last; member in struct:slist_wc
H A Dtool_mfiles.c29 struct multi_files **last,
32 DEBUGASSERT(((*first) && (*last)) || ((!*first) && (!*last)));
34 if(*last)
35 (*last)->next = new;
38 *last = new;
47 * multi_last argument is the address of a pointer to the last element
28 AppendNode(struct multi_files **first, struct multi_files **last, struct multi_files *new) argument
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A Dhello-world.cs1 Hello <?cs var:name.first ?> <?cs var:name.last ?>.
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/utils/
H A DOrthoCamController.java26 final Vector3 last = new Vector3(-1, -1, -1); field in class:OrthoCamController
36 if (!(last.x == -1 && last.y == -1 && last.z == -1)) {
37 camera.unproject(delta.set(last.x, last.y, 0));
41 last.set(x, y, 0);
47 last.set(-1, -1, -1);
/external/valgrind/none/tests/amd64-linux/
H A Dmap_32bits.stderr.exp2 last mmap ok: 0x........
H A Dmap_32bits.c10 void *last; local
26 fprintf(stderr, "last mmap ok: %p\n", last);
29 last = res;
/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/curl/tests/unit/
H A Dunit1308.c46 struct curl_httppost* last = NULL; variable in typeref:struct:curl_httppost
50 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
57 fail_unless(post == last, "post and last weren't the same");
59 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
65 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
79 post = last = NULL;
81 rc = curl_formadd(&post, &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
174 parse_floating_number(const char* first, const char* last, C& db) argument
218 parse_source_name(const char* first, const char* last, C& db) argument
260 parse_substitution(const char* first, const char* last, C& db) argument
368 parse_builtin_type(const char* first, const char* last, C& db) argument
517 parse_cv_qualifiers(const char* first, const char* last, unsigned& cv) argument
546 parse_template_param(const char* first, const char* last, C& db) argument
603 parse_const_cast_expr(const char* first, const char* last, C& db) argument
629 parse_dynamic_cast_expr(const char* first, const char* last, C& db) argument
655 parse_reinterpret_cast_expr(const char* first, const char* last, C& db) argument
681 parse_static_cast_expr(const char* first, const char* last, C& db) argument
707 parse_pack_expansion(const char* first, const char* last, C& db) argument
722 parse_sizeof_type_expr(const char* first, const char* last, C& db) argument
742 parse_sizeof_expr_expr(const char* first, const char* last, C& db) argument
762 parse_sizeof_param_pack_expr(const char* first, const char* last, C& db) argument
796 parse_function_param(const char* first, const char* last, C& db) argument
835 parse_sizeof_function_param_pack_expr(const char* first, const char* last, C& db) argument
856 parse_typeid_expr(const char* first, const char* last, C& db) argument
880 parse_throw_expr(const char* first, const char* last, C& db) argument
900 parse_dot_star_expr(const char* first, const char* last, C& db) argument
926 parse_simple_id(const char* first, const char* last, C& db) argument
956 parse_unresolved_type(const char* first, const char* last, C& db) argument
1020 parse_destructor_name(const char* first, const char* last, C& db) argument
1048 parse_base_unresolved_name(const char* first, const char* last, C& db) argument
1107 parse_unresolved_qualifier_level(const char* first, const char* last, C& db) argument
1124 parse_unresolved_name(const char* first, const char* last, C& db) argument
1273 parse_dot_expr(const char* first, const char* last, C& db) argument
1299 parse_call_expr(const char* first, const char* last, C& db) argument
1354 parse_new_expr(const char* first, const char* last, C& db) argument
1476 parse_conversion_expr(const char* first, const char* last, C& db) argument
1543 parse_arrow_expr(const char* first, const char* last, C& db) argument
1573 parse_function_type(const char* first, const char* last, C& db) argument
1661 parse_pointer_to_member_type(const char* first, const char* last, C& db) argument
1698 parse_array_type(const char* first, const char* last, C& db) argument
1762 parse_decltype(const char* first, const char* last, C& db) argument
1795 parse_vector_type(const char* first, const char* last, C& db) argument
1884 parse_type(const char* first, const char* last, C& db) argument
2326 parse_operator_name(const char* first, const char* last, C& db) argument
2626 parse_integer_literal(const char* first, const char* last, const typename C::String& lit, C& db) argument
2657 parse_expr_primary(const char* first, const char* last, C& db) argument
2912 parse_ctor_dtor_name(const char* first, const char* last, C& db) argument
2962 parse_unnamed_type_name(const char* first, const char* last, C& db) argument
3075 parse_unqualified_name(const char* first, const char* last, C& db) argument
3122 parse_unscoped_name(const char* first, const char* last, C& db) argument
3154 parse_alignof_type(const char* first, const char* last, C& db) argument
3174 parse_alignof_expr(const char* first, const char* last, C& db) argument
3192 parse_noexcept_expression(const char* first, const char* last, C& db) argument
3207 parse_prefix_expression(const char* first, const char* last, const typename C::String& op, C& db) argument
3222 parse_binary_expression(const char* first, const char* last, const typename C::String& op, C& db) argument
3292 parse_expression(const char* first, const char* last, C& db) argument
3788 parse_template_arg(const char* first, const char* last, C& db) argument
3841 parse_template_args(const char* first, const char* last, C& db) argument
3905 parse_nested_name(const char* first, const char* last, C& db, bool* ends_with_template_args) argument
4053 parse_discriminator(const char* first, const char* last) argument
4091 parse_local_name(const char* first, const char* last, C& db, bool* ends_with_template_args) argument
4166 parse_name(const char* first, const char* last, C& db, bool* ends_with_template_args) argument
4257 parse_call_offset(const char* first, const char* last) argument
4303 parse_special_name(const char* first, const char* last, C& db) argument
4483 parse_encoding(const char* first, const char* last, C& db) argument
4605 parse_block_invoke(const char* first, const char* last, C& db) argument
4642 parse_dot_suffix(const char* first, const char* last, C& db) argument
4662 demangle(const char* first, const char* last, C& db, int& status) argument
[all...]
/external/libdivsufsort/lib/
H A Dtrsort.c79 tr_insertionsort(const saidx_t *ISAd, saidx_t *first, saidx_t *last) { argument
83 for(a = first + 1; a < last; ++a) {
167 tr_pivot(const saidx_t *ISAd, saidx_t *first, saidx_t *last) { argument
171 t = last - first;
176 return tr_median3(ISAd, first, middle, last - 1);
179 return tr_median5(ISAd, first, first + t, middle, last - 1 - t, last - 1);
185 last = tr_median3(ISAd, last - 1 - (t << 1), last
222 tr_partition(const saidx_t *ISAd, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t **pa, saidx_t **pb, saidx_t v) argument
264 tr_copy(saidx_t *ISA, const saidx_t *SA, saidx_t *first, saidx_t *a, saidx_t *b, saidx_t *last, saidx_t depth) argument
289 tr_partialcopy(saidx_t *ISA, const saidx_t *SA, saidx_t *first, saidx_t *a, saidx_t *b, saidx_t *last, saidx_t depth) argument
327 tr_introsort(saidx_t *ISA, const saidx_t *ISAd, saidx_t *SA, saidx_t *first, saidx_t *last, trbudget_t *budget) argument
557 saidx_t *first, *last; local
[all...]
H A Dsssort.c168 saidx_t *first, saidx_t *last, saidx_t depth) {
173 for(i = last - 2; first <= i; --i) {
175 do { *(j - 1) = *j; } while((++j < last) && (*j < 0));
176 if(last <= j) { break; }
263 ss_pivot(const sauchar_t *Td, const saidx_t *PA, saidx_t *first, saidx_t *last) { argument
267 t = last - first;
272 return ss_median3(Td, PA, first, middle, last - 1);
275 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1);
281 last
167 ss_insertionsort(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *last, saidx_t depth) argument
291 ss_partition(const saidx_t *PA, saidx_t *first, saidx_t *last, saidx_t depth) argument
310 ss_mintrosort(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *last, saidx_t depth) argument
461 ss_rotate(saidx_t *first, saidx_t *middle, saidx_t *last) argument
502 ss_inplacemerge(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t depth) argument
545 ss_mergeforward(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t depth) argument
595 ss_mergebackward(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t depth) argument
654 ss_swapmerge(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t bufsize, saidx_t depth) argument
747 sssort(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *last, saidx_t *buf, saidx_t bufsize, saidx_t depth, saidx_t n, saint_t lastsuffix) 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/framed/
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/libcxx/test/libcxx/utilities/memory/util.smartptr/
H A Drace_condition.pass.cpp63 int last = p.use_count(); local
65 assert(last >= 4);
67 if (last != new_val) ++shared_changes_count;
69 last = w.use_count();
71 assert(last >= 4);
73 if (last != new_val) ++weak_changes_count;
/external/pdfium/third_party/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)) {

Completed in 611 milliseconds

1234567891011>>