Searched defs:len (Results 1 - 25 of 88) 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.c26 int len = width * height * 4; local
30 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.c34 int len = width * height * 4; local
43 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)
H A Dkmeans.cc49 int len = swidth * sheight * 4; local
58 runKMeans<unsigned char, int>(k, finalCentroids, small_ds, len, dimension,
62 len = lwidth * lheight * 4;
67 runKMeansWithPicks<unsigned char, int>(k, nextCentroids, large_ds, len,
70 len = width * height * 4;
73 applyCentroids<unsigned char, int>(k, nextCentroids, dst, len, dimension, stride);
/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/Launcher3/WallpaperPicker/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/Mms/src/com/android/mms/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/OMA-DM/engine/dmlib/dmengine/dm_ua/src/
H A DdmMetaDataBuffer.cc97 UINT8 len = sizeof(FLOAT) - 1; local
99 for (int i=0; i<=len; i++)
/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/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/Exchange/src/com/android/exchange/adapter/
H A DBase64InputStream.java130 private void decodeAndEnqueue(int len) { argument
138 // for the most common case of len==4
139 if (len == 4) {
145 } else if (len == 3) {
150 } else { // len == 2
/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 483 milliseconds

1234