HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 101 - 125 of 719) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ZeroPole.h 48 void process(const float *source, float *destination, unsigned framesToProcess);
AudioChannel.cpp 92 float* destination = mutableData(); local
98 memset(destination, 0, sizeof(float) * rangeLength);
100 memcpy(destination, source + startFrame, sizeof(float) * rangeLength);
AudioDelayDSPKernel.cpp 91 void AudioDelayDSPKernel::process(const float* source, float* destination, size_t framesToProcess)
100 ASSERT(source && destination);
101 if (!source || !destination)
157 *destination++ = static_cast<float>(output);
AudioDelayDSPKernel.h 37 virtual void process(const float* source, float* destination, size_t framesToProcess);
AudioFIFO.h 44 // Consume |framesToConsume| frames of data from the FIFO and put them in |destination|. The
46 void consume(AudioBus* destination, size_t framesToConsume);
  /external/chromium/chrome/browser/debugger/
debugger_remote_service.h 54 // Detaches the remote debugger from the tab specified by |destination|.
60 void DetachFromTab(const std::string& destination,
89 // Attaches a remote debugger to the tab specified by |destination|.
91 void AttachToTab(const std::string& destination,
100 // |tool| and |destination| are used as the respective header values.
103 const std::string& destination);
debugger_remote_service.cc 58 const std::string destination = message.destination(); local
81 if (destination.empty()) {
85 SendResponse(response, message.tool(), message.destination());
89 base::StringToInt(destination, &tab_uid);
94 AttachToTab(destination, &response);
97 DetachFromTab(destination, &response);
109 SendResponse(response, message.tool(), message.destination());
118 // |tool| and |destination| as the respective header values.
121 const std::string& destination) {
    [all...]
extension_ports_remote_service.cc 51 // Put the target message port ID in the devtools destination field.
63 // The message port ID is in the devtools destination field.
71 // similar: with the message port ID in the destination field, but no
142 const std::string destinationString = message.destination();
170 SendResponse(response, message.tool(), message.destination());
174 int destination = -1; local
176 base::StringToInt(destinationString, &destination);
179 if (destination != -1) // destination should be empty for this command.
184 if (destination == -1) // Destination required for this command
    [all...]
  /external/chromium_org/net/tools/gdig/
file_net_log.cc 15 FileNetLogObserver::FileNetLogObserver(FILE* destination)
16 : destination_(destination) {
17 DCHECK(destination != NULL);
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup.cc 50 logging::LoggingDestination destination = logging::LOG_TO_FILE; local
52 logging::LoggingDestination destination = local
62 settings.logging_dest = destination;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComposite.h 77 inline void platformArithmeticSoftware(Uint8ClampedArray* source, Uint8ClampedArray* destination,
80 static inline void computeArithmeticPixelsNeon(unsigned char* source, unsigned char* destination,
82 static inline void platformArithmeticNeon(unsigned char* source, unsigned char* destination,
  /packages/apps/Gallery2/jni/filters/
bwfilter.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
hue.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
kmeans.cc 37 char* destination = 0; local
40 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
43 unsigned char * dst = (unsigned char *) destination;
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentActionHandler.java 79 public void showAttachment(int destination) {
87 (destination == AttachmentDestination.CACHE ||
88 mAttachment.destination == destination)) {
92 startDownloadingAttachment(destination);
100 public void startDownloadingAttachment(int destination) {
101 startDownloadingAttachment(destination, UIProvider.AttachmentRendition.BEST, 0, false);
105 int destination, int rendition, int additionalPriority, boolean delayDownload) {
107 mAttachment, destination, rendition, additionalPriority, delayDownload);
111 Attachment attachment, int destination, int rendition, int additionalPriority
    [all...]
  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 101 void RingBuffer::Copy(int reader, float* destination, int num_frames) const {
104 memcpy(destination, samples_ + pos * num_channels_,
105 num_channels_ * num_frames * sizeof(destination[0]));
108 memcpy(destination, samples_ + pos * num_channels_,
109 num_channels_ * wrapped * sizeof(destination[0]));
111 memcpy(destination + wrapped * num_channels_, samples_,
112 num_channels_ * remaining * sizeof(destination[0]));
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StorageManager.java 119 void verifySpaceBeforeWritingToFile(int destination, String path, long length)
126 verifySpace(destination, path, length);
129 void verifySpace(int destination, String path, long length) throws StopRequestException {
133 Log.i(Constants.TAG, "in verifySpace, destination: " + destination +
139 switch (destination) {
162 throw new IllegalStateException("invalid combination of destination: " + destination +
165 findSpace(dir, length, destination);
173 private synchronized void findSpace(File root, long targetBytes, int destination)
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java 352 * @param destination a destination stream to write to.
355 public static void writeDictionaryXml(Writer destination, FusionDictionary dict)
362 destination.write("<wordlist format=\"2\"");
365 destination.write(" " + OPTIONS_KEY + "=\"" + GERMAN_UMLAUT_PROCESSING_OPTION + "\"");
367 destination.write(" " + OPTIONS_KEY + "=\"" + FRENCH_LIGATURE_PROCESSING_OPTION + "\"");
371 destination.write(" " + key + "=\"" + value + "\"");
373 destination.write(">\n");
374 destination.write("<!-- Warning: there is no code to read this format yet. -->\n");
376 destination.write(" <" + WORD_TAG + " " + WORD_ATTR + "=\"" + word.mWord + "\"
    [all...]
  /external/chromium_org/media/base/
multi_channel_resampler.cc 33 // |destination| provided to ProvideInput() directly.
83 float* destination) {
88 wrapped_resampler_audio_bus_->SetChannelData(0, destination);
96 memcpy(destination, wrapped_resampler_audio_bus_->channel(channel),
multi_channel_resampler.h 53 void ProvideInput(int channel, int frames, float* destination);
65 // the first channel points to the |destination| provided to ProvideInput().
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
BiquadProcessor.cpp 100 void BiquadProcessor::process(const AudioBus* source, AudioBus* destination, size_t framesToProcess)
103 destination->zero();
111 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
WaveShaperProcessor.h 53 virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess);
  /external/chromium_org/sandbox/win/src/
sandbox_nt_util.h 59 extern "C" long _InterlockedCompareExchange(long volatile* destination,
67 void* volatile* destination, void* exchange, void* comperand) {
69 reinterpret_cast<long volatile*>(destination),
100 NTSTATUS CopyData(void* destination, const void* source, size_t bytes);
  /frameworks/base/core/java/android/print/
PrintDocumentAdapter.java 68 * pages to the provided destination. The execution of this method is not
234 * @param destination The destination file descriptor to which to write.
241 public abstract void onWrite(PageRange[] pages, ParcelFileDescriptor destination,
PrintFileDocumentAdapter.java 87 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination,
89 mWriteFileAsyncTask = new WriteFileAsyncTask(destination, cancellationSignal, callback);
102 public WriteFileAsyncTask(ParcelFileDescriptor destination,
104 mDestination = destination;

Completed in 439 milliseconds

1 2 3 45 6 7 8 91011>>