Searched defs:destination (Results 101 - 125 of 263) sorted by relevance

1234567891011

/external/chromium_org/media/base/
H A Dsinc_resampler_unittest.cc28 MOCK_METHOD2(ProvideInput, void(int frames, float* destination));
173 void ProvideInput(int frames, float* destination) { argument
177 destination[i] = 0;
183 destination[i] = sin(2 * M_PI * (kMinFrequency * t + (k_ / 2) * t * t));
/external/chromium_org/media/midi/
H A Dmidi_manager_mac.cc71 MIDIEndpointRef destination = MIDIGetDestination(i); local
75 destinations_[i] = destination;
77 MidiPortInfo info = GetPortInfoFromEndpoint(destination);
180 // Lookup the destination based on the port index.
184 MIDIEndpointRef destination = destinations_[port_index];
186 MIDISend(coremidi_output_, destination, packet_list_);
/external/chromium_org/mojo/system/
H A Dmemory.h157 // you'd do something like |memcpy(destination, user_pointer, count *
159 void GetArray(typename internal::remove_const<Type>::type* destination, argument
162 memcpy(destination, pointer_, count * sizeof(NonVoidType));
H A Dmessage_pipe_dispatcher.cc246 void* destination,
265 static_cast<SerializedMessagePipeDispatcher*>(destination)->endpoint_id =
244 EndSerializeAndCloseImplNoLock( Channel* channel, void* destination, size_t* actual_size, embedder::PlatformHandleVector* ) argument
H A Dshared_buffer_dispatcher.cc246 void* destination,
253 static_cast<SerializedSharedBufferDispatcher*>(destination);
244 EndSerializeAndCloseImplNoLock( Channel* , void* destination, size_t* actual_size, embedder::PlatformHandleVector* platform_handles) argument
H A Dtransport_data.cc148 void* destination = buffer_.get() + current_offset; local
153 destination,
/external/chromium_org/printing/android/java/src/org/chromium/printing/
H A DPrintingControllerImpl.java262 final ParcelFileDescriptor destination,
274 mFileDescriptor = destination.getFd();
260 onWrite( final PageRange[] ranges, final ParcelFileDescriptor destination, final CancellationSignal cancellationSignal, final PrintDocumentAdapterWrapper.WriteResultCallbackWrapper callback) argument
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.cpp141 static bool copyStringProperty(const char* property, const Dictionary& source, JSONObject* destination) argument
146 destination->setString(property, value);
150 static bool copySequenceOfStringProperty(const char* property, const Dictionary& source, JSONObject* destination) argument
158 destination->setArray(property, jsonArray.release());
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioContext.h94 AudioDestinationNode* destination() { return m_destinationNode.get(); } function in class:blink::AudioContext
252 // Set to true when the destination node has been initialized and is ready to process data.
H A DAudioNode.cpp183 void AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& exceptionState) argument
188 if (!destination) {
191 "invalid destination node.");
203 if (destination && inputIndex >= destination->numberOfInputs()) {
206 "input index (" + String::number(inputIndex) + ") exceeds number of inputs (" + String::number(destination->numberOfInputs()) + ").");
210 if (context() != destination->context()) {
213 "cannot connect to a destination belonging to a different audio context.");
217 AudioNodeInput* input = destination->input(inputIndex);
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...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/
H A DWebGLImageConversionNEON.h37 ALWAYS_INLINE void unpackOneRowOfRGBA16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
46 vst1q_u8(destination + i, components.val[1]);
50 destination += componentsSize;
54 ALWAYS_INLINE void unpackOneRowOfRGB16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
67 vst4_u8(destination, RGBA8);
68 destination += 32;
75 ALWAYS_INLINE void unpackOneRowOfARGB16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
88 vst4_u8(destination + i, RGBA8);
92 destination += componentsSize;
96 ALWAYS_INLINE void unpackOneRowOfBGRA16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigne argument
117 unpackOneRowOfRGBA4444ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
145 packOneRowOfRGBA8ToUnsignedShort4444(const uint8_t*& source, uint16_t*& destination, unsigned& pixelsPerRow) argument
173 unpackOneRowOfRGBA5551ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
205 packOneRowOfRGBA8ToUnsignedShort5551(const uint8_t*& source, uint16_t*& destination, unsigned& pixelsPerRow) argument
237 unpackOneRowOfRGB565ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow) argument
269 packOneRowOfRGBA8ToUnsignedShort565(const uint8_t*& source, uint16_t*& destination, unsigned& pixelsPerRow) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComposite.cpp131 static inline void computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength, argument
143 unsigned char i2 = *destination;
151 *destination = 0;
153 *destination = 255;
155 *destination = result;
157 ++destination;
164 static inline void computeArithmeticPixelsUnclamped(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
175 unsigned char i2 = *destination;
182 *destination = result;
184 ++destination;
188 arithmeticSoftware(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
220 platformArithmeticSoftware(Uint8ClampedArray* source, Uint8ClampedArray* destination, float k1, float k2, float k3, float k4) argument
[all...]
/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...]
H A Dunknown_field_set_unittest.cc281 unittest::TestEmptyMessage source, destination; local
283 destination.mutable_unknown_fields()->AddVarint(1, 1);
284 destination.mutable_unknown_fields()->AddVarint(3, 2);
288 destination.MergeFrom(source);
297 destination.DebugString());
323 unittest::TestAllTypes destination; local
324 ASSERT_TRUE(destination.ParseFromString(all_fields_data_ + data));
326 TestUtil::ExpectAllFieldsSet(destination);
327 ASSERT_EQ(1, destination.unknown_fields().field_count());
329 destination
[all...]
/external/chromium_org/third_party/webrtc/common_audio/resampler/
H A Dpush_sinc_resampler_unittest.cc49 void Run(int frames, float* destination) { argument
50 memset(destination, 0, sizeof(float) * frames);
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dcmake.py483 destination = copy['destination'] variable in class:WriteCopies.Copy
487 dst = os.path.join(destination, basename)
/external/chromium_org/v8/src/ia32/
H A Dlithium-gap-resolver-ia32.cc54 // the same as the destination, the destination is ignored and
76 // Clear this move's destination to indicate a pending move. The actual
77 // destination is saved on the side.
79 LOperand* destination = moves_[index].destination(); local
84 // as this one's destination blocks this one so recursively perform all
88 if (other_move.Blocks(destination) && !other_move.IsPending()) {
94 // not be swapped). Since this move's destination is B and there is
103 // pending, so restore its destination
134 LOperand* destination = move.destination(); local
148 LOperand* destination = moves_[index].destination(); local
196 LOperand* destination = moves_[i].destination(); local
255 LOperand* destination = moves_[index].destination(); local
354 LOperand* destination = moves_[index].destination(); local
[all...]
/external/chromium_org/v8/src/x87/
H A Dlithium-gap-resolver-x87.cc54 // the same as the destination, the destination is ignored and
76 // Clear this move's destination to indicate a pending move. The actual
77 // destination is saved on the side.
79 LOperand* destination = moves_[index].destination(); local
84 // as this one's destination blocks this one so recursively perform all
88 if (other_move.Blocks(destination) && !other_move.IsPending()) {
94 // not be swapped). Since this move's destination is B and there is
103 // pending, so restore its destination
134 LOperand* destination = move.destination(); local
148 LOperand* destination = moves_[index].destination(); local
196 LOperand* destination = moves_[i].destination(); local
255 LOperand* destination = moves_[index].destination(); local
358 LOperand* destination = moves_[index].destination(); local
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DData.java170 * Set the source node to be a symbolic link to the destination.
175 * Set the source node to be a symbolic link to the destination.
177 void setSymlink(String sourcePath, Data destination); argument
194 * @param toPath destination path for the deep copy.
H A DDefaultDataContext.java344 public void setSymlink(String sourcePath, Data destination) { argument
H A DDelegatedData.java216 public void setSymlink(String sourcePath, Data destination) { argument
217 destination = unwrap(destination);
218 getDelegate().setSymlink(sourcePath, destination);
/external/protobuf/src/google/protobuf/
H A Drepeated_field_unittest.cc215 RepeatedField<int> source, destination; local
220 destination.Add(1);
221 destination.Add(2);
222 destination.Add(3);
224 destination.MergeFrom(source);
226 ASSERT_EQ(5, destination.size());
228 EXPECT_EQ(1, destination.Get(0));
229 EXPECT_EQ(2, destination.Get(1));
230 EXPECT_EQ(3, destination.Get(2));
231 EXPECT_EQ(4, destination
519 RepeatedPtrField<string> source, destination; local
[all...]
H A Dunknown_field_set_unittest.cc281 unittest::TestEmptyMessage source, destination; local
283 destination.mutable_unknown_fields()->AddVarint(1, 1);
284 destination.mutable_unknown_fields()->AddVarint(3, 2);
288 destination.MergeFrom(source);
297 destination.DebugString());
314 unittest::TestAllTypes destination; local
315 ASSERT_TRUE(destination.ParseFromString(all_fields_data_ + data));
317 TestUtil::ExpectAllFieldsSet(destination);
318 ASSERT_EQ(1, destination.unknown_fields().field_count());
320 destination
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPUtilsImpl.java508 * @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, argument
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 objec
[all...]

Completed in 1705 milliseconds

1234567891011