HomeSort by relevance Sort by last modified time
    Searched refs:current (Results 201 - 225 of 2904) sorted by null

1 2 3 4 5 6 7 891011>>

  /art/compiler/optimizing/
register_allocator.cc 72 // Always reserve for the current method and the graph's max out registers.
110 HBasicBlock* block = it.Current();
112 HInstruction* instruction = inst_it.Current();
119 HInstruction* instruction = inst_it.Current();
154 HBasicBlock* block = it.Current();
157 ProcessInstruction(back_it.Current());
160 ProcessInstruction(inst_it.Current());
173 // can be after the current interval during linear scan.
193 // can be after the current interval during linear scan.
303 LiveInterval* current = instruction->GetLiveInterval() local
485 LiveInterval* current = it.CurrentInterval(); local
581 LiveInterval* current = unhandled_->Pop(); local
1086 LiveInterval* current = array->Get(i - 1); local
1489 LiveInterval* current = interval; local
1670 LiveInterval* current = instruction->GetLiveInterval(); local
1748 HInstruction* current = liveness_.GetInstructionFromSsaIndex(idx); local
1758 HBasicBlock* current = it.Current(); local
    [all...]
ssa_liveness_analysis.cc 50 HBasicBlock* current = worklist->Get(insert_at - 1); local
51 HLoopInformation* current_loop = current->GetLoopInformation();
69 // current reverse post order in the graph, but it would require making
75 HBasicBlock* block = it.Current();
90 HBasicBlock* current = worklist.Pop(); local
91 graph_->linear_order_.Add(current);
92 for (size_t i = 0, e = current->GetSuccessors().Size(); i < e; ++i) {
93 HBasicBlock* successor = current->GetSuccessors().Get(i);
117 HBasicBlock* block = it.Current();
121 HInstruction* current = inst_it.Current() local
139 HInstruction* current = inst_it.Current(); local
205 HInstruction* current = instructions_from_ssa_index_.Get(idx); local
211 HInstruction* current = back_it.Current(); local
254 HInstruction* current = inst_it.Current(); local
270 HInstruction* current = instructions_from_ssa_index_.Get(idx); local
515 LiveInterval* current = this; local
    [all...]
  /frameworks/base/libs/hwui/
Extensions.cpp 108 const char* current = extensions; local
109 const char* head = current;
112 head = strchr(current, ' ');
113 String8 s(current, head ? head - current : strlen(current));
118 current = head + 1;
  /libcore/luni/src/main/java/java/sql/
SQLException.java 237 private SQLException current; field in class:SQLException.InternalIterator
240 current = e;
244 return current != null;
248 if (current == null) {
251 SQLException ret = current;
252 current = current.next;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary_utils.cpp 33 std::vector<DicNode> current; local
41 current.emplace_back();
42 DicNodeUtils::initAsRoot(dictionaryStructurePolicy, prevWordIds, &current.front());
46 for (const DicNode &dicNode : current) {
54 current.clear();
55 current.swap(next);
59 for (const DicNode &dicNode : current) {
  /external/ceres-solver/internal/ceres/
line_search_direction.cc 44 const LineSearchMinimizer::State& current,
46 *search_direction = -current.gradient;
60 const LineSearchMinimizer::State& current,
66 beta = current.gradient_squared_norm / previous.gradient_squared_norm;
69 gradient_change = current.gradient - previous.gradient;
70 beta = (current.gradient.dot(gradient_change) /
74 gradient_change = current.gradient - previous.gradient;
75 beta = (current.gradient.dot(gradient_change) /
82 *search_direction = -current.gradient + beta * previous.search_direction;
84 current.gradient.dot(*search_direction)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryBreakEngine.java 29 private int current; // The candidate we're currently looking at field in class:DictionaryBreakEngine.PossibleWord
52 current = count[0] - 1;
53 mark = current;
63 // Backup from the current candidate to the next shorter one; return true if that exists
66 if (current > 0) {
67 fIter.setIndex(offset + lengths[--current]);
78 // Mark the current candidate as the one we like
80 mark = current;
176 // The span to break begins at the current position int the text, and
180 int current; local
    [all...]
  /external/v8/src/compiler/
generic-algorithm.h 34 // Control Pre(Traits::Node* current);
35 // Control Post(Traits::Node* current);
49 Node* current = *root_begin; local
51 DCHECK(current != NULL);
52 const int id = current->id();
57 Control control = visitor->Pre(current);
61 Iterator begin(visit ? Traits::begin(current) : Traits::end(current));
62 Iterator end(Traits::end(current));
64 Node* post_order_node = current;
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonEvent.java 204 int current = 0; local
209 if (rawEvent.charAt(current) == '\"') {
211 current++;
213 while (current < length) {
216 wordEnd = current;
225 String word = rawEvent.substring(current, wordEnd);
226 current += word.length();
230 current++; // skip the trailing quote
240 int nextSpace = rawEvent.indexOf(' ', current);
241 int nextQuote = rawEvent.indexOf(" \"", current);
    [all...]
  /external/junit/src/org/junit/internal/runners/
TestClass.java 68 private boolean isShadowed(Method current, Method previous) {
69 if (! previous.getName().equals(current.getName()))
71 if (previous.getParameterTypes().length != current.getParameterTypes().length)
74 if (! previous.getParameterTypes()[i].equals(current.getParameterTypes()[i]))
82 Class<?> current= testClass; local
83 while (current != null) {
84 results.add(current);
85 current= current.getSuperclass();
  /external/apache-http/src/org/apache/http/message/
BasicListHeaderIterator.java 162 final int current = this.currentIndex; local
163 if (current < 0) {
167 this.lastIndex = current;
168 this.currentIndex = findNext(current);
170 return (Header) this.allHeaders.get(current);
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestManagerRetriever.java 163 RequestManagerFragment current = (RequestManagerFragment) fm.findFragmentByTag(TAG); local
164 if (current == null) {
165 current = pendingRequestManagerFragments.get(fm);
166 if (current == null) {
167 current = new RequestManagerFragment();
168 pendingRequestManagerFragments.put(fm, current);
169 fm.beginTransaction().add(current, TAG).commitAllowingStateLoss();
173 RequestManager requestManager = current.getRequestManager();
175 requestManager = new RequestManager(context, current.getLifecycle());
176 current.setRequestManager(requestManager)
183 SupportRequestManagerFragment current = (SupportRequestManagerFragment) fm.findFragmentByTag(TAG); local
    [all...]
  /external/skia/experimental/AndroidPathRenderer/
AndroidPathRenderer.cpp 123 const Vertex* current = &(perimeter[0]); local
125 lastNormal.set(current->position[1] - last->position[1],
126 last->position[0] - current->position[0]);
131 nextNormal.set(next->position[1] - current->position[1],
132 current->position[0] - next->position[0]);
139 current->position[0] + totalOffset.fX,
140 current->position[1] + totalOffset.fY);
143 current->position[0] - totalOffset.fX,
144 current->position[1] - totalOffset.fY);
146 last = current;
161 const Vertex* current = &(vertices[0]); local
214 const Vertex* current = &(perimeter[0]); local
291 const Vertex* current = &(vertices[1]); local
449 const Vertex* current = &(perimeter[0]); local
    [all...]
  /system/extras/showmap/
showmap.c 127 mapinfo *current = *head; local
134 if (current && coalesce_by_name && !strcmp(map->name, current->name)) {
135 current->size += map->size;
136 current->rss += map->rss;
137 current->pss += map->pss;
138 current->shared_clean += map->shared_clean;
139 current->shared_dirty += map->shared_dirty;
140 current->private_clean += map->private_clean;
141 current->private_dirty += map->private_dirty
169 mapinfo *current = NULL; local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Huffman.java 90 long current = 0; local
98 current <<= nbits;
99 current |= code;
104 out.write(((int) (current >> n)));
109 current <<= (8 - n);
110 current |= (0xFF >>> n);
111 out.write((int) current);
129 int current = 0; local
133 current = (current << 8) | b
173 Node current = root; local
    [all...]
  /external/v8/src/
interface.cc 27 // Current nesting depth for debug output.
32 static int current() { return current_; } function in class:v8::internal::Nesting
48 PrintF("%*s# Adding...\n", Nesting::current(), "");
49 PrintF("%*sthis = ", Nesting::current(), "");
50 this->Print(Nesting::current());
52 PrintF("%*s%.*s : ", Nesting::current(), "", symbol->length(),
54 interface->Print(Nesting::current());
83 PrintF("%*sthis' = ", Nesting::current(), "");
84 this->Print(Nesting::current());
85 PrintF("%*s# Added.\n", Nesting::current(), "");
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
DeviceDiscoveryAction.java 249 DeviceInfo current = mDevices.get(mProcessedDeviceCount);
250 if (current.mLogicalAddress != cmd.getSource()) {
251 Slog.w(TAG, "Unmatched address[expected:" + current.mLogicalAddress + ", actual:" +
257 current.mPhysicalAddress = HdmiUtils.twoBytesToInt(params);
258 current.mPortId = getPortId(current.mPhysicalAddress);
259 current.mDeviceType = params[2] & 0xFF;
261 tv().updateCecSwitchInfo(current.mLogicalAddress, current.mDeviceType,
262 current.mPhysicalAddress)
    [all...]
ActiveSourceHandler.java 80 // TV is in a mode that should keep its current source/input from
82 // or switch the port back to the one used for the current mode.
83 ActiveSource current = tv.getActiveSource(); local
84 if (current.logicalAddress == getSourceAddress()) {
86 current.logicalAddress, current.physicalAddress);
88 tv.updateActiveSource(current);
91 tv.startRoutingControl(newActive.physicalAddress, current.physicalAddress, true,
  /external/clang/tools/clang-format/
clang-format.py 13 # format the current line in NORMAL and INSERT mode or the selected region in
17 # It operates on the current, potentially unsaved buffer and does not create
41 # Get the current text.
42 buf = vim.current.buffer
46 lines = '%s:%s' % (vim.current.range.start + 1, vim.current.range.end + 1)
65 if vim.current.buffer.name:
66 command.extend(['-assume-filename', vim.current.buffer.name])
83 sequence = difflib.SequenceMatcher(None, vim.current.buffer, lines)
86 vim.current.buffer[op[1]:op[2]] = lines[op[3]:op[4]
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
DrawableCrossFadeViewAnimation.java 30 * Animates from the previous drawable to the current drawable in one of two ways.
38 * @param current {@inheritDoc}
43 public boolean animate(T current, ViewAdapter adapter) {
46 TransitionDrawable transitionDrawable = new TransitionDrawable(new Drawable[] { previous, current });
52 defaultAnimation.animate(current, adapter);
  /external/iputils/
tftpsubs.c 40 server. Written originally with multiple buffers in mind, but current
72 static int current; /* index of buffer in use */ variable
90 current = 0;
97 /* Have emptied current buffer by sending to net and getting ack.
104 bfs[current].counter = BF_FREE; /* free old one */
105 current = !current; /* "incr" current */
107 b = &bfs[current]; /* look at new buffer */
169 bfs[current].counter = ct; /* set size of data to write *
    [all...]
  /external/selinux/libsepol/cil/src/
cil_resolve_ast.c 147 int cil_resolve_classperms(struct cil_tree_node *current, struct cil_classperms *cp, void *extra_args)
154 rc = cil_resolve_name(current, cp->class_str, CIL_SYM_CLASSES, extra_args, &datum);
178 int cil_resolve_classperms_set(struct cil_tree_node *current, struct cil_classperms_set *cp_set, void *extra_args)
183 rc = cil_resolve_name(current, cp_set->set_str, CIL_SYM_CLASSPERMSETS, extra_args, &datum);
191 rc = cil_resolve_classperms_list(current, cp_set->set->classperms, extra_args);
203 int cil_resolve_classperms_list(struct cil_tree_node *current, struct cil_list *cp_list, void *extra_args)
210 rc = cil_resolve_classperms(current, curr->data, extra_args);
215 rc = cil_resolve_classperms_set(current, curr->data, extra_args);
228 int cil_resolve_classpermissionset(struct cil_tree_node *current, struct cil_classpermissionset *cps, void *extra_args)
236 rc = cil_resolve_name(current, cps->set_str, CIL_SYM_CLASSPERMSETS, args, &datum)
3646 char *current = strtok_r(name_dup, ".", &sp); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 84 IToken current = ( (ITokenStream)input ).LT( 1 );
85 if ( current.Type == TokenTypes.EndOfFile )
87 current = ( (ITokenStream)input ).LT( -1 );
89 t.Line = current.Line;
90 t.CharPositionInLine = current.CharPositionInLine;
92 t.InputStream = current.InputStream;
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 80 * Gets the current value.
82 * @return the current value
123 * if the current value is <a href="#bitEquals">bitwise equal</a>
139 * if the current value is <a href="#bitEquals">bitwise equal</a>
159 * Atomically adds the given value to the current value.
166 long current = value; local
167 double currentVal = longBitsToDouble(current);
170 if (updater.compareAndSet(this, current, next)) {
177 * Atomically adds the given value to the current value.
184 long current = value local
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSourcePlexor.java 75 protected ImageData naturalNext(ImageData current) {
76 return current.naturalNext();
80 protected ImageData naturalPrevious(ImageData current) {
81 return current.naturalPrevious();
85 protected void donePaging(ImageData current) {
86 current.donePaging();

Completed in 4815 milliseconds

1 2 3 4 5 6 7 891011>>