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

123

/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 Dbw.c24 int len = width * height * 4; local
29 for (i = 0; i < len; i+=4)
48 int len = width * height * 4; local
49 for (i = 0; i < len; i+=4)
70 int len = width * height * 4; local
71 for (i = 0; i < len; i+=4)
92 int len = width * height * 4; local
93 for (i = 0; i < len; i+=4)
H A Dcontrast.c36 int len = width * height * 4; local
40 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 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 Dvignette.c58 int len = width * height * 4; local
61 for (i = 0; i < len; i += 4)
H A Dsaturated.c24 int len = width * height * 4; local
34 for (i = 0; i < len; i+=4)
/packages/apps/Email/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/Email/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);
H A DThresholdingOutputStream.java116 * Writes <code>len</code> bytes from the specified byte array starting at
121 * @param len The number of bytes to write.
125 public void write(byte b[], int off, int len) throws IOException argument
127 checkThreshold(len);
128 getStream().write(b, off, len);
129 written += len;
H A DByteArrayOutputStream.java137 * @param len The number of bytes to write
140 public void write(byte[] b, int off, int len) { argument
143 || (len < 0)
144 || ((off + len) > b.length)
145 || ((off + len) < 0)) {
147 } else if (len == 0) {
151 int newcount = count + len;
152 int remaining = len;
156 System.arraycopy(b, off + len - remaining, currentBuffer, inBufferPos, part);
/packages/apps/Email/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/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/Email/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/Email/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.
H A DPositionInputStream.java81 public int read(byte b[], int off, int len) throws IOException { argument
82 final int c = inputStream.read(b, off, len);
/packages/apps/Exchange/exchange2/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/inputmethods/PinyinIME/jni/share/
H A Dsync.cpp70 int Sync::put_lemmas(char16 * lemmas, int len) { argument
71 return userdict_->put_lemmas_no_sync_from_utf16le_string(lemmas, len);
/packages/apps/Email/src/org/apache/james/mime4j/field/address/
H A DBuilder.java218 private int len; field in class:Builder.ChildNodeIterator
222 this.len = simpleNode.jjtGetNumChildren();
231 return index < len;

Completed in 242 milliseconds

123