/packages/apps/Gallery2/jni/filters/ |
H A D | exposure.c | 25 int len = width * height * 4; local 29 for (i = 0; i < len; i+=4)
|
H A D | contrast.c | 45 int len = width * height * 4; local 49 for (i = 0; i < len; i+=4) {
|
H A D | gradient.c | 35 int len = width * height * 4; local 36 for (i = 0; i < len; i+=4)
|
H A D | highlight.c | 26 int len = width * height * 4; local 30 for (i = 0; i < len; i+=4)
|
H A D | hue.c | 25 int len = width * height * 4; local 28 for (i = 0; i < len; i+=4)
|
H A D | shadows.c | 34 int len = width * height * 4; local 43 for (i = 0; i < len; i+=4)
|
H A D | bwfilter.c | 38 int len = width * height * 4; local 40 for (i = 0; i < len; i+=4)
|
H A D | kmeans.cc | 49 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 D | ByteBufferInputStream.java | 39 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 D | ByteBufferInputStream.java | 39 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/src/com/android/gallery3d/exif/ |
H A D | ByteBufferInputStream.java | 39 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 D | ByteBufferInputStream.java | 39 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/UnifiedEmail/src/org/apache/commons/io/input/ |
H A D | AutoCloseInputStream.java | 106 * @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 D | CountingInputStream.java | 68 * @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 D | CountingOutputStream.java | 65 * @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 D | NullOutputStream.java | 42 * @param len The number of bytes to write
44 public void write(byte[] b, int off, int len) {
argument
|
H A D | TeeOutputStream.java | 58 * @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 D | RootInputStream.java | 90 public int read(byte[] b, int off, int len) throws IOException {
argument 95 int n = is.read(b, off, len);
|
H A D | CloseShieldInputStream.java | 115 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 D | MessageHeaderViewTest.java | 54 private static String[] makeRecipientArray(String prefix, int len) { argument 55 String[] arr = new String[len];
|
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/ |
H A D | necode.c | 39 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 D | Base64InputStream.java | 130 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 D | Base64InputStream.java | 104 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 D | PartialInputStream.java | 50 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.
|
/packages/inputmethods/PinyinIME/jni/share/ |
H A D | sync.cpp | 70 int Sync::put_lemmas(char16 * lemmas, int len) { argument 71 return userdict_->put_lemmas_no_sync_from_utf16le_string(lemmas, len);
|