/development/ndk/platforms/android-3/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
IFieldCollection.java | 30 * Returns {@link Field_info} descriptor at a given offset. 32 * @param offset field offset [must be in [0, size()) range; input not checked] 35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range 37 Field_info get (int offset); 75 * @return new field's offset 80 * Replaces the Field_info descriptor at a given offset. No duplicate 85 * @param offset field offset [must be in [0, size()) range; input not checked] 87 * @return previous field descriptor at this offset [never null [all...] |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/ |
HttpZipLocator.java | 91 int offset; field in class:HttpZipLocator.ZipEntry2 101 ", offset=" + offset + "]"; 168 private InputStream readData(int offset, int length) throws IOException{ 174 if (offset != Integer.MAX_VALUE){ 175 range = offset + range; 178 if (offset != Integer.MAX_VALUE){ 179 range = range + (offset + length - 1); 196 private int readTableEntry(byte[] table, int offset) throws IOException{ 197 if (get32(table, offset) != CENSIG) [all...] |
/external/kernel-headers/original/linux/ |
efs_dir.h | 39 #define EFS_REALOFF(offset) ((offset << 1))
|
/external/libnfc-nxp/src/ |
phFriNfc_LlcpUtils.c | 39 uint32_t offset = *pOffset; local 47 /* Check offset */ 48 if (offset > psRawData->length) 54 if ((offset+2 > psRawData->length) && (offset+2 > offset)) 59 /* Get Type and Length from current TLV, and update offset */ 60 type = psRawData->buffer[offset]; 61 length = psRawData->buffer[offset+1]; 62 offset += 2 88 uint32_t offset = *pOffset; local 136 uint32_t offset = *pCurrentOffset; local [all...] |
/external/skia/src/core/ |
SkData.cpp | 26 size_t SkData::copyRange(size_t offset, size_t length, void* buffer) const { 28 if (offset >= available || 0 == length) { 31 available -= offset; 37 memcpy(buffer, this->bytes() + offset, length); 82 SkData* SkData::NewSubset(const SkData* src, size_t offset, size_t length) { 90 if (offset >= available || 0 == length) { 93 available -= offset; 100 return new SkData(src->bytes() + offset, length, sk_dataref_releaseproc,
|
/external/webkit/Source/WebCore/dom/ |
CharacterData.idl | 29 [ConvertNullStringTo=Null, OldStyleObjC] DOMString substringData(in [IsIndex] unsigned long offset, 36 [OldStyleObjC] void insertData(in [IsIndex] unsigned long offset, 40 [OldStyleObjC] void deleteData(in [IsIndex] unsigned long offset, 44 [OldStyleObjC] void replaceData(in [IsIndex] unsigned long offset,
|
/frameworks/base/opengl/java/android/opengl/ |
GLES11.java | 170 // C function void glBufferSubData ( GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data ) 174 int offset, 184 int offset 199 int offset 218 // C function void glColorPointer ( GLint size, GLenum type, GLsizei stride, GLint offset ) 224 int offset 232 int offset 242 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset ) 248 int offset 256 int offset [all...] |
/frameworks/base/tools/preload/ |
Record.java | 136 int offset = result.indexOf("\\u"); local 137 while (offset >= 0) { 138 String before = result.substring(0, offset); 139 String escaped = result.substring(offset+2, offset+6); 140 String after = result.substring(offset+6); 145 offset = result.indexOf("\\u", offset + 1);
|
/libcore/luni/src/main/java/java/nio/ |
ReadWriteCharArrayBuffer.java | 35 new ReadWriteCharArrayBuffer(other.capacity(), other.backingArray, other.offset); 61 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 83 return offset; 95 backingArray[offset + position++] = c; 102 backingArray[offset + index] = c; 111 System.arraycopy(src, srcOffset, backingArray, offset + position, charCount); 118 return new ReadWriteCharArrayBuffer(remaining(), backingArray, offset + position);
|
ReadWriteDoubleArrayBuffer.java | 36 new ReadWriteDoubleArrayBuffer(other.capacity(), other.backingArray, other.offset); 62 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 84 return offset; 96 backingArray[offset + position++] = c; 103 backingArray[offset + index] = c; 112 System.arraycopy(src, srcOffset, backingArray, offset + position, doubleCount); 119 return new ReadWriteDoubleArrayBuffer(remaining(), backingArray, offset + position);
|
ReadWriteFloatArrayBuffer.java | 36 new ReadWriteFloatArrayBuffer(other.capacity(), other.backingArray, other.offset); 62 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 84 return offset; 96 backingArray[offset + position++] = c; 103 backingArray[offset + index] = c; 112 System.arraycopy(src, srcOffset, backingArray, offset + position, floatCount); 119 return new ReadWriteFloatArrayBuffer(remaining(), backingArray, offset + position);
|
ReadWriteIntArrayBuffer.java | 35 new ReadWriteIntArrayBuffer(other.capacity(), other.backingArray, other.offset); 61 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 83 return offset; 95 backingArray[offset + position++] = c; 102 backingArray[offset + index] = c; 111 System.arraycopy(src, srcOffset, backingArray, offset + position, intCount); 118 return new ReadWriteIntArrayBuffer(remaining(), backingArray, offset + position);
|
ReadWriteLongArrayBuffer.java | 35 new ReadWriteLongArrayBuffer(other.capacity(), other.backingArray, other.offset); 61 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 83 return offset; 95 backingArray[offset + position++] = c; 102 backingArray[offset + index] = c; 111 System.arraycopy(src, srcOffset, backingArray, offset + position, longCount); 118 return new ReadWriteLongArrayBuffer(remaining(), backingArray, offset + position);
|
ReadWriteShortArrayBuffer.java | 36 new ReadWriteShortArrayBuffer(other.capacity(), other.backingArray, other.offset); 63 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 85 return offset; 97 backingArray[offset + position++] = c; 104 backingArray[offset + index] = c; 113 System.arraycopy(src, srcOffset, backingArray, offset + position, shortCount); 120 return new ReadWriteShortArrayBuffer(remaining(), backingArray, offset + position);
|
/libcore/luni/src/main/java/java/security/ |
SignatureSpi.java | 127 int offset = input.arrayOffset(); local 131 engineUpdate(tmp, offset + position, limit - position); 171 * @param offset 180 * if {@code offset} or {@code len} are not valid in respect to 183 protected int engineSign(byte[] outbuf, int offset, int len) throws SignatureException { 191 if (offset < 0) { 192 throw new SignatureException("offset < 0"); 194 if (offset + len > outbuf.length) { 195 throw new SignatureException("offset + len > outbuf.length"); 197 System.arraycopy(tmp, 0, outbuf, offset, tmp.length) [all...] |
/libcore/luni/src/main/java/libcore/net/ |
RawSocket.java | 50 int offset, int byteCount); 52 int offset, int byteCount, int destPort, int timeoutMillis); 80 public int read(byte[] packet, int offset, int byteCount, int destPort, 86 Arrays.checkOffsetAndCount(packet.length, offset, byteCount); 93 return recvPacket(fd, packet, offset, byteCount, destPort, 103 public int write(byte[] destMac, byte[] packet, int offset, int byteCount) { 112 Arrays.checkOffsetAndCount(packet.length, offset, byteCount); 120 offset, byteCount);
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|
/prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|
/prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
efs_dir.h | 42 #define EFS_REALOFF(offset) ((offset << 1))
|