Searched refs:offset (Results 226 - 250 of 6810) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/main/
H A Dremap.c34 * is dynamic, or assigned a different static offset, in glapi. The
77 * and the dispatch offset will be returned.
84 * \return the offset of the (re-)mapped function in the dispatch
137 GLint offset; local
146 offset = _mesa_map_function_spec(spec);
148 if (offset < 0) {
153 offset != func_array[i].dispatch_offset) {
156 name, func_array[i].dispatch_offset, offset);
201 GLint offset; local
208 offset
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DMapItem.java49 private final int offset; field in class:MapItem
51 public MapItem(DexBackedDexFile dexFile, int offset) { argument
53 this.offset = offset;
57 return dexFile.readUshort(offset + TYPE_OFFSET);
66 return dexFile.readSmallUint(offset + SIZE_OFFSET);
70 return dexFile.readSmallUint(offset + OFFSET_OFFSET);
90 int offset = dexFile.readSmallUint(out.getCursor());
91 out.annotate(4, "offset = 0x%x", offset);
[all...]
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs59 /// <param name="offset">Where in <c>data</c> to start updating</param>
61 /// <exception cref="ArgumentException">The sum of offset and count is larger than the length of <c>data</c></exception>
66 public abstract void Update(byte[] data, int offset, int count); argument
128 /// <param name="offset">Where in <c>data</c> to start updating</param>
130 /// <exception cref="ArgumentException">The sum of offset and count is larger than the length of <c>data</c></exception>
133 public override void Update(byte[] data, int offset, int count) argument
135 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();
136 if ((offset+count) > data.Length) throw new ArgumentException();
140 _current = crc32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count);
179 /// <param name="offset">Wher
184 Update(byte[] data, int offset, int count) argument
[all...]
/external/lldb/source/API/
H A DSBData.cpp154 SBData::GetFloat (lldb::SBError& error, lldb::offset_t offset) argument
164 uint32_t old_offset = offset;
165 value = m_opaque_sp->GetFloat(&offset);
166 if (offset == old_offset)
170 log->Printf ("SBData::GetFloat (error=%p,offset=%" PRIu64 ") => "
171 "(%f)", error.get(), offset, value);
176 SBData::GetDouble (lldb::SBError& error, lldb::offset_t offset) argument
186 uint32_t old_offset = offset;
187 value = m_opaque_sp->GetDouble(&offset);
188 if (offset
198 GetLongDouble(lldb::SBError& error, lldb::offset_t offset) argument
220 GetAddress(lldb::SBError& error, lldb::offset_t offset) argument
242 GetUnsignedInt8(lldb::SBError& error, lldb::offset_t offset) argument
264 GetUnsignedInt16(lldb::SBError& error, lldb::offset_t offset) argument
286 GetUnsignedInt32(lldb::SBError& error, lldb::offset_t offset) argument
308 GetUnsignedInt64(lldb::SBError& error, lldb::offset_t offset) argument
330 GetSignedInt8(lldb::SBError& error, lldb::offset_t offset) argument
352 GetSignedInt16(lldb::SBError& error, lldb::offset_t offset) argument
374 GetSignedInt32(lldb::SBError& error, lldb::offset_t offset) argument
396 GetSignedInt64(lldb::SBError& error, lldb::offset_t offset) argument
418 GetString(lldb::SBError& error, lldb::offset_t offset) argument
463 ReadRawData(lldb::SBError& error, lldb::offset_t offset, void *buf, size_t size) argument
[all...]
/external/chromium_org/media/formats/mp2t/
H A Des_parser_h264_unittest.cc40 // Get the offset of the start of each access unit of |stream_|.
72 size_t offset = 0; local
78 &stream_[offset], stream_.size() - offset,
82 offset += relative_offset;
86 cur_access_unit.offset = offset;
92 offset += start_code_size;
93 if (offset >= stream_.size())
95 int nal_unit_type = stream_[offset]
115 size_t offset = 0; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DDeleteFromTextNodeCommand.h37 static PassRefPtrWillBeRawPtr<DeleteFromTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, unsigned count) argument
39 return adoptRefWillBeNoop(new DeleteFromTextNodeCommand(node, offset, count));
45 DeleteFromTextNodeCommand(PassRefPtrWillBeRawPtr<Text>, unsigned offset, unsigned count);
H A DInsertIntoTextNodeCommand.h37 static PassRefPtrWillBeRawPtr<InsertIntoTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text) argument
39 return adoptRefWillBeNoop(new InsertIntoTextNodeCommand(node, offset, text));
45 InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text);
H A DSplitTextNodeCommand.h37 static PassRefPtrWillBeRawPtr<SplitTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, int offset) argument
39 return adoptRefWillBeNoop(new SplitTextNodeCommand(node, offset));
45 SplitTextNodeCommand(PassRefPtrWillBeRawPtr<Text>, int offset);
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dprefix.cc25 // [offset, offset + 2^nbits)
27 int offset; member in struct:brotli::PrefixCodeRange
74 if (length >= range.offset && length < range.offset + (1 << range.nbits)) {
84 if (length >= range.offset && length < range.offset + (1 << range.nbits)) {
109 return kInsertLengthPrefixCode[insert_code].offset;
119 return kCopyLengthPrefixCode[copy_code].offset;
141 int offset local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_hw_context_priv.h44 unsigned offset; member in struct:r600_reg
57 int r600_state_sampler_init(struct r600_context *ctx, uint32_t offset);
58 void r600_context_pipe_state_set_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned offset);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_state_batch.c40 uint32_t offset,
53 brw->state_batch_list[brw->state_batch_count].offset = offset;
93 uint32_t start_offset = brw->state_batch_list[i].offset;
127 uint32_t offset; local
130 offset = ROUND_DOWN_TO(batch->state_batch_offset - size, alignment);
137 offset < 4*batch->used + batch->reserved_space) {
139 offset = ROUND_DOWN_TO(batch->state_batch_offset - size, alignment);
142 batch->state_batch_offset = offset;
145 brw_track_state_batch(brw, type, offset, siz
38 brw_track_state_batch(struct brw_context *brw, enum state_struct_type type, uint32_t offset, int size) argument
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkTextOnPath.cpp20 SK_MEMBER(offset, Float),
29 SkTextOnPath::SkTextOnPath() : offset(0), path(NULL), text(NULL) {
37 path->getPath(), offset, 0, *maker.fPaint);
/external/chromium_org/ui/base/ime/chromeos/
H A Dmock_ime_input_context_handler.cc35 void MockIMEInputContextHandler::DeleteSurroundingText(int32 offset, argument
38 last_delete_surrounding_text_arg_.offset = offset;
/external/chromium_org/v8/test/webkit/
H A Ddfg-inline-unused-this-method-check.js41 var offset = 0; variable
45 offset = 42;
52 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + i + i * 2));
H A Ddfg-inline-unused-this.js41 var offset = 0; variable
45 offset = 42;
55 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + i + i * 2));
H A Ddfg-intrinsic-unused-this.js37 var offset = 0; variable
41 offset = 42;
51 shouldBe("baz(object, " + i + ", " + (i * 2) + ")", "" + (offset + Math.max(i, i * 2)));
/external/elfutils/0.153/libdwfl/
H A Ddwfl_validate_address.c1 /* Validate an address and the relocatability of an offset from it.
53 dwfl_validate_address (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Sword offset) argument
64 if (offset != 0)
67 relative = address + offset;
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIAttributeCollection.java30 * Returns the attribute descriptor at a given offset.
32 * @param offset attribute offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Attribute_info get (int offset); argument
74 * Replaces the Attribute_info descriptor at a given offset. No duplicate
79 * @param offset attribute offset [must be in [0, size()) range; input not checked]
81 * @return previous attribute descriptor at this offset [never null]
83 * @throws IndexOutOfBoundsException if 'offset' i
85 set(int offset, Attribute_info attribute) argument
95 remove(int offset) argument
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_hw_context_priv.h44 unsigned offset; member in struct:r600_reg
57 int r600_state_sampler_init(struct r600_context *ctx, uint32_t offset);
58 void r600_context_pipe_state_set_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned offset);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_batch.c40 uint32_t offset,
53 brw->state_batch_list[brw->state_batch_count].offset = offset;
93 uint32_t start_offset = brw->state_batch_list[i].offset;
127 uint32_t offset; local
130 offset = ROUND_DOWN_TO(batch->state_batch_offset - size, alignment);
137 offset < 4*batch->used + batch->reserved_space) {
139 offset = ROUND_DOWN_TO(batch->state_batch_offset - size, alignment);
142 batch->state_batch_offset = offset;
145 brw_track_state_batch(brw, type, offset, siz
38 brw_track_state_batch(struct brw_context *brw, enum state_struct_type type, uint32_t offset, int size) argument
[all...]
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.h32 /** mapping offset */
33 unsigned long offset; member in struct:opd_map
65 * @param offset file offset of mapping
72 unsigned long start, unsigned long offset, unsigned long end);
97 * opd_map_offset - return offset of sample against map
101 * Returns the offset of the EIP value @eip into
102 * the map @map, which is the same as the file offset
108 return (eip - map->start) + map->offset;
/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 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/evaluation/
H A DTracedBranchUnit.java40 int offset,
47 super.branch(clazz, codeAttribute, offset, branchTarget);
52 super.branchConditionally(clazz, codeAttribute, offset, branchTarget, conditional);
38 branchConditionally(Clazz clazz, CodeAttribute codeAttribute, int offset, int branchTarget, int conditional) argument
/external/skia/src/animator/
H A DSkTextOnPath.cpp20 SK_MEMBER(offset, Float),
29 SkTextOnPath::SkTextOnPath() : offset(0), path(NULL), text(NULL) {
37 path->getPath(), offset, 0, *maker.fPaint);

Completed in 2670 milliseconds

1234567891011>>