HomeSort by relevance Sort by last modified time
    Searched defs:destination (Results 76 - 100 of 1217) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/src/crankshaft/s390/
lithium-gap-resolver-s390.cc 54 // the same as the destination, the destination is ignored and
74 // its destination. All other moves from the spilled source have been
82 // Clear this move's destination to indicate a pending move. The actual
83 // destination is saved in a stack allocated local. Multiple moves can
86 LOperand* destination = moves_[index].destination(); local
91 // as this one's destination blocks this one so recursively perform all
95 if (other_move.Blocks(destination) && !other_move.IsPending()) {
104 // pending, so restore its destination
125 LOperand* destination = moves_[i].destination(); local
182 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.cc 49 // the same as the destination, the destination is ignored and
71 // Clear this move's destination to indicate a pending move. The actual
72 // destination is saved in a stack-allocated local. Recursion may allow
75 LOperand* destination = moves_[index].destination(); local
80 // as this one's destination blocks this one so recursively perform all
84 if (other_move.Blocks(destination) && !other_move.IsPending()) {
90 // not be swapped). Since this move's destination is B and there is
99 // pending, so restore its destination
130 LOperand* destination = moves_[i].destination(); local
144 LOperand* destination = moves_[index].destination(); local
240 LOperand* destination = moves_[index].destination(); local
    [all...]
  /frameworks/av/services/oboeservice/
AAudioMixer.cpp 54 float *destination = mOutputBuffer; local
94 mixPart(destination, (float *)wrappingBuffer.data[partIndex],
97 destination += framesToMixFromPart * mSamplesPerFrame;
111 void AAudioMixer::mixPart(float *destination, float *source, int32_t numFrames) {
115 *destination++ += *source++;
  /frameworks/base/telecomm/java/android/telecom/
AudioState.java 161 public void writeToParcel(Parcel destination, int flags) {
162 destination.writeByte((byte) (isMuted ? 1 : 0));
163 destination.writeInt(route);
164 destination.writeInt(supportedRouteMask);
ParcelableConnection.java 306 public void writeToParcel(Parcel destination, int flags) {
307 destination.writeParcelable(mPhoneAccount, 0);
308 destination.writeInt(mState);
309 destination.writeInt(mConnectionCapabilities);
310 destination.writeParcelable(mAddress, 0);
311 destination.writeInt(mAddressPresentation);
312 destination.writeString(mCallerDisplayName);
313 destination.writeInt(mCallerDisplayNamePresentation);
314 destination.writeStrongBinder(
316 destination.writeInt(mVideoState)
    [all...]
  /frameworks/base/tests/net/java/android/net/netlink/
RtNetlinkNeighborMessageTest.java 170 final InetAddress destination = neighMsg.getDestination(); local
171 assertNotNull(destination);
172 assertEquals(InetAddress.parseNumericAddress("192.168.159.254"), destination);
197 final InetAddress destination = neighMsg.getDestination(); local
198 assertNotNull(destination);
199 assertEquals(InetAddress.parseNumericAddress("fe80::86c9:b2ff:fe6a:ed4b"), destination);
  /frameworks/opt/chips/src/com/android/ex/chips/
CircularImageView.java 27 private final RectF destination; field in class:CircularImageView
44 destination = new RectF();
80 destination.set(getPaddingLeft(), getPaddingTop(), getWidth() - getPaddingRight(),
83 drawBitmapWithCircleOnCanvas(bitmap, canvas, source, destination);
88 * mask. Only draws a circle with diameter equal to the destination width.
93 * @param dest The destination bound on the canvas.
  /packages/apps/Gallery2/jni/filters/
edge.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
35 char * dst = destination;
38 char * ptr = destination;
geometry.c 22 static __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination,
33 memcpy(destination + temp - i, source + i, bytes_to_copy);
38 char * destination, int dstWidth __unused, int dstHeight __unused) {
50 memcpy(destination + temp - j, source + i + j, cpy_bytes);
55 static __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
62 flipVertical(temp, dstWidth, dstHeight, destination, dstWidth, dstHeight);
67 flipHorizontal(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
71 flipVertical(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
77 static __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination,
86 memcpy(destination + column_disp + row_disp , source + j * srcWidth + i, cpy_bytes)
132 char* destination = 0; local
145 char* destination = 0; local
155 char* destination = 0; local
167 char* destination = 0; local
    [all...]
saturated.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
36 int r = destination[RED];
37 int g = destination[GREEN];
38 int b = destination[BLUE];
47 destination[RED] = CLAMP(Rc);
48 destination[GREEN] = CLAMP(Gc);
49 destination[BLUE] = CLAMP(Bc);
vibrance.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
38 int r = destination[RED];
39 int g = destination[GREEN];
40 int b = destination[BLUE];
56 destination[RED] = CLAMP(Rc);
57 destination[GREEN] = CLAMP(Gc);
58 destination[BLUE] = CLAMP(Bc);
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactDropdownLayouter.java 77 // single recipients would try to simplify the destination by tokenizing. We'd
78 // like to always show the full destination address per design request.
91 final String destination = bidiFormatter.unicodeWrap( local
98 getStyledResults(substring, displayName, destination);
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ContactRequest.java 28 * A request object for contact images. ContactRequests have a destination because multiple
109 * include the destination. We need to put multiple ContactRequests in a set,
110 * but its implementations of equals() and hashcode() don't include the destination.
115 public final ContactDrawableInterface destination; field in class:ContactRequest.ContactRequestHolder
118 final ContactDrawableInterface destination) {
120 this.destination = destination;
139 if (destination != null ? !destination.equals(that.destination)
    [all...]
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.1.201405082137/
org.jacoco.agent-0.7.1.201405082137.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/
org.jacoco.agent-0.7.3.201501221555.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/
org.jacoco.agent-0.7.4.201502262128.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.5.201505241946/
org.jacoco.agent-0.7.5.201505241946.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.6.201602180812/
org.jacoco.agent-0.7.6.201602180812.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/
org.jacoco.agent-0.7.7.201606060606.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.8/
org.jacoco.agent-0.7.8.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
SimpleFile.java 46 public String destination; field in class:SimpleFile.FileOp
68 else if (fileArg.getName().equals("destination")) //$NON-NLS-1$
69 op.destination = fileArg.getSimpleValue();
71 if (op.source == null || op.destination == null)
91 IFile destFile = project.getFile(new Path(op.destination));
  /frameworks/base/telephony/java/android/telephony/mbms/
DownloadRequest.java 64 private Uri destination; field in class:DownloadRequest.SerializationDataContainer
74 destination = request.destinationUri;
85 objectOutput.writeUTF(destination.toString());
95 destination = Uri.parse(objectInput.readUTF());
105 private Uri destination; field in class:DownloadRequest.Builder
139 builder = new Builder(dataContainer.source, dataContainer.destination);
167 throw new IllegalArgumentException("Source and destination URIs must be non-null.");
170 destination = destinationUri;
221 return new DownloadRequest(fileServiceId, source, destination,
234 Uri source, Uri destination, int sub
    [all...]
  /frameworks/support/navigation/common/src/test/java/androidx/navigation/
NavGraphTest.java 57 NavDestination destination = new NavDestination(mock(Navigator.class)); local
58 destination.setId(FIRST_DESTINATION_ID);
59 return destination;
63 NavDestination destination = new NavDestination(mock(Navigator.class)); local
64 destination.setId(SECOND_DESTINATION_ID);
65 return destination;
68 private NavGraph createGraphWithDestination(NavDestination destination) {
70 graph.addDestination(destination);
83 NavDestination destination = new NavDestination(mock(Navigator.class)); local
84 graph.addDestination(destination);
89 NavDestination destination = createFirstDestination(); local
99 NavDestination destination = createFirstDestination(); local
111 NavDestination destination = createFirstDestination(); local
123 NavDestination destination = createFirstDestination(); local
137 NavDestination destination = createFirstDestination(); local
146 NavDestination destination = createFirstDestination(); local
159 NavDestination destination = createFirstDestination(); local
170 NavDestination destination = createFirstDestination(); local
184 NavDestination destination = createFirstDestination(); local
194 NavDestination destination = createFirstDestination(); local
206 NavDestination destination = createFirstDestination(); local
221 NavDestination destination = createFirstDestination(); local
233 NavDestination destination = createFirstDestination(); local
    [all...]
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
MigrateSystemAppsSnapshotTaskTest.java 156 File destination = new File(destinationFolder, fileName); local
157 destination.getParentFile().mkdirs();
158 destination.createNewFile();
159 FileUtils.copy(getTestFile(fileToBeCopied), new FileOutputStream(destination));
  /art/compiler/optimizing/
parallel_move_resolver.cc 27 // the same as the destination, the destination is ignored and
136 // Clear this move's destination to indicate a pending move. The actual
137 // destination is saved in a stack-allocated local. Recursion may allow
140 Location destination = move->MarkPending(); local
144 // as this one's destination blocks this one so recursively perform all
149 if (other_move.Blocks(destination) && !other_move.IsPending()) {
156 // not be swapped). Since this move's destination is B and there is
175 moves_[index]->ClearPending(destination);
182 // pending, so restore its destination
328 Location destination = move->GetDestination(); local
428 Location destination = move->MarkPending(); local
535 Location destination = move->GetDestination(); local
    [all...]

Completed in 1170 milliseconds

1 2 34 5 6 7 8 91011>>