Searched refs:destination (Results 76 - 100 of 539) sorted by relevance

1234567891011>>

/external/pixman/demos/
H A Dcheckerboard.c14 pixman_image_t *destination; local
27 destination = pixman_image_create_bits (PIXMAN_a8r8g8b8,
64 checkerboard, NULL, destination,
68 show_image (destination);
/external/skia/src/animator/
H A DSkMatrixParts.cpp161 SK_MEMBER(destination, Rect),
170 source(NULL), destination(NULL) {
177 if (source == NULL || destination == NULL)
180 temp.setRectToRect(source->fRect, destination->fRect,
198 if (destination) {
199 SkDebugf("%*s<destination>\n", SkDisplayList::fIndent, "");
201 destination->dump(maker);
203 SkDebugf("%*s</destination>\n", SkDisplayList::fIndent, "");
214 SkASSERT(destination == NULL);
215 return getMember("destination");
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
H A DFECompositeArithmeticNEON.h38 inline void FEComposite::computeArithmeticPixelsNeon(unsigned char* source, unsigned char* destination, argument
48 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(destination);
75 inline void FEComposite::platformArithmeticNeon(unsigned char* source, unsigned char* destination, argument
80 computeArithmeticPixelsNeon<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
84 computeArithmeticPixelsNeon<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
89 computeArithmeticPixelsNeon<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
92 computeArithmeticPixelsNeon<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
/external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/
H A Dmedia_size.js13 * used to determine if a destination has the media size capability.
81 /** @return {Object} Media size capability of the selected destination. */
83 var destination = this.getSelectedDestInternal();
84 return (destination &&
85 destination.capabilities &&
86 destination.capabilities.printer &&
87 destination.capabilities.printer.media_size) ||
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dnative_layer.js157 * Requests the privet destination's printing capabilities. A
159 * @param {string} destinationId ID of the destination.
166 * Requests the destination's printing capabilities. A CAPABILITIES_SET
168 * @param {string} destinationId ID of the destination.
175 * @param {!print_preview.Destination} destination Destination to print to.
180 getNativeColorModel_: function(destination, color) {
182 var option = destination.isLocal ? color.getSelectedOption() : null;
199 * @param {print_preview.Destination} destination Destination to print to.
206 destination, printTicketStore, documentInfo, requestId) {
214 'color': this.getNativeColorModel_(destination, printTicketStor
[all...]
/external/chromium_org/media/base/
H A Daudio_fifo.cc87 void AudioFifo::Consume(AudioBus* destination, argument
90 DCHECK(destination);
91 DCHECK_EQ(destination->channels(), audio_bus_->channels());
96 // A copy from the FIFO to |destination| will only be performed if the
97 // allocated memory in |destination| is sufficient.
98 CHECK_LE(frames_to_consume + start_frame, destination->frames());
108 // and copy the content to the destination. Wrap around if needed.
109 for (int ch = 0; ch < destination->channels(); ++ch) {
110 float* dest = destination->channel(ch);
113 // Copy a selected part of the FIFO to the destination
[all...]
H A Daudio_fifo.h29 // them to |destination| starting at position |start_frame|.
31 // frames or if there is insufficient space in |destination| to store the
33 void Consume(AudioBus* destination, int start_frame, int frames_to_consume);
/external/chromium_org/sandbox/win/src/
H A Dpolicy_engine_params.h64 bool Get(unsigned long* destination) const {
68 *destination = Void2TypePointerCopy<unsigned long>();
73 bool Get(const void** destination) const {
77 *destination = Void2TypePointerCopy<void*>();
82 bool Get(const wchar_t** destination) const {
86 *destination = Void2TypePointerCopy<const wchar_t*>();
/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/chrome/browser/extensions/api/experience_sampling_private/
H A Dexperience_sampling.h40 const GURL& destination,
47 const GURL& destination,
/external/chromium_org/net/disk_cache/
H A Dcache_util_posix.cc23 LOG(ERROR) << "Unable to create destination cache directory.";
30 base::FilePath destination = to_path.Append(name.BaseName()); local
31 if (!base::Move(name, destination)) {
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecUTF8.h52 bool handlePartialSequence(CharType*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError);
53 void handleError(UChar*& destination, bool stopOnError, bool& sawError);
/external/chromium_org/base/
H A Dtask_runner_util_unittest.cc20 void StoreValue(int* destination, int value) { argument
21 *destination = value;
24 void StoreDoubleValue(double* destination, double value) { argument
25 *destination = value;
/external/chromium_org/mojo/common/
H A Ddata_pipe_utils.cc74 const base::FilePath& destination) {
75 base::ScopedFILE fp(base::OpenFile(destination, "wb"));
83 const base::FilePath& destination,
89 base::Bind(&BlockingCopyToFile, base::Passed(&source), destination),
73 BlockingCopyToFile(ScopedDataPipeConsumerHandle source, const base::FilePath& destination) argument
82 CopyToFile(ScopedDataPipeConsumerHandle source, const base::FilePath& destination, base::TaskRunner* task_runner, const base::Callback<void(bool)>& callback) argument
H A Ddata_pipe_utils.h22 // Asynchronously copies data from source to the destination file. The given
27 const base::FilePath& destination,
/external/chromium_org/net/tools/gdig/
H A Dfile_net_log.h22 explicit FileNetLogObserver(FILE* destination);
H A Dfile_net_log.cc15 FileNetLogObserver::FileNetLogObserver(FILE* destination) argument
16 : destination_(destination) {
17 DCHECK(destination != NULL);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioPullFIFO.h51 // Read |framesToConsume| frames from the FIFO into the destination. If the FIFO does not have
53 void consume(AudioBus* destination, size_t framesToConsume);
H A DAudioResamplerKernel.h48 // process() resamples framesToProcess frames from the source into destination.
51 void process(float* destination, size_t framesToProcess);
H A DReverbAccumulationBuffer.h45 void readAndClear(float* destination, size_t numberOfFrames);
H A DZeroPole.h48 void process(const float *source, float *destination, unsigned framesToProcess);
H A DAudioChannel.cpp92 float* destination = mutableData(); local
98 memset(destination, 0, sizeof(float) * rangeLength);
100 memcpy(destination, source + startFrame, sizeof(float) * rangeLength);
/external/chromium_org/third_party/webrtc/common_audio/resampler/
H A Dsinusoidal_linear_chirp_source.h34 virtual void Run(int frames, float* destination) OVERRIDE;
/external/chromium_org/chrome/utility/media_galleries/
H A Dmedia_metadata_parser.cc27 scoped_ptr<std::string>* destination) {
28 DCHECK(destination);
30 destination->reset(new std::string(value));
33 void SetIntScopedPtr(int value, scoped_ptr<int>* destination) { argument
34 DCHECK(destination);
36 destination->reset(new int(value));
39 void SetDoubleScopedPtr(double value, scoped_ptr<double>* destination) { argument
40 DCHECK(destination);
42 destination->reset(new double(value));
45 void SetBoolScopedPtr(bool value, scoped_ptr<bool>* destination) { argument
26 SetStringScopedPtr(const std::string& value, scoped_ptr<std::string>* destination) argument
[all...]
/external/chromium_org/net/tools/tld_cleanup/
H A Dtld_cleanup.cc50 logging::LoggingDestination destination = logging::LOG_TO_FILE; local
52 logging::LoggingDestination destination = local
62 settings.logging_dest = destination;

Completed in 494 milliseconds

1234567891011>>