Searched defs:len (Results 1 - 25 of 84) sorted by relevance

1234

/packages/apps/Gallery2/jni/filters/
H A Dexposure.c25 int len = width * height * 4; local
29 for (i = 0; i < len; i+=4)
H A Dcontrast.c45 int len = width * height * 4; local
49 for (i = 0; i < len; i+=4) {
H A Dgradient.c35 int len = width * height * 4; local
36 for (i = 0; i < len; i+=4)
H A Dhighlight.c28 int len = width * height * 4; local
32 for (i = 0; i < len; i+=4)
H A Dhue.c25 int len = width * height * 4; local
28 for (i = 0; i < len; i+=4)
H A Dshadows.c36 int len = width * height * 4; local
45 for (i = 0; i < len; i+=4)
H A Dbwfilter.c38 int len = width * height * 4; local
40 for (i = 0; i < len; i+=4)
/packages/apps/Camera2/src/com/android/camera/exif/
H A DByteBufferInputStream.java39 public int read(byte[] bytes, int off, int len) { argument
44 len = Math.min(len, mBuf.remaining());
45 mBuf.get(bytes, off, len);
46 return len;
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DByteBufferInputStream.java39 public int read(byte[] bytes, int off, int len) { argument
44 len = Math.min(len, mBuf.remaining());
45 mBuf.get(bytes, off, len);
46 return len;
/packages/apps/Messaging/src/com/android/messaging/util/exif/
H A DByteBufferInputStream.java39 public int read(byte[] bytes, int off, int len) { argument
44 len = Math.min(len, mBuf.remaining());
45 mBuf.get(bytes, off, len);
46 return len;
/packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/
H A Dtutorial.cpp125 int len = sprintf(buffer, "%s %s", "Milo", "Yip"); // synthetic example of dynamically created string. local
127 author.SetString(buffer, static_cast<size_t>(len), document.GetAllocator());
132 // Value author(buffer, len, document.GetAllocator());
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DAutoCloseInputStream.java106 * @param len maximum number of bytes to read
110 public int read(byte[] b, int off, int len) throws IOException { argument
111 int n = in.read(b, off, len);
H A DCountingInputStream.java68 * @param len the maximum number of bytes to read
73 public int read(byte[] b, int off, int len) throws IOException { argument
74 int found = super.read(b, off, len);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DCountingOutputStream.java65 * @param len the maximum number of bytes to write
69 public void write(byte[] b, int off, int len) throws IOException { argument
70 count += len;
71 super.write(b, off, len);
H A DNullOutputStream.java42 * @param len The number of bytes to write
44 public void write(byte[] b, int off, int len) { argument
H A DTeeOutputStream.java58 * @param len The number of bytes to write
61 public synchronized void write(byte[] b, int off, int len) throws IOException { argument
62 super.write(b, off, len);
63 this.branch.write(b, off, len);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
H A DRootInputStream.java90 public int read(byte[] b, int off, int len) throws IOException { argument
95 int n = is.read(b, off, len);
H A DCloseShieldInputStream.java115 public int read(byte b[], int off, int len) throws IOException { argument
117 return is.read(b, off, len);
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
H A DMessageHeaderViewTest.java59 private static String[] makeRecipientArray(String prefix, int len) { argument
60 String[] arr = new String[len];
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DContactsDictionaryUtils.java31 public static int getWordEndPosition(final String string, final int len, argument
35 for (end = startIndex + 1; end < len; end += Character.charCount(cp)) {
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dnecode.c39 NJ_INT16 nje_convert_hira_to_kata(NJ_CHAR *hira, NJ_CHAR *kata, NJ_UINT16 len) argument
46 while (pnt < len) {
/packages/apps/Nfc/nci/jni/extns/pn54x/inc/
H A DphNxpExtns_Custom.h32 uint8_t len; member in struct:__anon17
78 ** function. Input is type and len. Response is provied in
96 ** function. Input is type, len, *val.
/packages/apps/Nfc/nci/jni/extns/pn54x/src/log/
H A DphNxpLog.cpp61 int len = property_get(PROP_NAME_NXPLOG_GLOBAL_LOGLEVEL, valueStr, ""); local
62 if (len > 0) {
82 int len; local
91 len = property_get(PROP_NAME_NXPLOG_HAL_LOGLEVEL, valueStr, "");
92 if (len > 0) {
112 int len; local
120 len = property_get(PROP_NAME_NXPLOG_EXTNS_LOGLEVEL, valueStr, "");
121 if (len > 0) {
141 int len; local
149 len
170 int len; local
199 int len; local
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
H A DBase64InputStream.java104 private void decodeAndEnqueue(int len) { argument
112 // for the most common case of len==4
113 if (len == 4) {
119 } else if (len == 3) {
124 } else { // len == 2
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
H A DPartialInputStream.java50 public int read(byte b[], int off, int len) throws IOException { argument
51 len = Math.min(len, getBytesLeft());
52 return super.read(b, off, len); //To change body of overridden methods use File | Settings | File Templates.

Completed in 1767 milliseconds

1234