/frameworks/base/opengl/tests/gl_jni/jni/ |
D | gl_code.cpp | 116 const unsigned int off = 0xffffffff; in create_texture() local 119 on, off, on, off, on, off, on, off, in create_texture() 120 off, on, off, on, off, on, off, on, in create_texture() 121 on, off, on, off, on, off, on, off, in create_texture() 122 off, on, off, on, off, on, off, on, in create_texture() 123 on, off, on, off, on, off, on, off, in create_texture() 124 off, on, off, on, off, on, off, on, in create_texture() 125 on, off, on, off, on, off, on, off, in create_texture() 126 off, on, off, on, off, on, off, on, in create_texture()
|
/frameworks/base/opengl/tests/tritex/ |
D | tritex.cpp | 208 const unsigned int off = 0xffffffff; in create_texture() local 211 on, off, on, off, on, off, on, off, in create_texture() 212 off, on, off, on, off, on, off, on, in create_texture() 213 on, off, on, off, on, off, on, off, in create_texture() 214 off, on, off, on, off, on, off, on, in create_texture() 215 on, off, on, off, on, off, on, off, in create_texture() 216 off, on, off, on, off, on, off, on, in create_texture() 217 on, off, on, off, on, off, on, off, in create_texture() 218 off, on, off, on, off, on, off, on, in create_texture()
|
/frameworks/base/opengl/tests/gl_basic/ |
D | gl_basic.cpp | 315 const unsigned int off = 0xffffffff; in create_texture() local 318 on, off, on, off, on, off, on, off, in create_texture() 319 off, on, off, on, off, on, off, on, in create_texture() 320 on, off, on, off, on, off, on, off, in create_texture() 321 off, on, off, on, off, on, off, on, in create_texture() 322 on, off, on, off, on, off, on, off, in create_texture() 323 off, on, off, on, off, on, off, on, in create_texture() 324 on, off, on, off, on, off, on, off, in create_texture() 325 off, on, off, on, off, on, off, on, in create_texture()
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
D | unpack_idx.cpp | 341 const Int off = pHuffCodebook->off; in unpack_idx() local 354 temp_spec -= off; in unpack_idx() 369 temp_spec -= off; in unpack_idx() 389 temp_spec -= off; in unpack_idx() 404 codeword_indx -= off; in unpack_idx() 432 const Int off = pHuffCodebook->off; in unpack_idx_sgn() local 444 temp_spec -= off; in unpack_idx_sgn() 470 temp_spec -= off; in unpack_idx_sgn() 500 temp_spec -= off; in unpack_idx_sgn() 524 codeword_indx -= off; in unpack_idx_sgn() [all …]
|
D | s_hcb.h | 109 Int off; member
|
/frameworks/base/core/java/android/text/ |
D | AlteredCharSequence.java | 89 public char charAt(int off) { in charAt() argument 90 if (off >= mStart && off < mEnd) in charAt() 91 return mChars[off - mStart]; in charAt() 93 return mSource.charAt(off); in charAt() 105 public void getChars(int start, int end, char[] dest, int off) { in getChars() argument 106 TextUtils.getChars(mSource, start, end, dest, off); in getChars() 112 System.arraycopy(mChars, start - mStart, dest, off, end - start); in getChars()
|
D | AutoText.java | 142 int off = mTrie[here + TRIE_OFF]; in lookup() local 143 int len = mText.charAt(off); in lookup() 145 return mText.substring(off + 1, off + 1 + len); in lookup() 185 char off; in init() local 188 off = ooff; in init() 190 off = (char) right.length(); in init() 195 add(src, off); in init() 212 private void add(String src, char off) { in add() argument 229 mTrie[mTrie[herep] + TRIE_OFF] = off; in add() 256 mTrie[mTrie[herep] + TRIE_OFF] = off; in add()
|
/frameworks/base/graphics/java/android/renderscript/ |
D | Allocation.java | 79 private void data1DChecks(int off, int count, int len, int dataSize) { in data1DChecks() argument 81 if((off < 0) || (count < 1) || ((off + count) > mType.getElementCount())) { in data1DChecks() 89 public void subData1D(int off, int count, int[] d) { in subData1D() argument 91 data1DChecks(off, count, d.length * 4, dataSize); in subData1D() 92 mRS.nAllocationSubData1D(mID, off, count, d, dataSize); in subData1D() 94 public void subData1D(int off, int count, short[] d) { in subData1D() argument 96 data1DChecks(off, count, d.length * 2, dataSize); in subData1D() 97 mRS.nAllocationSubData1D(mID, off, count, d, dataSize); in subData1D() 99 public void subData1D(int off, int count, byte[] d) { in subData1D() argument 101 data1DChecks(off, count, d.length, dataSize); in subData1D() [all …]
|
D | RenderScript.java | 108 native void nAllocationSubData1D(int id, int off, int count, int[] d, int sizeBytes); in nAllocationSubData1D() argument 109 native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes); in nAllocationSubData1D() argument 110 native void nAllocationSubData1D(int id, int off, int count, byte[] d, int sizeBytes); in nAllocationSubData1D() argument 111 native void nAllocationSubData1D(int id, int off, int count, float[] d, int sizeBytes); in nAllocationSubData1D() argument 124 native void nAdapter1DSubData(int ad, int off, int count, int[] d); in nAdapter1DSubData() argument 125 native void nAdapter1DSubData(int ad, int off, int count, float[] d); in nAdapter1DSubData() argument
|
/frameworks/base/core/java/android/view/ |
D | Gravity.java | 254 int off = 0; in applyDisplay() local 255 if (inoutObj.top < display.top) off = display.top-inoutObj.top; in applyDisplay() 256 else if (inoutObj.bottom > display.bottom) off = display.bottom-inoutObj.bottom; in applyDisplay() 257 if (off != 0) { in applyDisplay() 262 inoutObj.top += off; in applyDisplay() 263 inoutObj.bottom += off; in applyDisplay() 272 int off = 0; in applyDisplay() local 273 if (inoutObj.left < display.left) off = display.left-inoutObj.left; in applyDisplay() 274 else if (inoutObj.right > display.right) off = display.right-inoutObj.right; in applyDisplay() 275 if (off != 0) { in applyDisplay() [all …]
|
/frameworks/base/core/java/android/net/ |
D | LocalSocketImpl.java | 83 public int read(byte[] b, int off, int len) throws IOException { in read() argument 88 if (off < 0 || len < 0 || (off + len) > b.length ) { in read() 92 int ret = readba_native(b, off, len, myFd); in read() 118 public void write (byte[] b, int off, int len) throws IOException { in write() argument 123 if (off < 0 || len < 0 || (off + len) > b.length ) { in write() 126 writeba_native(b, off, len, myFd); in write() 144 private native int readba_native(byte[] b, int off, int len, in readba_native() argument 146 private native void writeba_native(byte[] b, int off, int len, in writeba_native() argument
|
/frameworks/base/core/java/android/util/ |
D | Base64OutputStream.java | 98 public void write(byte[] b, int off, int len) throws IOException { in write() argument 101 internalWrite(b, off, len, false); in write() 136 private void internalWrite(byte[] b, int off, int len, boolean finish) throws IOException { in internalWrite() argument 138 if (!coder.process(b, off, len, finish)) { in internalWrite()
|
D | Base64InputStream.java | 119 public int read(byte[] b, int off, int len) throws IOException { in read() argument 127 System.arraycopy(coder.output, outputStart, b, off, bytes); in read()
|
/frameworks/base/core/java/com/android/server/ |
D | ResettableTimeout.java | 43 public abstract void off(); in off() method in ResettableTimeout 93 off(); in cancel() 109 off(); in run()
|
/frameworks/base/core/java/android/text/method/ |
D | MultiTapKeyListener.java | 68 int off = cap.ordinal() * 2 + (autotext ? 1 : 0); in getInstance() local 70 if (sInstance[off] == null) { in getInstance() 71 sInstance[off] = new MultiTapKeyListener(cap, autotext); in getInstance() 74 return sInstance[off]; in getInstance() 171 int off = 0; in onKeyDown() local 176 off = i; in onKeyDown() 189 content.replace(selStart, selEnd, val, off, off + 1); in onKeyDown()
|
D | TextKeyListener.java | 80 int off = cap.ordinal() * 2 + (autotext ? 1 : 0); in getInstance() local 82 if (sInstance[off] == null) { in getInstance() 83 sInstance[off] = new TextKeyListener(cap, autotext); in getInstance() 86 return sInstance[off]; in getInstance() 107 public static boolean shouldCap(Capitalize cap, CharSequence cs, int off) { in shouldCap() argument 118 return TextUtils.getCapsMode(cs, off, cap == Capitalize.WORDS in shouldCap()
|
D | ReplacementTransformationMethod.java | 150 public void getChars(int start, int end, char[] dest, int off) { in getChars() argument 151 TextUtils.getChars(mSource, start, end, dest, off); in getChars() 152 int offend = end - start + off; in getChars() 155 for (int i = off; i < offend; i++) { in getChars()
|
D | PasswordTransformationMethod.java | 189 public void getChars(int start, int end, char[] dest, int off) { in getChars() argument 190 TextUtils.getChars(mSource, start, end, dest, off); in getChars() 227 dest[i - start + off] = DOT; in getChars()
|
D | LinkMovementMethod.java | 210 int off = layout.getOffsetForHorizontal(line, x); in onTouchEvent() local 212 ClickableSpan[] link = buffer.getSpans(off, off, ClickableSpan.class); in onTouchEvent()
|
/frameworks/base/core/jni/ |
D | android_util_StringBlock.cpp | 45 jint off, jint len) in android_content_StringBlock_nativeCreate() argument 53 if (off < 0 || off >= bLen || len < 0 || len > bLen || (off+len) > bLen) { in android_content_StringBlock_nativeCreate() 59 ResStringPool* osb = new ResStringPool(b+off, len, true); in android_content_StringBlock_nativeCreate()
|
D | android_net_LocalSocketImpl.cpp | 689 jbyteArray buffer, jint off, jint len, jobject fileDescriptor) in socket_readba() argument 700 if (off < 0 || len < 0 || (off + len) > env->GetArrayLength(buffer)) { in socket_readba() 724 fd, byteBuffer + off, len); in socket_readba() 756 jbyteArray buffer, jint off, jint len, jobject fileDescriptor) in socket_writeba() argument 767 if (off < 0 || len < 0 || (off + len) > env->GetArrayLength(buffer)) { in socket_writeba() 786 byteBuffer + off, len); in socket_writeba()
|
D | android_util_XmlBlock.cpp | 46 jint off, jint len) in android_content_XmlBlock_nativeCreate() argument 54 if (off < 0 || off >= bLen || len < 0 || len > bLen || (off+len) > bLen) { in android_content_XmlBlock_nativeCreate() 60 ResXMLTree* osb = new ResXMLTree(b+off, len, true); in android_content_XmlBlock_nativeCreate()
|
/frameworks/base/media/java/android/drm/mobile1/ |
D | DrmRawContent.java | 324 public int read(byte[] b, int off, int len) throws IOException { in read() argument 327 if (off < 0 || len < 0 || off + len > b.length) in read() 335 len = nativeReadContent(b, off, len, offset); in read()
|
/frameworks/base/services/java/com/android/server/ |
D | Installer.java | 79 int off = 0, count; in readBytes() local 81 while (off != len) { in readBytes() 83 count = mIn.read(buffer, off, len - off); in readBytes() 88 off += count; in readBytes() 95 if (off == len) return true; in readBytes()
|
/frameworks/base/libs/utils/ |
D | Debug.cpp | 35 ssize_t off = sizeof(indentStr)-1-(indentLevel*2); in stringForIndent() local 36 return indentStr + (off < 0 ? 0 : off); in stringForIndent()
|