/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
IExceptionHandlerTable.java | 31 * Returns {@link Exception_info} descriptor at a given offset. 33 * @param offset exception offset [must be in [0, size()) range; input not checked] 36 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range 38 Exception_info get (int offset); 68 * Replaces the Exception_info descriptor at a given offset. No duplicate 74 * @param offset exception offset [must be in [0, size()) range; input not checked] 76 * @return previous exception descriptor at this offset [never null] 78 * @throws IndexOutOfBoundsException if 'offset' is outside of valid rang [all...] |
/external/kernel-headers/original/asm-generic/bitops/ |
find.h | 5 size, unsigned long offset); 8 long size, unsigned long offset);
|
/external/proguard/src/proguard/evaluation/ |
BranchUnit.java | 34 * Sets the new instruction offset. 38 int offset, 43 * Sets the new instruction offset, depending on the certainty of the 48 int offset,
|
/external/webkit/WebCore/svg/ |
SVGStopElement.idl | 30 readonly attribute SVGAnimatedNumber offset;
|
/frameworks/base/media/libstagefright/ |
FileSource.cpp | 28 FileSource::FileSource(int fd, int64_t offset, int64_t length) 30 mOffset(offset), 32 CHECK(offset >= 0); 47 ssize_t FileSource::readAt(off_t offset, void *data, size_t size) { 51 if (offset >= mLength) { 54 int64_t numAvailable = mLength - offset; 60 int err = fseeko(mFile, offset + mOffset, SEEK_SET); 62 LOGE("seek to %lld failed", offset + mOffset);
|
/bionic/libc/stdlib/ |
getenv.c | 34 char *__findenv(const char *name, int *offset); 39 * Sets offset to be the offset of the name/value combination in the 46 __findenv(const char *name, int *offset) 63 *offset = p - environ; 77 int offset; local 79 return (__findenv(name, &offset));
|
/dalvik/dx/tests/093-ssa-invoke-range/ |
Blort.java | 58 int offset = 1; local 62 methodThatNeedsInvokeRange(src, 0, dest, offset, 5, 0); 63 return offset; 65 long offset = System.currentTimeMillis();; local 66 return offset;
|
/dalvik/libcore/luni/src/main/java/java/io/ |
BufferedWriter.java | 194 * Writes {@code count} characters starting at {@code offset} in 201 * @param offset 206 * if {@code offset < 0} or {@code count < 0}, or if 207 * {@code offset + count} is greater than the size of 213 public void write(char[] cbuf, int offset, int count) throws IOException { 221 // made implicit null check explicit, used (offset | count) < 0 222 // instead of (offset < 0) || (count < 0) to safe one operation 226 if ((offset | count) < 0 || offset > cbuf.length - count) { 231 out.write(cbuf, offset, count) [all...] |
DataOutputStream.java | 78 * {@code offset} to the target stream. 82 * @param offset 94 public void write(byte[] buffer, int offset, int count) throws IOException { 101 out.write(buffer, offset, count); 284 byte[] buffer, int offset) throws IOException { 285 buffer[offset++] = (byte) (val >> 56); 286 buffer[offset++] = (byte) (val >> 48); 287 buffer[offset++] = (byte) (val >> 40); 288 buffer[offset++] = (byte) (val >> 32); 289 buffer[offset++] = (byte) (val >> 24) 341 int offset = 0; local [all...] |
CharArrayReader.java | 64 * read the buffer is set to {@code offset}. 68 * @param offset 73 * if {@code offset < 0} or {@code length < 0}, or if 74 * {@code offset} is greater than the size of {@code buf} . 76 public CharArrayReader(char[] buf, int offset, int length) { 79 * of offset and length, it doesn't consider buffer's length. And to be 81 * (offset + length) overflows. 83 if (offset < 0 || offset > buf.length || length < 0 || offset + length < 0) [all...] |
/external/elfutils/libelf/ |
gelf_update_verdaux.c | 30 gelf_update_verdaux (data, offset, src) 32 int offset; 45 if (unlikely (offset < 0) 46 || unlikely ((offset + sizeof (GElf_Verdaux)) > data_scn->d.d_size)) 61 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verdaux));
|
gelf_update_verdef.c | 30 gelf_update_verdef (data, offset, src) 32 int offset; 45 if (unlikely (offset < 0) 46 || unlikely ((offset + sizeof (GElf_Verdef)) > data_scn->d.d_size)) 61 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verdef));
|
gelf_update_vernaux.c | 30 gelf_update_vernaux (data, offset, src) 32 int offset; 45 if (unlikely (offset < 0) 46 || unlikely ((offset + sizeof (GElf_Vernaux)) > data_scn->d.d_size)) 61 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Vernaux));
|
gelf_update_verneed.c | 30 gelf_update_verneed (data, offset, src) 32 int offset; 45 if (unlikely (offset < 0) 46 || unlikely ((offset + sizeof (GElf_Verneed)) > data_scn->d.d_size)) 61 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verneed));
|
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/ |
StackMapFrameVisitor.java | 35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame); 36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame); 37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame); 38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame); 39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame);
|
/external/webkit/JavaScriptCore/runtime/ |
PropertyMapHashTable.h | 31 unsigned offset; member in struct:JSC::PropertyMapEntry 38 , offset(0) 45 PropertyMapEntry(UString::Rep* key, unsigned offset, unsigned attributes, JSCell* specificValue, unsigned index) 47 , offset(offset)
|
/external/webkit/WebCore/css/ |
CSSReflectValue.h | 41 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask) 43 return adoptRef(new CSSReflectValue(direction, offset, mask)); 47 CSSPrimitiveValue* offset() const { return m_offset.get(); } function in class:WebCore::CSSReflectValue 56 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask) 58 , m_offset(offset)
|
/external/webkit/WebCore/dom/ |
CharacterData.h | 35 String substringData(unsigned offset, unsigned count, ExceptionCode&); 37 void insertData(unsigned offset, const String&, ExceptionCode&); 38 void deleteData(unsigned offset, unsigned count, ExceptionCode&); 39 void replaceData(unsigned offset, unsigned count, const String&, ExceptionCode&); 60 void checkCharDataOperation(unsigned offset, ExceptionCode&);
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
AttributeFactory.java | 64 * @param offset offset into {@code dcf}'s {@code bytes} 69 public final Attribute parse(DirectClassFile cf, int context, int offset, 84 int nameIdx = bytes.getUnsignedShort(offset); 85 int length = bytes.getInt(offset + 2); 90 observer.parsed(bytes, offset, 2, 92 observer.parsed(bytes, offset + 2, 4, 96 return parse0(cf, context, name.getString(), offset + 6, length, 101 "attribute at offset " + Hex.u4(offset)); [all...] |
/external/elfutils/libdw/ |
dwarf_getabbrev.c | 1 /* Get abbreviation at given offset. 26 __libdw_getabbrev (dbg, cu, offset, lengthp, result) 29 Dwarf_Off offset; 38 = (unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf + offset; 78 assert (abb->offset == offset); 92 abb->offset = offset; 119 dwarf_getabbrev (die, offset, lengthp) 121 Dwarf_Off offset; [all...] |
/external/elfutils/tests/ |
show-abbrev.c | 50 Dwarf_Off offset = 0; local 55 Dwarf_Abbrev *abbrev = dwarf_getabbrev (&die, offset, &length); 63 printf ("dwarf_getabbrevtag at offset %llu returned error: %s\n", 64 (unsigned long long int) offset, 72 printf ("dwarf_getabbrevcode at offset %llu returned error: %s\n", 73 (unsigned long long int) offset, 81 printf ("dwarf_abbrevhaschildren at offset %llu returned error: %s\n", 82 (unsigned long long int) offset, 88 (unsigned long long int) offset, code, tag, children); 93 printf ("dwarf_getattrcnt at offset %llu returned error: %s\n" [all...] |
/dalvik/vm/native/ |
sun_misc_Unsafe.c | 43 // The base offset is not type-dependent in this vm. 74 * public native boolean compareAndSwapInt(Object obj, long offset, 82 s8 offset = GET_ARG_LONG(args, 2); local 85 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); 94 * public native boolean compareAndSwapLong(Object obj, long offset, 102 s8 offset = GET_ARG_LONG(args, 2); local 105 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); 115 * public native boolean compareAndSwapObject(Object obj, long offset, 123 s8 offset = GET_ARG_LONG(args, 2); local 126 int32_t* address = (int32_t*) (((u1*) obj) + offset); 143 s8 offset = GET_ARG_LONG(args, 2); local 157 s8 offset = GET_ARG_LONG(args, 2); local 173 s8 offset = GET_ARG_LONG(args, 2); local 187 s8 offset = GET_ARG_LONG(args, 2); local 203 s8 offset = GET_ARG_LONG(args, 2); local 218 s8 offset = GET_ARG_LONG(args, 2); local 233 s8 offset = GET_ARG_LONG(args, 2); local 246 s8 offset = GET_ARG_LONG(args, 2); local 261 s8 offset = GET_ARG_LONG(args, 2); local 274 s8 offset = GET_ARG_LONG(args, 2); local 289 s8 offset = GET_ARG_LONG(args, 2); local 302 s8 offset = GET_ARG_LONG(args, 2); local [all...] |
/frameworks/base/opengl/libagl/ |
mipmap.cpp | 62 size_t offset = (y*2) * bs; local 64 uint32_t p00 = src[offset]; 65 uint32_t p10 = src[offset+1]; 66 uint32_t p01 = src[offset+bs]; 67 uint32_t p11 = src[offset+bs+1]; 75 offset += 2; 84 size_t offset = (y*2) * bs; local 86 uint32_t p00 = src[offset]; 87 uint32_t p10 = src[offset+1]; 88 uint32_t p01 = src[offset+bs] 104 size_t offset = (y*2) * bs; local 142 size_t offset = (y*2) * bs; local 160 size_t offset = (y*2) * bs; local [all...] |
/dalvik/libcore/nio/src/main/java/java/nio/ |
DirectByteBuffer.java | 54 // This is the offset from the base address at which this buffer logically 56 protected final int offset; field in class:DirectByteBuffer 71 DirectByteBuffer(SafeAddress address, int capacity, int offset) { 78 if ((baseSize >= 0) && ((offset + capacity) > baseSize)) { 84 this.offset = offset; 103 getBaseAddress().getByteArray(offset + position, dest, off, len); 113 return getBaseAddress().getByte(offset + position++); 121 return getBaseAddress().getByte(offset + index); 130 double result = getBaseAddress().getDouble(offset + position, order) [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
GotoCommonCodeReplacer.java | 94 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} 97 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) 104 !branchTargetFinder.isBranchTarget(offset)) 107 int targetOffset = offset + branchOffset; 110 int commonCount = commonByteCodeCount(codeAttribute, offset, targetOffset); 113 !exceptionBoundary(codeAttribute, offset, targetOffset)) 117 System.out.println("GotoCommonCodeReplacer: "+clazz.getName()+"."+method.getName(clazz)+" (["+(offset-commonCount)+"] - "+branchInstruction.toString(offset)+" -> "+targetOffset+")"); 123 int deleteOffset = offset - delta; 136 if (newBranchOffset != branchInstruction.length(offset)) 249 int offset = offset1; local [all...] |