Searched defs:offset (Results 251 - 275 of 1540) sorted by relevance

<<11121314151617181920>>

/external/openssl/crypto/asn1/
H A Da_utctm.c247 int offset; local
253 offset=0;
256 offset = g2(s->data+13)*60+g2(s->data+15);
258 offset = -offset;
261 t -= offset*60; /* FIXME: may overflow in extreme cases */
286 int offset;
300 offset=0;
303 offset=g2(s->data+13)*60+g2(s->data+15);
305 offset
[all...]
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.c69 unsigned long start, unsigned long offset, unsigned long end)
74 proc->tid, start, end, offset, image->name);
89 map->offset = offset;
168 opd_add_mapping(proc, image, note->addr, note->offset,
68 opd_add_mapping(struct opd_proc * proc, struct opd_image * image, unsigned long start, unsigned long offset, unsigned long end) argument
H A Dopd_parse_proc.c46 unsigned long offset, start, end; local
65 /* read offset */
66 if (sscanf(cp, "%lx", &offset) != 1)
79 opd_add_mapping(proc, image, start, offset, end);
/external/oprofile/libutil++/
H A Dbfd_spu_support.cpp69 file_ptr nbytes, file_ptr offset)
72 fseek(my_stream->stream, my_stream->spu_offset + offset,
68 spu_bfd_iovec_pread(bfd * abfd, void * stream, void * buf, file_ptr nbytes, file_ptr offset) argument
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2atm.c79 int offset,len; local
93 offset = 0;
112 offset = 72;
143 if (len > 7 && addr->sas_addr.prv[0] != ATM_AFI_E164) offset = 72;
144 if (len < offset) return FATAL;
/external/proguard/src/proguard/classfile/attribute/
H A DCodeAttribute.java116 * offset.
118 public void instructionAccept(Clazz clazz, Method method, int offset, InstructionVisitor instructionVisitor) argument
120 Instruction instruction = InstructionFactory.create(code, offset);
121 instruction.accept(clazz, method, this, offset, instructionVisitor);
131 int offset = startOffset;
133 while (offset < endOffset)
136 Instruction instruction = InstructionFactory.create(code, offset);
137 int instructionLength = instruction.length(offset);
138 instruction.accept(clazz, method, this, offset, instructionVisitor);
139 offset
162 exceptionsAccept(Clazz clazz, Method method, int offset, ExceptionInfoVisitor exceptionInfoVisitor) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DFullFrame.java83 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor) argument
87 variables[index].variablesAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor);
95 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor) argument
99 stack[index].stackAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor);
112 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) argument
114 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, offset, this);
H A DMoreZeroFrame.java78 public void additionalVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor) argument
82 additionalVariables[index].accept(clazz, method, codeAttribute, offset, verificationTypeVisitor);
95 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) argument
97 stackMapFrameVisitor.visitMoreZeroFrame(clazz, method, codeAttribute, offset, this);
H A DStackMapFrame.java54 * Returns the bytecode offset delta relative to the previous stack map
74 public abstract void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor); argument
/external/proguard/src/proguard/classfile/editor/
H A DInstructionWriter.java66 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
70 simpleInstruction.write(codeAttribute, offset);
74 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
79 constantInstruction.write(codeAttribute, offset);
89 replaceInstruction(offset, replacementInstruction);
94 constantInstruction.write(codeAttribute, offset);
99 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
104 variableInstruction.write(codeAttribute, offset);
114 replaceInstruction(offset, replacementInstruction);
119 variableInstruction.write(codeAttribute, offset);
124 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
202 visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DBranchInstruction.java28 * This interface describes an instruction that branches to a given offset in
115 protected void readInfo(byte[] code, int offset) argument
117 branchOffset = readSignedValue(code, offset, branchOffsetSize());
121 protected void writeInfo(byte[] code, int offset) argument
125 throw new IllegalArgumentException("Instruction has invalid branch offset size ("+this.toString(offset)+")");
128 writeSignedValue(code, offset, branchOffset, branchOffsetSize());
132 public int length(int offset) argument
138 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) argument
140 instructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, thi
144 toString(int offset) argument
[all...]
H A DLookUpSwitchInstruction.java83 protected void readInfo(byte[] code, int offset) argument
86 offset += -offset & 3;
89 defaultOffset = readInt(code, offset); offset += 4;
90 int jumpOffsetCount = readInt(code, offset); offset += 4;
92 // Read the matches-offset pairs.
98 cases[index] = readInt(code, offset); offset
104 writeInfo(byte[] code, int offset) argument
125 length(int offset) argument
131 accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) argument
[all...]
H A DSimpleInstruction.java186 protected void readInfo(byte[] code, int offset) argument
193 readSignedValue(code, offset, constantSize);
197 protected void writeInfo(byte[] code, int offset) argument
203 throw new IllegalArgumentException("Instruction has invalid constant size ("+this.toString(offset)+")");
206 writeSignedValue(code, offset, constant, constantSize);
210 public int length(int offset) argument
216 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) argument
218 instructionVisitor.visitSimpleInstruction(clazz, method, codeAttribute, offset, this);
H A DTableSwitchInstruction.java87 protected void readInfo(byte[] code, int offset) argument
90 offset += -offset & 3;
93 defaultOffset = readInt(code, offset); offset += 4;
94 lowCase = readInt(code, offset); offset += 4;
95 highCase = readInt(code, offset); offset += 4;
102 jumpOffsets[index] = readInt(code, offset); offse
107 writeInfo(byte[] code, int offset) argument
129 length(int offset) argument
135 accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) argument
[all...]
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionVisitor.java36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction); argument
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction); argument
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction); argument
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction); argument
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction); argument
41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction); argument
H A DMultiInstructionVisitor.java84 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
88 instructionVisitors[index].visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
92 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
96 instructionVisitors[index].visitVariableInstruction(clazz, method, codeAttribute, offset, variableInstruction);
100 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
104 instructionVisitors[index].visitConstantInstruction(clazz, method, codeAttribute, offset, constantInstruction);
108 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
112 instructionVisitors[index].visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
116 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction) argument
120 instructionVisitors[index].visitTableSwitchInstruction(clazz, method, codeAttribute, offset, tableSwitchInstructio
124 visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
[all...]
/external/proguard/src/proguard/optimize/
H A DDuplicateInitializerInvocationFixer.java98 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
101 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
113 codeAttributeEditor.insertBeforeInstruction(offset,
119 System.out.println(" Inserting "+extraInstruction.toString()+" before "+constantInstruction.toString(offset));
124 extraInstruction.accept(null, null, null, offset, extraAddedInstructionVisitor);
H A DTailRecursionSimplifier.java145 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
148 codeAttributeComposer.appendInstruction(offset, instruction.shrink());
152 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
168 offset + constantInstruction.length(offset);
183 codeAttribute.exceptionsAccept(clazz, method, offset, this);
190 clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"], inlining "+constantInstruction.toString(offset));
194 codeAttributeComposer.appendLabel(offset);
199 int gotoOffset = offset + 1;
211 extraTailRecursionVisitor.visitConstantInstruction(clazz, method, codeAttribute, offset, constantInstructio
[all...]
/external/proguard/src/proguard/optimize/info/
H A DDotClassMarker.java46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
H A DMethodInvocationMarker.java46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
/external/proguard/src/proguard/optimize/peephole/
H A DGotoCommonCodeReplacer.java94 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
97 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
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))
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java82 public static ByteStringMicro copyFrom(final byte[] bytes, final int offset, argument
85 System.arraycopy(bytes, offset, copy, 0, size);
121 * Copies bytes into a buffer at the given offset.
124 * @param offset in the target buffer
126 public void copyTo(final byte[] target, final int offset) { argument
127 System.arraycopy(bytes, 0, target, offset, bytes.length);
134 * @param sourceOffset offset within these bytes
135 * @param targetOffset offset within the target buffer
/external/protobuf/src/google/protobuf/compiler/
H A Dzip_writer.cc114 info.offset = raw_output_->ByteCount();
150 uint32 offset = files_[i].offset; local
168 output.WriteLittleEndian32(offset); // local header offset
180 output.WriteLittleEndian32(dir_ofs); // central directory offset
/external/qemu/android/utils/
H A Dlineinput.c176 int offset = 0; local
182 char* buffer = input->line + offset;
183 int avail = input->line_size - offset;
189 if (offset > 0) {
190 return offset;
203 if (offset > 0)
204 return offset;
212 offset = p - input->line;
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_cdrom.h66 Uint32 offset; /* Offset, in frames, from start of disk */ member in struct:SDL_CDtrack
77 int cur_frame; /* Current frame offset within current track */

Completed in 368 milliseconds

<<11121314151617181920>>