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

123

/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/opengl/tests/gl_basic/
H A Dgl_basic.cpp315 const unsigned int off = 0xffffffff;
318 on, off, on, off, on, off, on, off,
319 off, on, off, on, off, on, off, on,
320 on, off, o
[all...]
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Ds_hcb.h109 Int off; member in struct:__anon556
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/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/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);
H A DAutoText.java38 // int off;
142 int off = mTrie[here + TRIE_OFF];
143 int len = mText.charAt(off);
145 return mText.substring(off + 1, off + 1 + len);
185 char off;
188 off = ooff;
190 off = (char) right.length();
195 add(src, off);
212 private void add(String src, char off) { argument
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DAllocationAdapter.java53 public void subData1D(int off, int count, int[] d) { argument
54 super.copy1DRangeFrom(off, count, d);
59 public void subData1D(int off, int count, short[] d) { argument
60 super.copy1DRangeFrom(off, count, d);
65 public void subData1D(int off, int count, byte[] d) { argument
66 super.copy1DRangeFrom(off, count, d);
71 public void subData1D(int off, int count, float[] d) { argument
72 super.copy1DRangeFrom(off, count, d);
H A DAllocation.java495 private void data1DChecks(int off, int count, int len, int dataSize) { argument
497 if(off < 0) {
503 if((off + count) > mCurrentCount) {
505 ", got " + count + " at offset " + off + ".");
531 * @param off The offset of the first element to be copied.
535 public void copy1DRangeFromUnchecked(int off, int count, int[] d) { argument
537 data1DChecks(off, count, d.length * 4, dataSize);
538 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, d, dataSize);
545 * @param off The offset of the first element to be copied.
549 public void copy1DRangeFromUnchecked(int off, in argument
563 copy1DRangeFromUnchecked(int off, int count, byte[] d) argument
577 copy1DRangeFromUnchecked(int off, int count, float[] d) argument
592 copy1DRangeFrom(int off, int count, int[] d) argument
606 copy1DRangeFrom(int off, int count, short[] d) argument
620 copy1DRangeFrom(int off, int count, byte[] d) argument
634 copy1DRangeFrom(int off, int count, float[] d) argument
648 copy1DRangeFrom(int off, int count, Allocation data, int dataOff) argument
[all...]
/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)) {
H A DBase64InputStream.java119 public int read(byte[] b, int off, int len) throws IOException { argument
127 System.arraycopy(coder.output, outputStart, b, off, bytes);
/frameworks/base/core/java/android/view/
H A DGravity.java291 int off = 0;
292 if (inoutObj.top < display.top) off = display.top-inoutObj.top;
293 else if (inoutObj.bottom > display.bottom) off = display.bottom-inoutObj.bottom;
294 if (off != 0) {
299 inoutObj.top += off;
300 inoutObj.bottom += off;
309 int off = 0;
310 if (inoutObj.left < display.left) off = display.left-inoutObj.left;
311 else if (inoutObj.right > display.right) off = display.right-inoutObj.right;
312 if (off !
[all...]
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java83 public int read(byte[] b, int off, int len) throws IOException { argument
88 if (off < 0 || len < 0 || (off + len) > b.length ) {
92 int ret = readba_native(b, off, len, myFd);
118 public void write (byte[] b, int off, int len) throws IOException { argument
123 if (off < 0 || len < 0 || (off + len) > b.length ) {
126 writeba_native(b, off, len, myFd);
144 private native int readba_native(byte[] b, int off, int len, argument
146 private native void writeba_native(byte[] b, int off, in argument
[all...]
/frameworks/base/media/java/android/drm/mobile1/
H A DDrmRawContent.java324 public int read(byte[] b, int off, int len) throws IOException { argument
327 if (off < 0 || len < 0 || off + len > b.length)
335 len = nativeReadContent(b, off, len, offset);
/frameworks/base/core/java/android/text/method/
H A DMultiTapKeyListener.java68 int off = cap.ordinal() * 2 + (autotext ? 1 : 0);
70 if (sInstance[off] == null) {
71 sInstance[off] = new MultiTapKeyListener(cap, autotext);
74 return sInstance[off];
171 int off = 0;
176 off = i;
189 content.replace(selStart, selEnd, val, off, off + 1);
H A DReplacementTransformationMethod.java150 public void getChars(int start, int end, char[] dest, int off) { argument
151 TextUtils.getChars(mSource, start, end, dest, off);
152 int offend = end - start + off;
155 for (int i = off; i < offend; i++) {
H A DTextKeyListener.java80 int off = cap.ordinal() * 2 + (autotext ? 1 : 0);
82 if (sInstance[off] == null) {
83 sInstance[off] = new TextKeyListener(cap, autotext);
86 return sInstance[off];
103 * @param off the offset into that text where the insertion is being made.
107 public static boolean shouldCap(Capitalize cap, CharSequence cs, int off) { argument
118 return TextUtils.getCapsMode(cs, off, cap == Capitalize.WORDS
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dwin_asm.bat1 echo off
/frameworks/base/core/jni/
H A Dandroid_util_StringBlock.cpp36 jint off, jint len)
44 if (off < 0 || off >= bLen || len < 0 || len > bLen || (off+len) > bLen) {
50 ResStringPool* osb = new ResStringPool(b+off, len, true);
34 android_content_StringBlock_nativeCreate(JNIEnv* env, jobject clazz, jbyteArray bArray, jint off, jint len) argument
H A Dandroid_util_XmlBlock.cpp37 jint off, jint len)
45 if (off < 0 || off >= bLen || len < 0 || len > bLen || (off+len) > bLen) {
51 ResXMLTree* osb = new ResXMLTree(b+off, len, true);
35 android_content_XmlBlock_nativeCreate(JNIEnv* env, jobject clazz, jbyteArray bArray, jint off, jint len) argument
H A Dandroid_net_LocalSocketImpl.cpp689 jbyteArray buffer, jint off, jint len, jobject fileDescriptor)
700 if (off < 0 || len < 0 || (off + len) > env->GetArrayLength(buffer)) {
724 fd, byteBuffer + off, len);
756 jbyteArray buffer, jint off, jint len, jobject fileDescriptor)
767 if (off < 0 || len < 0 || (off + len) > env->GetArrayLength(buffer)) {
786 byteBuffer + off, len);
688 socket_readba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
755 socket_writeba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
/frameworks/compile/linkloader/utils/
H A Dserialize.h86 void seek(off_t off, bool from_begin = false) { argument
88 cursor = buf_begin + off;
90 cursor += off;
/frameworks/base/services/java/com/android/server/pm/
H A DInstaller.java88 int off = 0, count;
91 while (off != len) {
93 count = mIn.read(buffer, off, len - off);
98 off += count;
107 if (off == len)

Completed in 905 milliseconds

123