Searched refs:destination (Results 101 - 125 of 539) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComposite.h79 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/WebKit/Source/wtf/text/
H A DStringOperators.h40 void writeTo(LChar* destination);
42 void writeTo(UChar* destination);
79 void StringAppend<StringType1, StringType2>::writeTo(LChar* destination) argument
84 adapter1.writeTo(destination);
85 adapter2.writeTo(destination + adapter1.length());
89 void StringAppend<StringType1, StringType2>::writeTo(UChar* destination) argument
93 adapter1.writeTo(destination);
94 adapter2.writeTo(destination + adapter1.length());
117 void writeTo(LChar* destination) { m_buffer.writeTo(destination); } argument
118 writeTo(UChar* destination) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/experience_sampling_private/
H A Dexperience_sampling.cc37 const GURL& destination,
45 element_name, destination, referrer, profile));
56 const GURL& destination,
63 ui_element_.destination = destination.GetAsReferrer().possibly_invalid_spec();
35 Create( const std::string& element_name, const GURL& destination, const GURL& referrer) argument
54 ExperienceSamplingEvent( const std::string& element_name, const GURL& destination, const GURL& referrer, content::BrowserContext* browser_context) argument
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DRealtimeAnalyser.cpp186 float* destination = magnitudeBuffer().data(); local
191 destination[i] = float(k * destination[i] + (1 - k) * scalarMagnitude);
210 float* destination = destinationArray->data(); local
215 destination[i] = float(dbMag);
237 unsigned char* destination = destinationArray->data(); local
252 destination[i] = static_cast<unsigned char>(scaledValue);
273 float* destination = destinationArray->data(); local
281 destination[i] = value;
302 unsigned char* destination local
[all...]
H A DWaveShaperProcessor.h53 virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) OVERRIDE;
/external/chromium_org/v8/src/compiler/ia32/
H A Dcode-generator-ia32.cc794 InstructionOperand* destination) {
796 // Dispatch on the source and destination operand kinds. Not all
799 DCHECK(destination->IsRegister() || destination->IsStackSlot());
801 Operand dst = g.ToOperand(destination);
804 DCHECK(destination->IsRegister() || destination->IsStackSlot());
806 if (destination->IsRegister()) {
807 Register dst = g.ToRegister(destination);
810 Operand dst = g.ToOperand(destination);
793 AssembleMove(InstructionOperand* source, InstructionOperand* destination) argument
882 AssembleSwap(InstructionOperand* source, InstructionOperand* destination) argument
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-gap-resolver.cc22 if (!it->IsRedundant()) write(it->destination(), copy.read(it->source()));
66 InstructionOperand destination(it->second.first, it->second.second);
67 os << MoveOperands(&source, &destination);
80 InstructionOperand* destination) OVERRIDE {
82 moves.push_back(MoveOperands(source, destination));
87 InstructionOperand* destination) OVERRIDE {
89 moves.push_back(MoveOperands(source, destination));
90 moves.push_back(MoveOperands(destination, source));
116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) {
117 parallel_move->AddMove(mo.source(), mo.destination(), main_zon
[all...]
/external/chromium_org/v8/src/compiler/arm/
H A Dcode-generator-arm.cc700 InstructionOperand* destination) {
702 // Dispatch on the source and destination operand kinds. Not all
705 DCHECK(destination->IsRegister() || destination->IsStackSlot());
707 if (destination->IsRegister()) {
708 __ mov(g.ToRegister(destination), src);
710 __ str(src, g.ToMemOperand(destination));
713 DCHECK(destination->IsRegister() || destination->IsStackSlot());
715 if (destination
699 AssembleMove(InstructionOperand* source, InstructionOperand* destination) argument
780 AssembleSwap(InstructionOperand* source, InstructionOperand* destination) argument
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Ddestination_list_item.js9 * Component that renders a destination item in a destination list.
12 * @param {!print_preview.Destination} destination Destination data object to
18 function DestinationListItem(eventTarget, destination, query) {
33 this.destination_ = destination;
44 * render the FedEx Office print destination.
52 * Event types dispatched by the destination list item.
63 * CSS classes used by the destination list item.
68 ICON: 'destination-list-item-icon',
69 NAME: 'destination
[all...]
H A Ddestination_list.js12 * @param {!cr.EventTarget} eventTarget Event target to pass to destination
14 * @param {string} title Title of the destination list.
24 * Event target to pass to destination items for dispatching SELECT events.
31 * Title of the destination list.
45 * Backing store for the destination list.
59 * Whether the destination list is fully expanded.
74 * Enumeration of event types dispatched by the destination list.
92 * Height of a destination list item in pixels.
109 * @return {number} Size of list when destination list is in collapsed
122 * Gets estimated height of the destination lis
[all...]
/external/chromium_org/v8/src/compiler/arm64/
H A Dcode-generator-arm64.cc721 InstructionOperand* destination) {
723 // Dispatch on the source and destination operand kinds. Not all
726 DCHECK(destination->IsRegister() || destination->IsStackSlot());
728 if (destination->IsRegister()) {
729 __ Mov(g.ToRegister(destination), src);
731 __ Str(src, g.ToMemOperand(destination, masm()));
735 DCHECK(destination->IsRegister() || destination->IsStackSlot());
736 if (destination
720 AssembleMove(InstructionOperand* source, InstructionOperand* destination) argument
795 AssembleSwap(InstructionOperand* source, InstructionOperand* destination) argument
[all...]
/external/chromium_org/media/base/
H A Dmulti_channel_resampler.cc33 // |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),
81 ProvideInput(int channel, int frames, float* destination) argument
H A Dmulti_channel_resampler.h57 void ProvideInput(int channel, int frames, float* destination);
69 // the first channel points to the |destination| provided to ProvideInput().
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_multi_vector.h44 // 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;
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base_test_util.h23 // Passes |data| to |destination| and invokes |done_callback| to indicate that
25 void ExternalDataFetchCallback(scoped_ptr<std::string>* destination,
H A Dcloud_external_data_manager_base_test_util.cc23 void ExternalDataFetchCallback(scoped_ptr<std::string>* destination, argument
26 *destination = data.Pass();
/external/chromium_org/chrome/browser/history/
H A Dhistory_backend_android.cc69 int destination) {
71 DCHECK_LE(-1, destination);
74 if (current_pos > destination) {
78 for (; cur < destination; ++cur) {
67 MoveStatement(history::AndroidStatement* statement, int current_pos, int destination) argument
/external/chromium_org/sandbox/win/src/
H A Dsandbox_nt_util.h59 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);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioDSPKernel.h57 virtual void process(const float* source, float* destination, size_t framesToProcess) = 0;
H A DAudioDelayDSPKernel.cpp90 void AudioDelayDSPKernel::process(const float* source, float* destination, size_t framesToProcess) argument
99 ASSERT(source && destination);
100 if (!source || !destination)
156 *destination++ = static_cast<float>(output);
H A DAudioFIFO.h44 // Consume |framesToConsume| frames of data from the FIFO and put them in |destination|. The
46 void consume(AudioBus* destination, size_t framesToConsume);
H A DAudioProcessor.h61 // Processes the source to destination bus. The number of channels must match in source and destination.
62 virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) = 0;
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field_unittest.cc216 RepeatedField<int> source, destination; local
219 destination.Add(1);
220 destination.Add(2);
221 destination.Add(3);
223 destination.MergeFrom(source);
225 ASSERT_EQ(5, destination.size());
226 EXPECT_EQ(1, destination.Get(0));
227 EXPECT_EQ(2, destination.Get(1));
228 EXPECT_EQ(3, destination.Get(2));
229 EXPECT_EQ(4, destination
234 RepeatedField<int> source, destination; local
277 RepeatedField<int> source, destination; local
625 RepeatedPtrField<string> source, destination; local
643 RepeatedPtrField<string> source, destination; local
705 RepeatedPtrField<string> source, destination; local
[all...]
/external/chromium_org/v8/src/compiler/x64/
H A Dcode-generator-x64.cc874 InstructionOperand* destination) {
876 // Dispatch on the source and destination operand kinds. Not all
879 DCHECK(destination->IsRegister() || destination->IsStackSlot());
881 if (destination->IsRegister()) {
882 __ movq(g.ToRegister(destination), src);
884 __ movq(g.ToOperand(destination), src);
887 DCHECK(destination->IsRegister() || destination->IsStackSlot());
889 if (destination
873 AssembleMove(InstructionOperand* source, InstructionOperand* destination) argument
958 AssembleSwap(InstructionOperand* source, InstructionOperand* destination) argument
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwPrintDocumentAdapter.java66 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
68 mPdfExporter.exportToPdf(destination, mAttributes, new ValueCallback<Boolean>() {

Completed in 2839 milliseconds

1234567891011>>