HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 1 - 25 of 1729) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/idegen/src/
Stopwatch.java 22 long last = System.currentTimeMillis(); field in class:Stopwatch
26 Log.info(label + ": " + (now - last) + "ms");
27 last = now;
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsrchr.c 35 const wchar_t *last; local
37 last = NULL;
40 last = s;
46 return ((wchar_t *)last);
wcstok.c 42 wchar_t ** __restrict last)
48 if (s == NULL && (s = *last) == NULL)
62 *last = NULL;
80 *last = s;
  /bionic/libc/upstream-openbsd/lib/libc/string/
strtok.c 35 static char *last; local
37 return strtok_r(s, delim, &last);
41 strtok_r(char *s, const char *delim, char **last)
48 if (s == NULL && (s = *last) == NULL)
62 *last = NULL;
80 *last = s;
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_basic_block.h 26 ir_instruction *last,
ir_function_can_inline.cpp 30 * 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/
ir_basic_block.h 26 ir_instruction *last,
ir_function_can_inline.cpp 30 * 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())
  /development/tools/yuv420sp2rgb/
debug.c 9 int i, last; local
13 for (i = last = 0; i < len; i++) {
22 while (last < i) {
23 if (isprint(pchr[last]))
24 fputc(pchr[last], s);
29 last++;
  /external/libexif/test/
test-sorted.c 33 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/
string_util.h 23 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/
string_split.cc 21 size_t last = 0; local
25 std::string tmp(str, last, i - last);
31 last = i + 1;
  /external/oprofile/daemon/
opd_mangling.h 30 int opd_open_sample_file(odb_t *file, struct sfile *last,
opd_mangling.c 69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg)
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,
150 mangled = mangle_filename(last, sf, counter, cg);
161 if (sf != last)
    [all...]
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_indexing.cpp 36 void db_LeanPartitionOnPivot(double pivot,double *dest,const double *source,long first,long last,long *first_equal,long *last_equal)
45 s_top=source+last;
47 d_top=dest+last;
62 long last=nr_elements-1; local
76 for(;last-first>2;)
78 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]);
79 db_LeanPartitionOnPivot(pivot,dest,source,first,last,&first_equal,&last_equal);
81 if(first_equal>pos) last=first_equal-1;
95 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2])
    [all...]
  /external/chromium_org/cc/base/
scoped_ptr_algorithm.h 16 ForwardIterator last,
19 for (; first != last; ++first) {
  /external/oprofile/libregex/tests/
regex_test.cpp 36 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/libcxx/test/algorithms/alg.sorting/alg.min.max/
max_element.pass.cpp 15 // max_element(Iter first, Iter last);
24 test(Iter first, Iter last)
26 Iter i = std::max_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
33 assert(i == last);
max_element_comp.pass.cpp 15 // max_element(Iter first, Iter last, Compare comp);
25 test(Iter first, Iter last)
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);
min_element.pass.cpp 15 // min_element(Iter first, Iter last);
24 test(Iter first, Iter last)
26 Iter i = std::min_element(first, last);
27 if (first != last)
29 for (Iter j = first; j != last; ++j)
33 assert(i == last);
min_element_comp.pass.cpp 15 // min_element(Iter first, Iter last, Compare comp);
25 test(Iter first, Iter last)
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/
cxa_demangle.cpp 37 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)
100 for (; first != last; ++first
    [all...]
  /external/chromium_org/net/websockets/
websocket_net_log_params.cc 18 size_t last = 0; local
25 std::string entry = headers->substr(last, pos - last);
27 last = pos;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-fasta.js 6 var last = 42, A = 3877, C = 29573, M = 139968; variable
9 last = (last * A + C) % M;
10 return max * last / M;
37 var last = null;
39 if (last) table[c] += table[last];
40 last = c;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-fasta.js 6 var last = 42, A = 3877, C = 29573, M = 139968; variable
9 last = (last * A + C) % M;
10 return max * last / M;
37 var last = null;
39 if (last) table[c] += table[last];
40 last = c;

Completed in 2052 milliseconds

1 2 3 4 5 6 7 8 91011>>