Searched defs:from (Results 1 - 7 of 7) sorted by relevance

/art/test/005-annotations/src/android/test/anno/
H A DIntToString.java10 int from(); method in interface:IntToString
/art/compiler/optimizing/
H A Dparallel_move_resolver.cc120 // Each call to this function performs a move and deletes it from the move
159 // be created but will be "pending" when we return from PerformMove.
174 // move by just returning from this `PerformMove`.
205 // We swap 64bits moves before swapping 32bits moves. Go back from the
325 // from changing the constant sources to stack locations.
399 // Each call to this function performs a move and deletes it from the move
492 // FIXME: If FreeScratchLocation() removes the location from scratches_,
504 void ParallelMoveResolverNoSwap::UpdateMoveSource(Location from, Location to) { argument
506 // (from -> to) has been performed. Since we ensure there is no move with the same
507 // destination, (to -> X) cannot be blocked while (from
[all...]
H A Dinduction_var_analysis.cc57 * Returns true if the from/to types denote a narrowing, integral conversion (precision loss).
59 static bool IsNarrowingIntegralConversion(Primitive::Type from, Primitive::Type to) { argument
60 switch (from) {
254 // Analyze from entry-phi onwards.
276 // temporary meaning to its nodes, seeded from the phi instruction and back.
343 // Match all phi inputs from input_index onwards exactly.
448 Primitive::Type from,
452 if (IsNarrowingIntegralConversion(from, to)) {
454 if (a->type == to || (a->type == from && IsNarrowingIntegralConversion(from, t
447 TransferCnv(InductionInfo* a, Primitive::Type from, Primitive::Type to) argument
557 Primitive::Type from = conversion->GetInputType(); local
[all...]
H A Dregister_allocator.cc606 // (1) Remove interval with the lowest start position from unhandled.
623 // Remember the inactive_ size here since the ones moved to inactive_ from
786 // Only if it's not fixed though, because fixed intervals don't come from SSA.
896 // register if one is available. We iterate from 0 to the number of registers,
1034 // Only if it's not fixed though, because fixed intervals don't come from SSA.
1138 // Only if it's not fixed though, because fixed intervals don't come from SSA.
1201 LiveInterval* RegisterAllocator::SplitBetween(LiveInterval* interval, size_t from, size_t to) { argument
1202 HBasicBlock* block_from = liveness_.GetBlockFromPosition(from / 2);
1236 if ((position > from) && (block_to->GetLifetimeStart() > position)) {
1246 // If `to` is in a loop, find the outermost loop header which does not contain `from`
1747 ConnectSplitSiblings(LiveInterval* interval, HBasicBlock* from, HBasicBlock* to) const argument
[all...]
H A Dssa_liveness_analysis.h394 void SetFrom(size_t from) { argument
396 first_range_->start_ = from;
400 DCHECK(from == defined_by_->GetLifetimePosition());
402 new (allocator_) LiveRange(from, from + 2, nullptr);
1018 // we iterate from inner-most to outer-most, which is in increasing liveness order,
1095 // The first interval from which split intervals come from.
/art/test/004-JniTest/src/
H A DMain.java191 private static native boolean nativeIsAssignableFrom(Class<?> from, Class<?> to); argument
/art/test/004-JniTest/
H A Djni_test.cc275 jclass from, jclass to) {
276 return env->IsAssignableFrom(from, to);
274 Java_Main_nativeIsAssignableFrom(JNIEnv* env, jclass, jclass from, jclass to) argument

Completed in 2951 milliseconds