HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 126 - 150 of 1059) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ReverbAccumulationBuffer.h 45 void readAndClear(float* destination, size_t numberOfFrames);
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);
  /frameworks/av/drm/mediadrm/plugins/clearkey/
AesCtrDecryptor.h 34 const uint8_t* source, uint8_t* destination,
AesCtrDecryptor.cpp 31 uint8_t* destination,
49 memcpy(destination + offset, source + offset,
55 AES_ctr128_encrypt(source + offset, destination + offset,
  /external/chromium_org/chrome/utility/media_galleries/
media_metadata_parser.cc 27 scoped_ptr<std::string>* destination) {
28 DCHECK(destination);
30 destination->reset(new std::string(value));
33 void SetIntScopedPtr(int value, scoped_ptr<int>* destination) {
34 DCHECK(destination);
36 destination->reset(new int(value));
39 void SetDoubleScopedPtr(double value, scoped_ptr<double>* destination) {
40 DCHECK(destination);
42 destination->reset(new double(value));
45 void SetBoolScopedPtr(bool value, scoped_ptr<bool>* destination) {
    [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 79 inline void platformArithmeticSoftware(Uint8ClampedArray* source, Uint8ClampedArray* destination,
82 static inline void computeArithmeticPixelsNeon(unsigned char* source, unsigned char* destination,
84 static inline void platformArithmeticNeon(unsigned char* source, unsigned char* destination,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_multi_vector.h 44 // replica of this object. The source and the destination must have the same
74 // |destination|. The total number of elements written to |destination| is
78 virtual size_t ReadInterleaved(size_t length, int16_t* destination) const;
84 int16_t* destination) const;
89 int16_t* destination) const;
  /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 92 public void showAttachment(int destination) {
100 (destination == AttachmentDestination.CACHE ||
101 mAttachment.destination == destination)) {
105 startDownloadingAttachment(destination);
113 public void startDownloadingAttachment(int destination) {
114 startDownloadingAttachment(destination, UIProvider.AttachmentRendition.BEST, 0, false);
118 int destination, int rendition, int additionalPriority, boolean delayDownload) {
120 mAttachment, destination, rendition, additionalPriority, delayDownload);
124 Attachment attachment, int destination, int rendition, int additionalPriority
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CoordinateUtils.java 47 public static void copy(final int[] destination, final int[] source) {
48 destination[INDEX_X] = source[INDEX_X];
49 destination[INDEX_Y] = source[INDEX_Y];
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java 334 * @param destination a destination stream to write to.
337 public static void writeDictionaryXml(final BufferedWriter destination,
344 destination.write("<wordlist format=\"2\"");
347 destination.write(" " + key + "=\"" + value + "\"");
349 destination.write(">\n");
350 destination.write("<!-- Warning: there is no code to read this format yet. -->\n");
352 destination.write(" <" + WORD_TAG + " " + WORD_ATTR + "=\"" + wordProperty.mWord
357 destination.write("\n");
359 destination.write(" <" + SHORTCUT_TAG + " " + PROBABILITY_ATTR + "=\"
    [all...]
  /art/compiler/optimizing/
register_allocator.h 110 void InsertParallelMoveAtExitOf(HBasicBlock* block, Location source, Location destination) const;
111 void InsertParallelMoveAtEntryOf(HBasicBlock* block, Location source, Location destination) const;
112 void InsertMoveAfter(HInstruction* instruction, Location source, Location destination) const;
113 void AddInputMoveFor(HInstruction* instruction, Location source, Location destination) const;
114 void InsertParallelMoveAt(size_t position, Location source, Location destination) const;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
RealtimeAnalyser.cpp 188 float* destination = magnitudeBuffer().data(); local
193 destination[i] = float(k * destination[i] + (1 - k) * scalarMagnitude);
212 float* destination = destinationArray->data(); local
217 destination[i] = float(dbMag);
239 unsigned char* destination = destinationArray->data(); local
254 destination[i] = static_cast<unsigned char>(scaledValue);
275 float* destination = destinationArray->data(); local
283 destination[i] = value;
304 unsigned char* destination = destinationArray->data() local
    [all...]
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) OVERRIDE;
  /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]));
  /frameworks/base/telecomm/java/android/telecom/
DisconnectCause.java 186 public void writeToParcel(Parcel destination, int flags) {
187 destination.writeInt(mDisconnectCode);
188 TextUtils.writeToParcel(mDisconnectLabel, destination, flags);
189 TextUtils.writeToParcel(mDisconnectDescription, destination, flags);
190 destination.writeString(mDisconnectReason);
191 destination.writeInt(mToneToPlay);
  /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 57 void ProvideInput(int channel, int frames, float* destination);
69 // the first channel points to the |destination| provided to ProvideInput().
  /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);

Completed in 521 milliseconds

1 2 3 4 56 7 8 91011>>