Searched refs:off (Results 1 - 25 of 82) sorted by relevance

1234

/frameworks/base/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp116 const unsigned int off = 0xffffffff; local
119 on, off, on, off, on, off, on, off,
120 off, on, off, on, off, on, off, on,
121 on, off, o
[all...]
/frameworks/base/opengl/tests/tritex/
H A Dtritex.cpp208 const unsigned int off = 0xffffffff; local
211 on, off, on, off, on, off, on, off,
212 off, on, off, on, off, on, off, on,
213 on, off, o
[all...]
/frameworks/base/awt/javax/imageio/stream/
H A DImageOutputStream.java61 * @param off
68 void write(byte[] b, int off, int len) throws IOException; argument
199 * @param off
206 void writeShorts(short[] s, int off, int len) throws IOException; argument
213 * @param off
220 void writeChars(char[] c, int off, int len) throws IOException; argument
228 * @param off
235 void writeInts(int[] i, int off, int len) throws IOException; argument
243 * @param off
250 void writeLongs(long[] l, int off, in argument
265 writeFloats(float[] f, int off, int len) argument
280 writeDoubles(double[] d, int off, int len) argument
[all...]
H A DImageInputStream.java79 * @param off
87 int read(byte[] b, int off, int len) throws IOException; argument
228 * @param off
235 void readFully(byte[] b, int off, int len) throws IOException; argument
254 * @param off
261 void readFully(short[] s, int off, int len) throws IOException; argument
269 * @param off
276 void readFully(char[] c, int off, int len) throws IOException; argument
284 * @param off
291 void readFully(int[] i, int off, in argument
306 readFully(long[] l, int off, int len) argument
321 readFully(float[] f, int off, int len) argument
336 readFully(double[] d, int off, int len) argument
[all...]
H A DImageOutputStreamImpl.java53 public abstract void write(byte[] b, int off, int len) throws IOException; argument
119 public void writeShorts(short[] s, int off, int len) throws IOException { argument
124 public void writeChars(char[] c, int off, int len) throws IOException { argument
129 public void writeInts(int[] i, int off, int len) throws IOException { argument
134 public void writeLongs(long[] l, int off, int len) throws IOException { argument
139 public void writeFloats(float[] f, int off, int len) throws IOException { argument
144 public void writeDoubles(double[] d, int off, int len) throws IOException { argument
H A DFileCacheImageInputStream.java94 public int read(byte[] b, int off, int len) throws IOException { argument
98 int nBytes = is.read(b, off, len);
105 raf.write(b, off, nBytes);
111 int nBytes = raf.read(b, off, len);
H A DFileImageOutputStream.java77 public void write(byte[] b, int off, int len) throws IOException { argument
81 file.write(b, off, len);
96 public int read(byte[] b, int off, int len) throws IOException { argument
98 int rt = file.read(b, off, len);
H A DMemoryCacheImageOutputStream.java66 public void write(byte[] b, int off, int len) throws IOException { argument
69 ramc.putData(b, off, len, streamPos);
85 public int read(byte[] b, int off, int len) throws IOException { argument
88 int res = ramc.getData(b, off, len, streamPos);
H A DImageInputStreamImpl.java98 public abstract int read(byte[] b, int off, int len) throws IOException; argument
194 public void readFully(byte[] b, int off, int len) throws IOException { argument
203 public void readFully(short[] s, int off, int len) throws IOException { argument
208 public void readFully(char[] c, int off, int len) throws IOException { argument
213 public void readFully(int[] i, int off, int len) throws IOException { argument
218 public void readFully(long[] l, int off, int len) throws IOException { argument
223 public void readFully(float[] f, int off, int len) throws IOException { argument
228 public void readFully(double[] d, int off, int len) throws IOException { argument
/frameworks/base/opengl/tests/gl_basic/
H A Dgl_basic.cpp316 const unsigned int off = 0xffffffff;
319 on, off, on, off, on, off, on, off,
320 off, on, off, on, off, on, off, on,
321 on, off, o
[all...]
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Ds_hcb.h109 Int off; member in struct:__anon283
H A Dunpack_idx.cpp114 HuffCodebook->off = {0, 1, 4};
171 *(pQuantSpec) = *(pQuantSpec) - off;
177 *(pQuantSpec) = *(pQuantSpec) - off;
184 *(pQuantSpec) = *(pQuantSpec) - off;
188 *(pQuantSpec) = codeword_indx - off;
341 const Int off = pHuffCodebook->off; local
354 temp_spec -= off;
369 temp_spec -= off;
389 temp_spec -= off;
432 const Int off = pHuffCodebook->off; local
561 const Int off = pHuffCodebook->off; local
[all...]
/frameworks/base/awt/java/awt/
H A DFontMetrics.java308 * @param off
314 public int bytesWidth(byte[] data, int off, int len) { argument
316 if ((off >= data.length) || (off < 0)) {
317 // awt.13B=offset off is out of range
321 if ((off + len > data.length)) {
326 for (int i = off; i < off + len; i++) {
340 * @param off
346 public int charsWidth(char[] data, int off, in argument
[all...]
/frameworks/base/core/java/com/android/server/
H A DResettableTimeout.java43 public abstract void off(); method in class:ResettableTimeout
49 * <p>3. At the timeout, calls off()<p>
81 * Cancel the timeout and call off now.
93 off();
109 off();
125 // turn it off at this time.
/frameworks/base/libs/utils/
H A DDebug.cpp35 ssize_t off = sizeof(indentStr)-1-(indentLevel*2); local
36 return indentStr + (off < 0 ? 0 : off);
/frameworks/base/awt/java/awt/image/
H A DImageConsumer.java118 * @param off
124 public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, argument
142 * @param off
148 public void setPixels(int x, int y, int w, int h, ColorModel model, byte[] pixels, int off, argument
H A DBufferedImageFilter.java136 public void setPixels(int x, int y, int w, int h, ColorModel model, byte[] pixels, int off, argument
138 setPixels(x, y, w, h, model, pixels, off, scansize, true);
142 public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, argument
144 setPixels(x, y, w, h, model, pixels, off, scansize, false);
193 * @param off
194 * the off.
200 private void setPixels(int x, int y, int w, int h, ColorModel model, Object pixels, int off, argument
206 off += x;
212 off += y * scansize;
280 off
[all...]
H A DRGBImageFilter.java117 public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, argument
121 consumer.setPixels(x, y, w, h, newmodel, pixels, off, scansize);
124 for (int sy = y, pixelsOff = off; sy < y + h; sy++, pixelsOff += scansize) {
135 public void setPixels(int x, int y, int w, int h, ColorModel model, byte[] pixels, int off, argument
139 consumer.setPixels(x, y, w, h, newmodel, pixels, off, scansize);
142 for (int sy = y, pixelsOff = off; sy < y + h; sy++, pixelsOff += scansize) {
166 * @param off
171 public void filterRGBPixels(int x, int y, int w, int h, int[] pixels, int off, int scansize) { argument
173 for (int sy = y, lineOff = off; sy < y + h; sy++, lineOff += scansize) {
178 consumer.setPixels(x, y, w, h, ColorModel.getRGBdefault(), pixels, off, scansiz
[all...]
H A DAreaAveragingScaleFilter.java113 public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, argument
116 super.setPixels(x, y, w, h, model, pixels, off, scansize);
118 setFilteredPixels(x, y, w, h, model, pixels, off, scansize);
123 public void setPixels(int x, int y, int w, int h, ColorModel model, byte[] pixels, int off, argument
126 super.setPixels(x, y, w, h, model, pixels, off, scansize);
128 setFilteredPixels(x, y, w, h, model, pixels, off, scansize);
159 * @param off
165 int off, int scansize) {
184 int srcOff = off;
164 setFilteredPixels(int x, int y, int w, int h, ColorModel model, Object pixels, int off, int scansize) argument
H A DImageFilter.java112 public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, argument
114 consumer.setPixels(x, y, w, h, model, pixels, off, scansize);
117 public void setPixels(int x, int y, int w, int h, ColorModel model, byte[] pixels, int off, argument
119 consumer.setPixels(x, y, w, h, model, pixels, off, scansize);
H A DMemoryImageSource.java119 * @param off
127 public MemoryImageSource(int w, int h, ColorModel cm, int pix[], int off, int scan, argument
129 init(w, h, cm, pix, off, scan, props);
143 * @param off
151 public MemoryImageSource(int w, int h, ColorModel cm, byte pix[], int off, int scan, argument
153 init(w, h, cm, pix, off, scan, props);
166 * @param off
174 public MemoryImageSource(int w, int h, int pix[], int off, int scan, Hashtable<?, ?> props) { argument
175 init(w, h, ColorModel.getRGBdefault(), pix, off, scan, props);
189 * @param off
195 MemoryImageSource(int w, int h, ColorModel cm, int pix[], int off, int scan) argument
216 MemoryImageSource(int w, int h, ColorModel cm, byte pix[], int off, int scan) argument
236 MemoryImageSource(int w, int h, int pix[], int off, int scan) argument
509 init(int width, int height, ColorModel model, byte pixels[], int off, int scan, Hashtable<?, ?> prop) argument
542 init(int width, int height, ColorModel model, int pixels[], int off, int scan, Hashtable<?, ?> prop) argument
[all...]
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java89 public char charAt(int off) { argument
90 if (off >= mStart && off < mEnd)
91 return mChars[off - mStart];
93 return mSource.charAt(off);
105 public void getChars(int start, int end, char[] dest, int off) { argument
106 TextUtils.getChars(mSource, start, end, dest, off);
112 System.arraycopy(mChars, start - mStart, dest, off, end - start);
/frameworks/base/awt/com/android/internal/awt/
H A DImageOutputStreamWrapper.java52 public void write(byte[] b, int off, int len) throws IOException { argument
53 mIos.write(b, off, len);
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java98 public void write(byte[] b, int off, int len) throws IOException { argument
101 internalWrite(b, off, len, false);
136 private void internalWrite(byte[] b, int off, int len, boolean finish) throws IOException { argument
138 if (!coder.process(b, off, len, finish)) {
/frameworks/base/core/java/android/view/
H A DGravity.java254 int off = 0;
255 if (inoutObj.top < display.top) off = display.top-inoutObj.top;
256 else if (inoutObj.bottom > display.bottom) off = display.bottom-inoutObj.bottom;
257 if (off != 0) {
262 inoutObj.top += off;
263 inoutObj.bottom += off;
272 int off = 0;
273 if (inoutObj.left < display.left) off = display.left-inoutObj.left;
274 else if (inoutObj.right > display.right) off = display.right-inoutObj.right;
275 if (off !
[all...]

Completed in 313 milliseconds

1234