HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 26 - 50 of 351) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/audio/
AudioResamplerKernel.h 47 // process() resamples framesToProcess frames from the source into destination.
50 void process(float* destination, size_t framesToProcess);
SincResampler.h 45 // Processes numberOfSourceFrames from source to produce numberOfSourceFrames / scaleFactor frames in destination.
46 void process(float* source, float* destination, unsigned numberOfSourceFrames);
67 // This is the number of destination frames we generate per processing pass on the buffer.
AudioDSPKernel.h 57 virtual void process(const float* source, float* destination, size_t framesToProcess) = 0;
ReverbAccumulationBuffer.h 44 void readAndClear(float* destination, size_t numberOfFrames);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
bpqether.h 16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 102 String destination; local
104 if (!sendSync(Messages::DownloadProxy::DecideDestinationWithSuggestedFilename(filename), Messages::DownloadProxy::DecideDestinationWithSuggestedFilename::Reply(destination, allowOverwrite, sandboxExtensionHandle)))
111 return destination;
116 String destination = retrieveDestinationWithSuggestedFilename(filename, allowOverwrite); local
118 didDecideDestination(destination, allowOverwrite);
120 return destination;
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbSocket.java 38 public boolean open(String destination) {
40 message.set(AdbMessage.A_OPEN, mId, 0, destination);
  /external/webkit/Source/WebCore/platform/graphics/mac/
ImageMac.mm 97 RetainPtr<CGImageDestinationRef> destination(AdoptCF, CGImageDestinationCreateWithData(data.get(), CFSTR("public.tiff"), numValidFrames, 0));
99 if (!destination)
103 CGImageDestinationAddImage(destination.get(), images[i], 0);
105 CGImageDestinationFinalize(destination.get());
  /external/webkit/Source/WebCore/platform/mac/
PlatformScreenMac.mm 88 FloatRect toUserSpace(const NSRect& rect, NSWindow *destination)
91 userRect.setY(NSMaxY([screenForWindow(destination) frame]) - (userRect.y() + userRect.height())); // flip
92 if (destination)
93 userRect.scale(1 / windowScaleFactor(destination)); // scale down
  /external/webkit/Source/WebCore/webaudio/
AudioNode.idl 33 [Custom] void connect(in AudioNode destination, in unsigned long output, in unsigned long input)
DelayDSPKernel.cpp 78 void DelayDSPKernel::process(const float* source, float* destination, size_t framesToProcess)
87 ASSERT(source && destination);
88 if (!source || !destination)
128 *destination++ = static_cast<float>(output);
DelayDSPKernel.h 41 virtual void process(const float* source, float* destination, size_t framesToProcess);
  /external/webkit/Source/WebKit/chromium/src/mac/
WebScreenInfoFactory.mm 53 static WebRect toUserSpace(const NSRect& rect, NSWindow* destination)
58 NSMaxY([screenForWindow(destination) frame]) - (userRect.origin.y + userRect.size.height); // flip
60 if (destination) {
61 CGFloat scale = 1 / [destination userSpaceScaleFactor]; // scale down
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEntry.java 53 /** Destination for this contact entry. Would be an email address or a phone number. */
55 /** Type of the destination like {@link Email#TYPE_HOME} */
58 * Label of the destination which will be used when type was {@link Email#TYPE_CUSTOM}.
64 /** ID for the destination */
91 String destination, int destinationType, String destinationLabel,
96 mDestination = destination;
137 String displayName, String destination, int destinationType, String destinationLabel,
140 destination, destinationType, destinationLabel,
146 String displayName, String destination, int destinationType, String destinationLabel,
151 destination, destinationType, destinationLabel
    [all...]
  /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/webkit/Source/WebCore/platform/cf/
SharedBufferCF.cpp 102 void SharedBuffer::copyDataArrayAndClear(char *destination, unsigned bytesToCopy) const
112 memcpy(destination, CFDataGetBytePtr(it->get()), dataLen);
113 destination += dataLen;
  /external/webkit/Source/WebCore/platform/image-decoders/haiku/
ImageDecoderHaiku.cpp 40 uint8* destination = reinterpret_cast<uint8*>(bitmap->Bits()); local
49 uint8* destinationHandle = destination;
66 destination += bytesPerRow;
  /external/v8/src/
lithium.cc 119 LOperand* destination = move_operands_[i].destination(); local
122 if (source->Equals(destination)) {
123 destination->PrintTo(stream);
125 destination->PrintTo(stream);
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEComposite.cpp 119 inline void computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength,
131 unsigned char i2 = *destination;
143 *destination = 0;
145 *destination = 255;
147 *destination = result;
149 ++destination;
159 unsigned char* destination = srcPixelArrayB->data(); local
163 computeArithmeticPixels<0, 1, 1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
167 computeArithmeticPixels<1, 1, 1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
172 computeArithmeticPixels<0, 1, 1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4)
    [all...]
  /frameworks/base/core/java/android/net/
RouteInfo.java 36 * The IP destination address for this route.
48 public RouteInfo(LinkAddress destination, InetAddress gateway) {
49 if (destination == null) {
52 destination = new LinkAddress(Inet4Address.ANY, 0);
54 destination = new LinkAddress(Inet6Address.ANY, 0);
57 // no destination, no gateway. invalid.
62 if (destination.getAddress() instanceof Inet4Address) {
68 mDestination = new LinkAddress(NetworkUtils.getNetworkPart(destination.getAddress(),
69 destination.getNetworkPrefixLength()), destination.getNetworkPrefixLength())
    [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 128 void verifySpaceBeforeWritingToFile(int destination, String path, long length)
135 verifySpace(destination, path, length);
138 void verifySpace(int destination, String path, long length) throws StopRequestException {
142 Log.i(Constants.TAG, "in verifySpace, destination: " + destination +
148 switch (destination) {
171 throw new IllegalStateException("invalid combination of destination: " + destination +
174 findSpace(dir, length, destination);
182 private synchronized void findSpace(File root, long targetBytes, int destination)
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
HistoryDelegate.cpp 161 wstring destination; local
163 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
165 printf("WebView performed a client redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str());
178 wstring destination; local
180 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
182 printf("WebView performed a server redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str());

Completed in 407 milliseconds

12 3 4 5 6 7 8 91011>>