/packages/apps/Gallery2/jni/filters/ |
vibrance.c | 22 char* destination = 0; local 23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination); 38 int r = destination[RED]; 39 int g = destination[GREEN]; 40 int b = destination[BLUE]; 57 destination[RED] = CLAMP(Rc); 58 destination[GREEN] = CLAMP(Gc); 59 destination[BLUE] = CLAMP(Bc);
|
fx.c | 36 char* destination = 0; local 38 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination); 40 unsigned char * rgb = (unsigned char * )destination;
|
geometry.c | 20 __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 30 memcpy(destination + temp - i, source + i, bytes_to_copy); 34 __inline__ void flipHorizontal(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 46 memcpy(destination + temp - j, source + i + j, cpy_bytes); 51 __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 58 flipVertical(temp, dstWidth, dstHeight, destination, dstWidth, dstHeight); 63 flipHorizontal(source, srcWidth, srcHeight, destination, dstWidth, dstHeight); 67 flipVertical(source, srcWidth, srcHeight, destination, dstWidth, dstHeight); 73 __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 84 memcpy(destination + column_disp + row_disp , source + j * srcWidth + i, cpy_bytes) 131 char* destination = 0; local 144 char* destination = 0; local 155 char* destination = 0; local 166 char* destination = 0; local [all...] |
tinyplanet.cc | 135 char* destination = 0; local 137 AndroidBitmap_lockPixels(env, bitmap_out, (void**) &destination); 139 unsigned char * rgb_out = (unsigned char * )destination;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/ |
SimpleFile.java | 46 public String destination; field in class:SimpleFile.FileOp 68 else if (fileArg.getName().equals("destination")) //$NON-NLS-1$ 69 op.destination = fileArg.getSimpleValue(); 71 if (op.source == null || op.destination == null) 91 IFile destFile = project.getFile(new Path(op.destination));
|
/external/chromium/net/socket/ |
socks_client_socket_pool.h | 37 const HostResolver::RequestInfo& destination() const { return destination_; } function in class:net::SOCKSSocketParams 52 // This is the HTTP destination.
|
tcp_client_socket_pool.h | 39 const HostResolver::RequestInfo& destination() const { return destination_; } function in class:net::TCPSocketParams
|
transport_client_socket_pool.h | 34 const HostResolver::RequestInfo& destination() const { return destination_; } function in class:net::TransportSocketParams
|
/external/chromium/net/tools/tld_cleanup/ |
tld_cleanup.cc | 258 logging::LoggingDestination destination = logging::LOG_ONLY_TO_FILE; local 260 logging::LoggingDestination destination = local 271 destination,
|
/external/chromium_org/chrome/browser/extensions/api/file_system/ |
file_system_apitest.cc | 99 base::FilePath destination = temp_dir_.path().AppendASCII(destination_name); local 102 EXPECT_TRUE(base::CopyFile(source, destination)); 104 return destination; 121 base::FilePath destination = temp_dir_.path().AppendASCII(*it); local 124 EXPECT_TRUE(base::CopyFile(source, destination)); 126 result.push_back(destination);
|
/external/chromium_org/content/browser/renderer_host/media/ |
audio_mirroring_manager_unittest.cc | 123 MockMirroringDestination* const destination = local 125 StopMirroringTo(kRenderProcessId, kRenderViewId, destination); 129 MockMirroringDestination* const destination = local 131 StopMirroringTo(kRenderProcessId, kRenderViewId, destination); 140 MockMirroringDestination* const destination = local 144 StopMirroringTo(kRenderProcessId, kRenderViewId, destination); 150 MockMirroringDestination* const destination = local 152 StopMirroringTo(kRenderProcessId, kRenderViewId, destination); 157 MockMirroringDestination* const destination = local 161 StopMirroringTo(kRenderProcessId, kRenderViewId, destination); 166 MockMirroringDestination* const destination = local 176 MockMirroringDestination* const destination = local 189 MockMirroringDestination* const destination = local 206 MockMirroringDestination* const destination = local [all...] |
/external/chromium_org/jingle/glue/ |
fake_socket_factory.cc | 52 net::IPEndPoint destination; local 53 if (!SocketAddressToIPEndPoint(address, &destination)) { 60 fake_socket_manager_->SendPacket(endpoint_, destination, data_vector); 144 LOG(WARNING) << "Dropping packet with unknown destination: "
|
/external/chromium_org/media/midi/ |
midi_manager_mac.cc | 76 MIDIEndpointRef destination = MIDIGetDestination(i); local 80 destinations_[i] = destination; 82 MIDIPortInfo info = GetPortInfoFromEndpoint(destination); 186 // Lookup the destination based on the port index. 190 MIDIEndpointRef destination = destinations_[port_index]; 192 MIDISend(coremidi_output_, destination, packet_list_);
|
/external/chromium_org/net/socket/ |
socks_client_socket_pool.h | 36 const HostResolver::RequestInfo& destination() const { return destination_; } function in class:net::SOCKSSocketParams 46 // This is the HTTP destination.
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
ReverbConvolver.cpp | 161 float* destination = destinationChannel->mutableData(); local 162 bool isDataSafe = source && destination; 175 m_accumulationBuffer.readAndClear(destination, framesToProcess);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
extension_set_unittest.cc | 267 unittest::TestAllTypes destination; local 275 EXPECT_TRUE(destination.ParseFromString(data)); 276 TestUtil::ExpectAllFieldsSet(destination); 288 unittest::TestAllTypes destination; local 299 EXPECT_TRUE(destination.ParseFromString(data)); 300 TestUtil::ExpectAllFieldsSet(destination); 311 unittest::TestPackedTypes destination; local 319 EXPECT_TRUE(destination.ParseFromString(data)); 320 TestUtil::ExpectPackedFieldsSet(destination); 332 unittest::TestPackedTypes destination; local 350 unittest::TestAllExtensions destination; local 362 unittest::TestPackedExtensions destination; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/ |
RSSFeedUtil.java | 115 * Copies all bytes in the given source stream to the given destination 122 * @param destination 123 * the given destination stream 125 public static void transferData(InputStream source, OutputStream destination) throws IOException 133 destination.write(buffer, 0, bytesRead);
|
/external/protobuf/src/google/protobuf/ |
extension_set_unittest.cc | 190 unittest::TestAllTypes destination; local 198 EXPECT_TRUE(destination.ParseFromString(data)); 199 TestUtil::ExpectAllFieldsSet(destination); 211 unittest::TestAllTypes destination; local 222 EXPECT_TRUE(destination.ParseFromString(data)); 223 TestUtil::ExpectAllFieldsSet(destination); 234 unittest::TestPackedTypes destination; local 242 EXPECT_TRUE(destination.ParseFromString(data)); 243 TestUtil::ExpectPackedFieldsSet(destination); 255 unittest::TestPackedTypes destination; local 273 unittest::TestAllExtensions destination; local 285 unittest::TestPackedExtensions destination; local [all...] |
/packages/apps/Camera2/jni/ |
tinyplanet.cc | 136 char* destination = 0; local 138 AndroidBitmap_lockPixels(env, bitmap_out, (void**) &destination); 140 unsigned char * rgb_out = (unsigned char * )destination;
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoCarousel.java | 186 ImageView destination = getBackface(); local 191 destination.setImageBitmap(photo); 192 destination.setTag(R.id.photo_orientation, Integer.valueOf(orientation)); 193 destination.setTag(R.id.photo_width, Integer.valueOf(width)); 194 destination.setTag(R.id.photo_height, Integer.valueOf(height)); 195 setScaleType(destination); 197 Bitmap old = mBitmapStore.put(destination, photo);
|
/external/chromium/chrome/browser/debugger/ |
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/chromium/net/http/ |
http_proxy_client_socket_pool.cc | 57 const HostResolver::RequestInfo& HttpProxySocketParams::destination() const { function in class:net::HttpProxySocketParams 59 return ssl_params_->transport_params()->destination(); 61 return transport_params_->destination(); 191 params_->transport_params()->destination().priority(), 213 HostPortProxyPair pair(params_->destination().host_port_pair(), 225 params_->ssl_params()->transport_params()->destination().priority(), 276 const HostResolver::RequestInfo& tcp_destination = params_->destination(); 319 HostPortProxyPair pair(params_->destination().host_port_pair(), 342 params_->destination().priority(), 365 params_->destination().host_port_pair() [all...] |
/external/chromium_org/chrome/browser/ui/fullscreen/ |
fullscreen_controller_state_test.cc | 221 State destination = transition_table_[source][event]; local 222 state_transitions_[source][destination].event = static_cast<Event>(event); 223 state_transitions_[source][destination].state = destination; 224 state_transitions_[source][destination].distance = 1; 601 State destination, 606 if (state_transitions_[source][destination].state == STATE_INVALID) { 620 next_state_candidate, destination, search_limit - 1); 630 state_transitions_[source][destination] = result; 633 return state_transitions_[source][destination]; [all...] |
/external/chromium_org/chrome/installer/mini_installer/ |
decompress.cc | 118 // we take a shortcut and provide a pointer to the wide destination file 121 const wchar_t* destination = reinterpret_cast<const wchar_t*>(pfdin->pv); local 125 result = reinterpret_cast<INT_PTR>(::CreateFileW(destination, 143 ::SetFileAttributes(destination, pfdin->attribs); 223 bool Expand(const wchar_t* source, const wchar_t* destination) { 241 scoped_ptr<char> dest_utf8(WideToUtf8(destination, -1)); 252 &Notify, NULL, const_cast<wchar_t*>(destination))) {
|