HomeSort by relevance Sort by last modified time
    Searched full:destination (Results 701 - 725 of 3792) sorted by null

<<21222324252627282930>>

  /external/libvpx/libvpx/vp8/common/x86/
subpixel_mmx.asm 51 movsxd rax, dword ptr arg(5) ;output_width ; destination pitch?
93 movq [rdi], mm3 ; store the results in the destination
152 movsxd rax, DWORD PTR arg(2) ;output_pitch ; destination pitch?
188 movd [rdi],mm3 ; store the results in the destination
342 movq [rdi], mm3 ; store the results in the destination
497 movq [rdi], mm3 ; store the results in the destination
614 movd [rdi], mm3 ; store the results in the destination
  /external/v8/src/
lithium.h 210 LMoveOperands(LOperand* source, LOperand* destination)
211 : source_(source), destination_(destination) {
217 LOperand* destination() const { return destination_; } function in class:v8::internal::BASE_EMBEDDED
221 // destination (but not the source).
226 // True if this move a move into the given destination operand.
232 // destination are the same, or if its destination is unneeded.
  /external/webkit/Source/WebCore/webaudio/
AudioBufferSourceNode.cpp 157 // Get the destination pointers.
193 // Generate silence for the initial portion of the destination.
218 // Create the destination bus for the part of the destination we're processing this time.
227 // Update the destination pointers.
291 // Get pointers to the destination.
302 // Simply copy the data from the source buffer to the destination.
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 124 String destination; // destination associated with this transfer field in class:BluetoothOppNotification.NotificationItem
237 final int destinationIndex = cursor.getColumnIndexOrThrow(BluetoothShare.DESTINATION);
248 String destination = cursor.getString(destinationIndex); local
280 item.destination = destination;
310 intent.putExtra(Constants.EXTRA_BT_OPP_ADDRESS, item.destination);
TestActivity.java 130 * values.put(BluetoothShare.DESTINATION, "FF:FF:FF:00:00:00");
203 * BluetoothShare.MIMETYPE, BluetoothShare.DESTINATION,
238 // values.put(BluetoothShare.DESTINATION, "FF:FF:FF:00:00:00");
240 // values.put(BluetoothShare.DESTINATION, "12:34:56:78:9A:BC");
242 // values.put(BluetoothShare.DESTINATION, "00:1B:33:F0:58:FB");
244 // values.put(BluetoothShare.DESTINATION, "00:17:E5:5D:74:F3");
246 // values.put(BluetoothShare.DESTINATION, "00:1A:1B:7F:1E:F0");
248 // values.put(BluetoothShare.DESTINATION, "00:17:83:58:5D:CC");
250 // values.put(BluetoothShare.DESTINATION, "00:16:41:49:5B:F3");
252 values.put(BluetoothShare.DESTINATION, address)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 508 * @param destination The destination XMP object.
511 * @param deleteEmptyValues Delete destination values if source property is empty.
514 public static void appendProperties(XMPMeta source, XMPMeta destination,
519 ParameterAsserts.assertImplementation(destination);
522 XMPMetaImpl dest = (XMPMetaImpl) destination;
528 // Make sure we have a destination schema node
590 * @param destXMP The destination XMP object.
592 * @param destParent the parent of the destination node
595 * in the destination object
    [all...]
  /external/icu4c/i18n/unicode/
uregex.h     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 39 /// MappedTypes - This is a mapping from a source type to a destination type
49 /// source module that are mapped to an opaque struct in the destination
54 /// destination modules who are getting a body from the source module.
58 /// addTypeMapping - Indicate that the specified type in the destination
146 // type that we're mapping onto this destination type then we succeed. Keep
151 // We can only map one source type onto the opaque destination type.
313 // where T does not exist at all in the destination module.
315 // The other case we watch for is when the type is not in the destination
317 // is already mapped. For example, if the destination module has:
396 /// what the result will look like in the destination module
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 43 * request that a URI be downloaded to a particular destination file. The download manager will
99 * Uri where downloaded file will be stored. If a destination is supplied by client, that URI
226 * Value of {@link #COLUMN_REASON} when the requested destination file already exists (the
330 * Note that the default download destination is a shared volume where the system might delete
428 * Set the local destination for the downloaded file. Must be a file URI to a path on
446 * Set the local destination for the downloaded file to the system cache dir (/cache).
464 * Set the local destination for the downloaded file to a path within
476 * destination filename
502 * Set the local destination for the downloaded file to a path within
511 * destination filenam
1028 int destination = cursor.getInt(indx); local
    [all...]
  /external/guava/guava/src/com/google/common/io/
Files.java 231 * @param to the destination file
243 * @param to the destination file
278 * @param to the destination file
284 "Source %s and destination %s must be different", from, to);
294 * @param to the destination file
308 * @param to the destination file
322 * @param to the destination file
336 * @param to the destination file
480 * @param to the destination file
487 "Source %s and destination %s must be different", from, to)
    [all...]
  /external/icu4c/i18n/
udat.cpp 217 // NULL destination for pure preflighting: empty dummy string
218 // otherwise, alias the destination buffer
378 // NULL destination for pure preflighting: empty dummy string
379 // otherwise, alias the destination buffer
477 // NULL destination for pure preflighting: empty dummy string
478 // otherwise, alias the destination buffer
991 // NULL destination for pure preflighting: empty dummy string
992 // otherwise, alias the destination buffer
1010 // NULL destination for pure preflighting: empty dummy string
1011 // otherwise, alias the destination buffe
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 200 * file descriptor pointing to the backup data destination.
307 * will be delivered to the backup destination along with the metadata necessary
313 * @param output The destination to which the backed-up file data will be sent.
450 * The default implementation creates the destination file/directory and populates it
457 * destination. If the file system object being restored is a directory, {@code size}
459 * @param destination The File on disk to be restored with the given data.
462 * @param mode The access mode to be assigned to the destination after its data is
469 File destination, int type, long mode, long mtime)
471 FullBackup.restoreFile(data, size, type, mode, mtime, destination);
532 // with a null destination
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp     [all...]
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
ddraw.h 133 DWORD dwZBufferBaseDest; // Destination base value
134 DWORD dwZDestConstBitDepth; // Bit depth used to specify Z constant for destination
149 DWORD dwAlphaDestConstBitDepth; // Bit depth used to specify alpha constant for destination
296 DWORD dwAlphaDestConstBitDepth; // Bit depth used to specify alpha constant for destination
    [all...]
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
DDRAW.H 133 DWORD dwZBufferBaseDest; // Destination base value
134 DWORD dwZDestConstBitDepth; // Bit depth used to specify Z constant for destination
149 DWORD dwAlphaDestConstBitDepth; // Bit depth used to specify alpha constant for destination
296 DWORD dwAlphaDestConstBitDepth; // Bit depth used to specify alpha constant for destination
    [all...]
  /bionic/libc/arch-arm/generic/bionic/
