Searched defs:offset (Results 151 - 175 of 1540) sorted by relevance

1234567891011>>

/external/libvpx/vp8/common/
H A Dmbpitch.c26 int offset,
34 b->dst = offset;
40 b->pre = offset;
20 setup_block( BLOCKD *b, int mv_stride, unsigned char **base, int Stride, int offset, BLOCKSET bs ) argument
/external/llvm/lib/DebugInfo/
H A DDWARFDebugAbbrev.cpp64 uint32_t offset = 0; local
66 while (data.isValidOffset(offset)) {
67 uint32_t initial_cu_offset = offset;
70 if (abbrevDeclSet.extract(data, &offset))
86 OS << format("Abbrev table for offset: 0x%8.8x\n", pos->first);
H A DDWARFDebugAbbrev.h35 DWARFAbbreviationDeclarationSet(uint64_t offset, uint32_t idxOffset) argument
36 : Offset(offset), IdxOffset(idxOffset) {}
/external/mesa3d/src/glsl/
H A Dir_set_program_inouts.cpp69 mark(struct gl_program *prog, ir_variable *var, int offset, int len) argument
81 prog->InputsRead |= BITFIELD64_BIT(var->location + offset + i);
83 prog->OutputsWritten |= BITFIELD64_BIT(var->location + offset + i);
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DLessZeroFrame.java71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) argument
73 stackMapFrameVisitor.visitLessZeroFrame(clazz, method, codeAttribute, offset, this);
H A DSameOneFrame.java67 public void stackItemAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor) argument
69 stackItem.accept(clazz, method, codeAttribute, offset, verificationTypeVisitor);
83 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) argument
85 stackMapFrameVisitor.visitSameOneFrame(clazz, method, codeAttribute, offset, this);
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DStackMapFrameVisitor.java35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame); argument
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame); argument
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame); argument
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame); argument
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame); argument
/external/proguard/src/proguard/classfile/visitor/
H A DDotClassClassVisitor.java64 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
67 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
/external/proguard/src/proguard/evaluation/
H A DBasicBranchUnit.java86 int offset,
98 int offset,
84 branch(Clazz clazz, CodeAttribute codeAttribute, int offset, int branchTarget) argument
96 branchConditionally(Clazz clazz, CodeAttribute codeAttribute, int offset, int branchTarget, int conditional) argument
/external/proguard/src/proguard/optimize/info/
H A DBackwardBranchMarker.java41 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
44 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
50 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
64 * Marks the given method if the given branch offset is negative.
H A DInstanceofClassMarker.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 DInstantiationClassMarker.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 DVariableUsageMarker.java81 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
84 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableCodeRemover.java123 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
127 System.out.println(" "+(reachableCodeMarker.isReachable(offset) ? "+" : "-")+" "+instruction.toString(offset));
131 if (!reachableCodeMarker.isReachable(offset))
134 codeAttributeEditor.deleteInstruction(offset);
139 instruction.accept(clazz, method, codeAttribute, offset, extraInstructionVisitor);
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DMessageMicro.java81 * Serialize to a byte array starting at offset through length. The
89 public void toByteArray(byte [] data, int offset, int length) { argument
91 final CodedOutputStreamMicro output = CodedOutputStreamMicro.newInstance(data, offset, length);
/external/qemu/
H A Dcompatfd.c47 size_t offset = 0; local
52 while (offset < sizeof(buffer)) {
55 len = write(info->fd, (char *)&buffer + offset,
56 sizeof(buffer) - offset);
64 offset += len;
H A Ddevice_tree.c78 int offset; local
80 offset = fdt_path_offset(fdt, node_path);
81 if (offset < 0)
82 return offset;
84 return fdt_setprop(fdt, offset, property, val_array, size);
90 int offset; local
92 offset = fdt_path_offset(fdt, node_path);
93 if (offset < 0)
94 return offset;
96 return fdt_setprop_cell(fdt, offset, propert
102 int offset; local
[all...]
/external/srec/srec/cfront/
H A Dca_front.c49 CA_Frontend *CA_AllocateFrontend(float srcscale, int offset, argument
57 hFrontend->offset = offset;
162 /* Ignore first 3 frames. This prevents a spike due to dc offset.
/external/srec/srec/include/
H A Dfrontapi.h75 int offset; member in struct:__anon9858
93 int offset,
98 * offset DC offset applied to incoming wave data
644 * The 'offset' and 'gain' parameters are applied to the current
684 unsigned long offset,
690 * offset Sample number starting the segment (first sample == 0)
802 * The 'offset' and 'gain' parameters are applied to the current
/external/v8/test/cctest/
H A Dtest-assembler-x64.cc309 int offset = offsets[i]; local
310 CHECK(Operand(rax, offset).AddressUsesRegister(rax));
311 CHECK(!Operand(rax, offset).AddressUsesRegister(r8));
312 CHECK(!Operand(rax, offset).AddressUsesRegister(rcx));
314 CHECK(Operand(rax, rax, times_1, offset).AddressUsesRegister(rax));
315 CHECK(!Operand(rax, rax, times_1, offset).AddressUsesRegister(r8));
316 CHECK(!Operand(rax, rax, times_1, offset).AddressUsesRegister(rcx));
318 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rax));
319 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rcx));
320 CHECK(!Operand(rax, rcx, times_1, offset)
[all...]
/external/valgrind/main/callgrind/
H A Devents.h69 Int offset[MAX_EVENTGROUP_COUNT]; member in struct:_EventSet
115 Int offset; member in struct:EventMappingEntry
/external/webkit/Source/JavaScriptCore/assembler/
H A DCodeLocation.h49 // at an offset from one you already know. When patching code to optimize it
56 CodeLocationInstruction instructionAtOffset(int offset);
57 CodeLocationLabel labelAtOffset(int offset);
58 CodeLocationJump jumpAtOffset(int offset);
59 CodeLocationCall callAtOffset(int offset);
60 CodeLocationNearCall nearCallAtOffset(int offset);
61 CodeLocationDataLabelPtr dataLabelPtrAtOffset(int offset);
62 CodeLocationDataLabel32 dataLabel32AtOffset(int offset);
138 inline CodeLocationInstruction CodeLocationCommon::instructionAtOffset(int offset) argument
140 ASSERT_VALID_CODE_OFFSET(offset);
144 labelAtOffset(int offset) argument
150 jumpAtOffset(int offset) argument
156 callAtOffset(int offset) argument
162 nearCallAtOffset(int offset) argument
168 dataLabelPtrAtOffset(int offset) argument
174 dataLabel32AtOffset(int offset) argument
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSArrayBufferViewHelper.h50 // void set(in WebGL<T>Array array, [Optional] in unsigned long offset);
51 unsigned offset = 0; local
53 offset = exec->argument(1).toInt32(exec);
55 impl->set(array, offset, ec);
61 // void set(in sequence<long> array, [Optional] in unsigned long offset);
63 uint32_t offset = 0; local
65 offset = exec->argument(1).toInt32(exec);
67 if (offset > impl->length()
68 || offset + length > impl->length()
69 || offset
95 unsigned offset = (exec->argumentCount() > 1) ? exec->argument(1).toUInt32(exec) : 0; local
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DFileWriterSync.cpp73 void FileWriterSync::truncate(long long offset, ExceptionCode& ec) argument
78 if (offset < 0) {
83 writer()->truncate(offset);
89 if (offset < position())
90 setPosition(offset);
91 setLength(offset);
/external/webkit/Source/WebCore/html/parser/
H A Dcreate-html-entity-table55 def offset_table_entry(offset):
56 return " &staticEntityTable[%s]," % offset
122 offset = 0 variable
126 index[letter] = offset
131 offset += 1

Completed in 525 milliseconds

1234567891011>>