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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
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/libxml/src/
dbgen.pl 27 $last = $lastnames [($i / 10) % 10];
34 printf " <lastname>$last</lastname>\n", $i;
dbgenattr.pl 27 $last = $lastnames [($i / 10) % 10];
34 printf " lastname='$last'\n", $i;
  /external/deqp/framework/delibs/decpp/
deRandom.hpp 58 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)
110 for (ndx = 0; first != last; ++first, ++ndx)
126 T Random::choose (InputIter first, InputIter last)
129 DE_ASSERT(first != last);
130 choose(first, last, &val, 1);
135 T Random::chooseWeighted (InputIter first, InputIter last, WeightIter weight
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
PushObserver.java 42 * 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);
58 * @param last when true, there are no data frames to follow.
60 boolean onData(int streamId, BufferedSource source, int byteCount, boolean last)
72 @Override public boolean onHeaders(int streamId, List<Header> responseHeaders, boolean last) {
77 boolean last) throws IOException {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLFace.java 51 int last = mVertexList.size() - 1; local
52 if (last < 2) {
55 GLVertex vertex = mVertexList.get(last);
61 mVertexList.remove(last + 1);
62 vertex = mVertexList.get(last);
77 int last = mVertexList.size() - 1; local
80 GLVertex vn = mVertexList.get(last);
83 for (int i = 1; i < last; i++) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
sce4.asm 4 [savexmm128 xmm7, 16*64*1024-16]; last smaller-sized
5 [savereg rsi, 8*64*1024-8] ; last smaller-sized
10 [allocstack 128] ; last smaller-sized
23 [allocstack 8*64*1024-8] ; last medium-sized
  /external/chromium_org/chrome/browser/sync_file_system/
file_change.cc 53 FileChange& last = list_.back(); local
54 if (last.IsFile() != new_change.IsFile()) {
59 if (last.change() == new_change.change())
63 if (!last.IsFile() && last.IsAddOrUpdate() && new_change.IsDelete()) {
70 last = new_change;
  /external/libcxx/test/algorithms/alg.sorting/alg.min.max/
minmax_element.pass.cpp 15 // minmax_element(Iter first, Iter last);
24 test(Iter first, Iter last)
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/chromium_org/third_party/skia/src/core/
SkDeque.cpp 118 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/chromium_org/sandbox/linux/seccomp-bpf/
syscall_iterator_unittest.cc 26 for (uint32_t last = next; !iter.Done(); last = next) {
28 SANDBOX_ASSERT(last < next);
30 // The iterator should always return 0xFFFFFFFFu as the last value.
47 for (uint32_t last = next; next < MAX_PUBLIC_SYSCALL + 1; last = next) {
48 SANDBOX_ASSERT((next = iter.Next()) == last + 1);
63 for (uint32_t last = next; next < MAX_PUBLIC_SYSCALL + 1; last = next) {
64 SANDBOX_ASSERT((next = iter.Next()) == last + 1)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
rjsmin.py 123 first, last, result = None, None, []
125 if last is None:
126 first = last = char
127 elif last + 1 == char:
128 last = char
130 result.append((first, last))
131 first = last = char
132 if last is not None:
133 result.append((first, last))
136 last > first + 1 and '-' or ''
    [all...]
  /art/runtime/
monitor_pool.cc 71 Monitor* last = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(chunk) + local
73 last->next_free_ = nullptr;
75 last->monitor_id_ = OffsetToMonitorId((num_chunks_ - 1) * kChunkSize +
78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) -
80 before->next_free_ = last;
81 // Derive monitor_id from last.
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) -
85 last = before;
87 DCHECK(last == reinterpret_cast<Monitor*>(chunk));
88 first_free_ = last;
    [all...]
  /external/bison/examples/calc++/
location.hh 163 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;
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_log_browsertest.cc 48 scoped_refptr<Action> last = i->front(); local
50 ASSERT_EQ(extension_id, last->extension_id());
51 ASSERT_EQ(Action::ACTION_CONTENT_SCRIPT, last->action_type());
53 ActivityLogPolicy::Util::Serialize(last->args()));
56 last->SerializePageUrl());
59 last->page_title());
61 ActivityLogPolicy::Util::Serialize(last->other()));
62 ASSERT_EQ("", last->api_name());
63 ASSERT_EQ("", last->SerializeArgUrl());
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelectorList.h 75 // End of a multipart selector is indicated by m_isLastInTagHistory bit in the last item.
76 // End of the array is indicated by m_isLastInSelectorList bit in the last item.
83 const CSSSelector* last = &current; local
84 while (!last->isLastInTagHistory())
85 last++;
86 return last->isLastInSelectorList() ? 0 : last + 1;
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_redundant_jumps.cpp 61 /* 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/chromium_org/third_party/mesa/src/src/mesa/program/
sampler.cpp 42 get_sampler_name(ir_dereference *last,
49 this->last = last;
90 if (ir != last) {
102 ir_dereference *last; member in class:get_sampler_name
  /external/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/Android.mk
19 test_name := strings/basic.string/string.ops/string_find.last.not.of/string_size
23 test_name := strings/basic.string/string.ops/string_find.last.not.of/pointer_size
27 test_name := strings/basic.string/string.ops/string_find.last.not.of/pointer_size_size
31 test_name := strings/basic.string/string.ops/string_find.last.not.of/char_size
  /external/libcxx/test/strings/basic.string/string.ops/string_find.last.of/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.ops/string_find.last.of/Android.mk
19 test_name := strings/basic.string/string.ops/string_find.last.of/string_size
23 test_name := strings/basic.string/string.ops/string_find.last.of/pointer_size
27 test_name := strings/basic.string/string.ops/string_find.last.of/pointer_size_size
31 test_name := strings/basic.string/string.ops/string_find.last.of/char_size
  /external/mesa3d/src/glsl/
opt_redundant_jumps.cpp 61 /* 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/mesa3d/src/mesa/program/
sampler.cpp 42 get_sampler_name(ir_dereference *last,
49 this->last = last;
90 if (ir != last) {
102 ir_dereference *last; member in class:get_sampler_name
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
InsnList.java 63 * The last instruction in this list. May be <tt>null</tt>.
65 private AbstractInsnNode last; field in class:InsnList
93 * Returns the last instruction in this list.
95 * @return the last instruction in this list, or <tt>null</tt> if the list
99 return last;
230 last = insn;
264 if (last == null) {
266 last = insn;
268 last.next = insn;
269 insn.prev = last;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/plugins/
PluginListBuilder.cpp 52 m_results->last().mimes.append(info);
57 MimeClassInfo& info = m_results->last().mimes.last();
  /external/opencv/cv/src/
_cvkdtree.hpp 84 int dimension_of_highest_variance(__instype * first, __instype * last,
86 assert(last - first > 0);
92 for (__instype * k = first; k < last; ++k)
94 mean /= last - first;
96 for (__instype * k = first; k < last; ++k) {
100 var /= last - first;
113 // given point indices and dimension, find index of median; (almost) modifies [first,last)
114 // such that points_in[first,median]<=point[median], points_in(median,last)>point[median].
117 __instype * median_partition(__instype * first, __instype * last,
119 assert(last - first > 0)
    [all...]

Completed in 515 milliseconds

12 3 4 5 6 7 8 91011>>