/external/webp/src/dec/ |
vp8l.c | 4 // that can be found in the COPYING file in the root of the source 6 // in the file PATENTS. All contributing project authors may 7 // be found in the AUTHORS file in the root of the source tree. 153 // to ReadSymbol, in order to pre-fetch enough bits. 319 // The huffman data is stored in red and green bytes. 440 uint8_t* in, int in_stride, int mb_h, 446 uint8_t* const row_in = in + num_lines_in * in_stride; 472 return mb_h; // Num rows out == num rows in 729 const uint8_t* const in = local 1231 const uint32_t* const in = dec->pixels_ + dec->width_ * dec->last_row_; local [all...] |
/external/webp/src/dsp/ |
dec_neon.c | 4 // that can be found in the COPYING file in the root of the source 6 // in the file PATENTS. All contributing project authors may 7 // be found in the AUTHORS file in the root of the source tree. 90 uint32x4x4_t in; local 91 INIT_VECTOR4(in, zero, zero, zero, zero); 93 LOADQ_LANE_32b(in.val[0], 0); 94 LOADQ_LANE_32b(in.val[1], 0); 95 LOADQ_LANE_32b(in.val[2], 0) [all...] |
enc_neon.c | 4 // that can be found in the COPYING file in the root of the source 6 // in the file PATENTS. All contributing project authors may 7 // be found in the AUTHORS file in the root of the source tree. 27 // This code is pretty much the same as TransformOne in the dec_neon.c, except 120 const int16_t* in, uint8_t* dst) { 122 INIT_VECTOR2(rows, vld1q_s16(in + 0), vld1q_s16(in + 8)); 131 const int16_t* in, uint8_t* dst) 485 int16x4x4_t in; local [all...] |
/external/wpa_supplicant_8/src/utils/ |
http_curl.c | 880 BIO *in, *out; local 886 in = BIO_new_file(fname, "r"); 887 if (in == NULL) { 892 cert = d2i_X509_bio(in, NULL); 893 BIO_free(in); [all...] |
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayer.cpp | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 148 // Use this if there's no state necessary to save in order to execute 262 // The correct flags will be updated in Source::kWhatFlagsChanged 622 msg->post(1000000ll); // poll again in a second. 639 // be in preparing state and it could take long time. 658 // If the video decoder is not set (perhaps audio only in this case) 2265 Parcel in; local 2280 Parcel in; local [all...] |
/frameworks/base/cmds/pm/src/com/android/commands/pm/ |
Pm.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 589 * Lists all the permissions in a group. 803 * in PackageManager. 1260 InputStream in = null; local [all...] |
/frameworks/base/core/java/android/app/ |
ApplicationThreadNative.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 61 IApplicationThread in = local 63 if (in != null) { 64 return in; [all...] |
/frameworks/base/core/java/android/widget/ |
ExpandableListView.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 40 * A view that shows items in a vertically scrolling two-level list. This 66 * ExpandableListView in XML if the parent's size is also not strictly specified 108 /** The mask (in packed position representation) for the child */ 111 /** The mask (in packed position representation) for the group */ 114 /** The mask (in packed position representation) for the type */ 117 /** The shift amount (in packed position representation) for the group */ 120 /** The shift amount (in packed position representation) for the type */ 123 /** The mask (in integer child position representation) for the child * [all...] |
/frameworks/base/core/java/com/android/internal/app/ |
ChooserActivity.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 185 final Intent in = (Intent) pa[i]; local 186 modifyTargetIntent(in); 187 initialIntents[i] = in; 268 private void modifyTargetIntent(Intent in) { 269 final String action = in.getAction(); 272 in.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT | 366 + " in the manifest."); 543 // TODO do this in the backgroun [all...] |
/frameworks/base/core/jni/ |
android_os_Debug.cpp | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 169 * Any graphics memory reported in /proc/pid/smaps is not included here. 205 * Retrieves the graphics memory that is unaccounted for in /proc/pid/smaps. 705 // Recompute Vmalloc Used since the value in meminfo 770 // these are implemented in android_util_Binder.cpp 837 * them, we can do this in place. 902 FILE* in = fopen(maps, "r"); local 903 if (in == NULL) { 908 while (size_t n = fread(buf, sizeof(char), BUFSIZ, in)) { [all...] |
/frameworks/base/media/java/android/media/ |
TtmlRenderer.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 114 * Parses the given time expression and returns a timestamp in millisecond. 123 * @return the parsed timestamp in micro-second. 175 * @param in A string to apply the policy. 177 public static String applyDefaultSpacePolicy(String in) { 178 return applySpacePolicy(in, true); 187 * @param in A string to apply the policy. 190 public static String applySpacePolicy(String in, boolean treatLfAsSpace) { 193 String crRemoved = in.replaceAll("\r\n", "\n") 385 StringReader in = new StringReader(ttmlFragment); local [all...] |
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/ |
RemotePrintDocument.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 177 throw new IllegalStateException("Cannot start in state:" + stateToString(mState)); 200 throw new IllegalStateException("Cannot update in state:" + stateToString(mState)); 222 // If no layout in progress and we don't have all pages - schedule a write. 264 throw new IllegalStateException("Cannot finish in state:" 286 throw new IllegalStateException("Cannot cancel in state:" + stateToString(mState)); 299 throw new IllegalStateException("Cannot destroy in state:" + stateToString(mState)); 349 InputStream in = null; local 353 in = new FileInputStream(file) 903 InputStream in = null; local [all...] |
/frameworks/base/services/core/java/com/android/server/connectivity/ |
Vpn.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 407 // TODO: Stop setting the MTU in jniCreate and set it here. 523 // Save the old config in case we need to go back. 1277 InputStream in = mSockets[i].getInputStream(); local [all...] |
/frameworks/base/services/core/jni/ |
com_android_server_location_GpsLocationProvider.cpp | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 34 #include <linux/in.h> 222 struct sockaddr_in *in = (struct sockaddr_in*)&(agps_status->addr); local 223 uint32_t ipAddr = *(uint32_t*)&(in->sin_addr); 229 // log the IP for reference in case there is a bogus value pushed by HAL 231 inet_ntop(AF_INET, &(in->sin_addr), str, INET_ADDRSTRLEN); 247 // log the IP for reference in case there is a bogus value pushed by HAL 260 // for back-compatibility reasons we check in v2 that the data structure size is greater or 261 // equal to the declared size in gps. [all...] |
/hardware/qcom/audio/hal/ |
audio_hw.c | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 58 /* ToDo: Check and update a proper value in msec */ 530 * Do not handle stereo output in Multi-channel cases 531 * Stereo case is handled in normal playback path 642 usecase->devices = usecase->stream.in->device; 668 * Limitation: While in call, to do a device switch we need to disable 691 * the devices to reduce in-call device switch time. 735 static int stop_input_stream(struct stream_in *in) 739 struct audio_device *adev = in->dev 1776 struct stream_in *in = (struct stream_in *)stream; local 1788 struct stream_in *in = (struct stream_in *)stream; local 1796 struct stream_in *in = (struct stream_in *)stream; local 1813 struct stream_in *in = (struct stream_in *)stream; local 1849 struct stream_in *in = (struct stream_in *)stream; local 1906 struct stream_in *in = (struct stream_in *)stream; local 1965 struct stream_in *in = (struct stream_in *)stream; local 2456 struct stream_in *in; local 2635 struct stream_in in; local [all...] |
/hardware/ti/omap4-aah/camera/ |
CameraHal.cpp | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 61 // The directory name is choosed in so weird way to enable RAW images saving only when 173 @param[in] notify_cb Notify callback for notifying the app about events and errors 174 @param[in] data_cb Buffer callback for sending the preview/raw frames to the app 175 @param[in] data_cb_timestamp Buffer callback for sending the video frames w/ timestamp 176 @param[in] user Callback cookie 208 @param[in] msgtype Bitmask of the messages to enable (defined in include/ui/Camera.h) 222 // we will enable internally in autoFocus cal 2302 android::sp<DisplayAdapter> in; local 2313 android::sp<DisplayAdapter> in = new BufferSourceAdapter(); local 2385 android::sp<DisplayAdapter> in; local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
SerializationStressTest2.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 54 private void readObject(java.io.ObjectInputStream in) 56 in.defaultReadObject(); 60 milliseconds = in.readLong(); 112 private void readObject(java.io.ObjectInputStream in) 114 ObjectInputStream.GetField fields = in.readFields(); 142 private void readObject(java.io.ObjectInputStream in) 144 ObjectInputStream.GetField fields = in.readFields(); 163 private void readObject(java.io.ObjectInputStream in) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
ServerSocketChannelTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 78 // Test for methods in abstract class. 135 // Bind to a local address that is in use 413 InputStream in = serverSocket.getInputStream(); local 417 assertReadResult(in,CAPACITY_NORMAL); 426 private void assertReadResult(InputStream in, int size) throws IOException{ 430 while ((count = in.read(readContent, total, size + 1 - total)) != -1) { 452 InputStream in = serverSocket.getInputStream(); local 455 assertReadResult(in,CAPACITY_NORMAL) 514 InputStream in = socket.getInputStream(); local 559 InputStream in = socket.getInputStream(); local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
SSLEngineTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 1031 private final SourceChannel in; field in class:SSLEngineTest.HandshakeHandler [all...] |
/libcore/luni/src/main/java/java/math/ |
BigDecimal.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 116 * An array with powers of five that fit in the type <code>long</code> 122 * An array with powers of ten that fit in the type <code>long</code> 212 * The arbitrary precision integer (unscaled value) in the internal 222 * The 32-bit integer scale in the internal representation of {@code BigDecimal}. 227 * Represent the number of decimal digits in the unscaled value. This 228 * precision is calculated the first time, and used in the following calls 253 * @param in 262 * offset+len-1 >= in.length}, or if {@code in} does no [all...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/ |
HttpsURLConnectionTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 155 * Tests the behaviour of HTTPS connection in case of unavailability of requested resource. 285 * Tests the behaviour of HttpsURLConnection in case of retrieving 353 * Tests the behaviour in case of sending the data to the server. 581 * (Authenticator was not set up in the system). 616 * Tests the behaviour of HTTPS connection in case of unavailability of requested resource (as 669 InputStream in = getClass().getClassLoader().getResourceAsStream(ksFileName); local 671 BufferedInputStream bufIn = new BufferedInputStream(in, 8192); 710 * type installed in the system in lower case) is searched in classpath [all...] |
/ndk/sources/host-tools/make-3.81/ |
job.c | 11 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY 214 /* Nonzero if the `good' standard input is in use. */ 226 /* Number of jobs started in the current second. */ 237 * The macro which references this function is defined in make.h. 370 /* in doubt assume a unix like shell */ 377 /* Write an error message describing the exit status given in 413 the dead children. In this case we don't need the dead_children count. 444 state (`cs_finished') in the `file' member of the `struct child' for the 445 dead child, and removing the child from the chain. In addition, if BLOCK 446 nonzero, we block in this function until we've reaped at least on 1513 char *in, *out, *ref; local [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapService.java | 4 * you may not use this file except in compliance with the License. 9 * Unless required by applicable law or agreed to in writing, software 58 * To enable MAP DEBUG/VERBOSE logging - run below cmd in adb shell, and 162 if (DEBUG) Log.d(TAG, "MAP Service closeService in"); 581 * No changes will be applied unless in disconnected state 603 * - Each change in accounts 680 * Will ensure the key returned is greater than the largest key in use. 681 * Unless the key 255 is in use, in which case the first free masId 686 /* Find the largest masId in use * 997 Intent in = new Intent(context, BluetoothMapSettings.class); local [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherBackupHelper.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 190 * <P>Keys may come back in any order, so each key/value is one complete row of the database. 201 Journal in = readJournal(oldState); local 205 writeJournal(newState, in); 216 Log.v(TAG, "lastBackupTime = " + in.t); 218 applyJournal(in); 221 // was going on, do not get missed in next backup. 230 // Delete any key which still exist in the old backup, but is not valid anymore. 237 // Delete anything left in the existing keys [all...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.equinox.p2.jarprocessor_1.0.300.v20130327-2119.jar | |