memcpy.S 35 * note that memcpy() always returns the destination pointer,
50 // preload the destination because we'll align it to a cache line
92 /* align the destination to a cache-line */
195 * but destination is not.
219 /* write a partial word (0 to 3 bytes), such that destination
233 /* Align destination to 32 bytes (cache line boundary) */
  /dalvik/vm/native/
java_lang_System.cpp 73 * If the source and destination pointers are the same, this is
81 * Determine if the source and destination buffers will overlap if
84 * It's okay if the destination buffer starts before the source and
206 /* Make sure source and destination are arrays. */
212 dvmThrowArrayStoreExceptionNotArray(((Object*)dstArray)->clazz, "destination");
309 * may still be able to do this if the destination object is
  /external/protobuf/java/src/test/java/com/google/protobuf/
UnknownFieldSetTest.java 174 TestEmptyMessage destination = local
193 destination.toString());
218 TestAllTypes destination = TestAllTypes.parseFrom(data); local
220 TestUtil.assertAllFieldsSet(destination);
221 assertEquals(1, destination.getUnknownFields().asMap().size());
224 destination.getUnknownFields().getField(123456);
  /external/webkit/Source/WebCore/platform/audio/
AudioBus.cpp 401 // Calculate destination length based on the sample-rates.
406 // Create destination bus with same number of channels.
413 float* destination = destinationBus->channel(i)->data(); local
416 resampler.process(source, destination, sourceLength);
436 float* destination = destinationBus->channel(0)->data(); local
440 destination[i] = 0.5 * (sourceL[i] + sourceR[i]);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 387 public Bitmap getScaleOneImageForPreset(Rect bounds, Rect destination) {
391 if (destination != null) {
392 if (bounds.width() > destination.width()) {
395 while (w > destination.width()) {
408 File destination) {
409 new SaveCopyTask(mContext, mUri, destination, new SaveCopyTask.Callback() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ExportWizard.java 75 static final String PROPERTY_DESTINATION = "destination"; //$NON-NLS-1$
335 // check if we have the apk to resign, the destination location, and either
546 * @param destination where to write the resulting file
550 private String zipAlign(String zipAlignPath, File source, File destination) throws IOException {
551 // command line: zipaling -f 4 tmp destination
557 command[4] = destination.getAbsolutePath();
  /bionic/libc/arch-arm/cortex-a9/bionic/
memcpy.S 64 /* align destination to 16 bytes for the write-buffer */
80 // copies 4 bytes, destination 32-bits aligned
84 // copies 8 bytes, destination 64-bits aligned
  /external/chromium/net/socket/
socks_client_socket_pool.cc 140 socks_params_->destination().priority(),
164 socks_params_->destination()));
167 socks_params_->destination(),
tcp_client_socket_pool.cc 167 return resolver_.Resolve(params_->destination(), &addresses_, &callback_,
278 casted_params->get()->destination().host_port_pair().ToString())));
299 casted_params->get()->destination().host_port_pair().ToString())));
  /external/iproute2/include/netinet/
icmp6.h 74 #define ICMP6_DST_UNREACH_NOROUTE 0 /* no route to destination */
75 #define ICMP6_DST_UNREACH_ADMIN 1 /* communication with destination */
178 struct in6_addr nd_rd_dst; /* destination address */

Completed in 619 milliseconds

<<21222324252627282930>>