Searched defs:offset (Results 76 - 100 of 1540) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java71 public String toString(int offset) argument
73 return "["+offset+"] "+toString()+" (target="+(offset+defaultOffset)+")";
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionCounter.java54 int offset,
51 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
/external/proguard/src/proguard/evaluation/
H A DBranchUnit.java34 * Sets the new instruction offset.
38 int offset,
43 * Sets the new instruction offset, depending on the certainty of the
48 int offset,
36 branch(Clazz clazz, CodeAttribute codeAttribute, int offset, int branchTarget) argument
46 branchConditionally(Clazz clazz, CodeAttribute codeAttribute, int offset, int branchTarget, int conditional) argument
H A DInvocationUnit.java59 int offset,
56 invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack) argument
/external/proguard/src/proguard/optimize/info/
H A DExceptionInstructionChecker.java50 public boolean mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
54 instruction.accept(clazz, method, codeAttribute, offset, this);
62 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
65 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
103 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
H A DSuperInvocationMarker.java47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
/external/proguard/src/proguard/optimize/peephole/
H A DGotoGotoReplacer.java72 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
75 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
85 int targetOffset = offset + branchOffset;
87 if (branchOffset != branchInstruction.length(offset) &&
88 !codeAttributeEditor.isModified(offset) &&
102 codeAttributeEditor.replaceInstruction(offset,
108 extraInstructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
H A DGotoReturnReplacer.java72 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
75 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
83 int targetOffset = offset + branchInstruction.branchOffset;
85 if (!codeAttributeEditor.isModified(offset) &&
101 codeAttributeEditor.replaceInstruction(offset,
107 extraInstructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
H A DNopRemover.java71 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
74 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
78 !codeAttributeEditor.isModified(offset))
80 codeAttributeEditor.deleteInstruction(offset);
85 extraInstructionVisitor.visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
/external/protobuf/src/google/protobuf/compiler/
H A Dzip_writer.h52 uint32 offset; member in struct:google::protobuf::compiler::ZipWriter::FileInfo
/external/qemu/hw/
H A Dgoldfish_memlog.c24 static uint32_t memlog_read(void *opaque, target_phys_addr_t offset) argument
27 (void)offset;
33 static void memlog_write(void *opaque, target_phys_addr_t offset, uint32_t val) argument
41 if (offset < 8*4)
42 info[offset / 4] = val;
44 if (offset == 0) {
/external/qemu-pc-bios/bochs/bios/
H A Dusage.cc42 unsigned org, last_org, offset; local
81 for (offset=org-1; offset>last_org; offset--) {
82 if (bios[offset] != 0) break;
84 if (offset > last_org) {
85 elements = (1.0 + double(offset) - double(last_org));
/external/skia/src/animator/
H A DSkBuildCondensedInfo.cpp45 int offset = (int) info[inner].fOffset; local
46 SkASSERT(offset < 128 && offset > -129);
78 size_t offset = info[inner].fOffset;
80 offset = (size_t) gInfos.find((const SkMemberInfo* ) info[inner].fName);
81 SkASSERT((int) offset >= 0);
82 offset = gInfosTypeIDs.find((SkDisplayTypes) offset);
83 SkASSERT((int) offset >= 0);
85 fprintf(condensed, "\n\t{%d, %d, %d, %d}", nameOffset, offset,
[all...]
H A DSkDisplayAdd.h45 int32_t offset; member in class:SkAdd
47 SkDrawable* where; // if NULL, offset becomes index
/external/skia/src/core/
H A DSkMMapStream.cpp19 off_t offset = lseek(fildes, 0, SEEK_END); // find the file size local
20 if (offset == -1)
26 (void)lseek(fildes, 0, SEEK_SET); // restore file offset to beginning
29 size_t size = static_cast<size_t>(offset);
/external/valgrind/main/memcheck/
H A Dmc_machine.c83 /* Let (offset,szB) describe a reference to the guest state section
84 [offset, offset+szB).
102 from Put and Get). References whose offset is not known until run
115 static Int get_otrack_shadow_offset_wrk ( Int offset, Int szB ); /*fwds*/
117 Int MC_(get_otrack_shadow_offset) ( Int offset, Int szB ) argument
119 Int cand = get_otrack_shadow_offset_wrk( offset, szB );
128 static Int get_otrack_shadow_offset_wrk ( Int offset, Int szB ) argument
140 Int o = offset;
232 /* For the various byte sized XER/CR pieces, use offset
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DDateConversion.cpp86 int offset = abs(gmtoffset(t)); local
94 gmtoffset(t) < 0 ? '-' : '+', offset / (60*60), (offset / 60) % 60, timeZoneName);
98 gmtoffset(t) < 0 ? '-' : '+', offset / (60*60), (offset / 60) % 60);
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DBuffer.cpp68 void Buffer::bufferSubData(const void *data, GLsizeiptr size, GLintptr offset) argument
70 memcpy(mContents + offset, data, size);
/external/webkit/Source/WebCore/css/
H A DCSSReflectValue.h41 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)
40 create(CSSReflectionDirection direction, PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask) argument
55 CSSReflectValue(CSSReflectionDirection direction, PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask) argument
/external/webkit/Source/WebCore/dom/
H A DPositionIterator.cpp104 void PositionIterator::setOffsetInLeafNode(int offset) argument
107 ASSERT(0 <= offset && offset <= lastOffsetForEditing(m_anchorNode));
108 m_offsetInAnchor = offset;
/external/webkit/Source/WebCore/editing/
H A DDeleteFromTextNodeCommand.h37 static PassRefPtr<DeleteFromTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, unsigned count) argument
39 return adoptRef(new DeleteFromTextNodeCommand(node, offset, count));
43 DeleteFromTextNodeCommand(PassRefPtr<Text>, unsigned offset, unsigned count);
H A DSplitTextNodeCommand.cpp36 SplitTextNodeCommand::SplitTextNodeCommand(PassRefPtr<Text> text, int offset) argument
39 , m_offset(offset)
/external/webkit/Source/WebCore/editing/gtk/
H A DSelectionControllerGtk.cpp32 static void emitTextSelectionChange(AccessibilityObject* object, VisibleSelection selection, int offset) argument
38 g_signal_emit_by_name(axObject, "text-caret-moved", offset);
94 int offset; local
96 RefPtr<AccessibilityObject> object = objectAndOffsetUnignored(accessibilityObject, offset, true);
101 emitTextSelectionChange(object.get(), m_selection, offset);
/external/webkit/Source/WebCore/html/canvas/
H A DInt32Array.h41 void set(TypedArrayBase<int>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<int>::set(array, offset, ec); } argument
H A DInt8Array.h43 void set(TypedArrayBase<signed char>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<signed char>::set(array, offset, ec); } argument

Completed in 912 milliseconds

1234567891011>>