Searched refs:offset (Results 26 - 50 of 6810) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DWriteListener.java4 * The <class>WriteListener</class> is used to get the offset of
6 * later needs an offset.
9 public void beforeWrite(long offset); argument
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A Dmesadef.py190 for (name, alias, offset) in records:
192 return offset
199 def EmitEntry(name, returnType, argTypeList, argNameList, alias, offset):
204 if offset < 0:
205 offset = FindOffset(dispatchName)
206 if offset >= 0 and string.find(name, "unused") == -1:
209 records.append((name, dispatchName, offset))
/external/chromium_org/third_party/skia/tests/
H A DSkBase64Test.cpp18 for (int offset = 0; offset < 6; ++offset) {
19 size_t length = 256 - offset;
20 size_t encodeLength = SkBase64::Encode(all + offset, length, NULL);
22 SkBase64::Encode(all + offset, length, src.get());
26 REPORTER_ASSERT(reporter, (strcmp((const char*) (all + offset), tryMe.getData()) == 0));
/external/mesa3d/src/mapi/glapi/gen/
H A Dmesadef.py190 for (name, alias, offset) in records:
192 return offset
199 def EmitEntry(name, returnType, argTypeList, argNameList, alias, offset):
204 if offset < 0:
205 offset = FindOffset(dispatchName)
206 if offset >= 0 and string.find(name, "unused") == -1:
209 records.append((name, dispatchName, offset))
/external/skia/tests/
H A DSkBase64Test.cpp18 for (int offset = 0; offset < 6; ++offset) {
19 size_t length = 256 - offset;
20 size_t encodeLength = SkBase64::Encode(all + offset, length, NULL);
22 SkBase64::Encode(all + offset, length, src.get());
26 REPORTER_ASSERT(reporter, (strcmp((const char*) (all + offset), tryMe.getData()) == 0));
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserObserver.h54 virtual void startRuleHeader(CSSRuleSourceData::Type, unsigned offset) = 0;
55 virtual void endRuleHeader(unsigned offset) = 0;
56 virtual void startSelector(unsigned offset) = 0;
57 virtual void endSelector(unsigned offset) = 0;
58 virtual void startRuleBody(unsigned offset) = 0;
59 virtual void endRuleBody(unsigned offset, bool error) = 0;
60 virtual void startProperty(unsigned offset) = 0;
61 virtual void endProperty(bool isImportant, bool isParsed, unsigned offset, CSSParserError) = 0;
62 virtual void startComment(unsigned offset) = 0;
63 virtual void endComment(unsigned offset)
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDESedeParameters.java26 * @param offset offset into the byte array the key starts at
31 int offset,
34 for (int i = offset; i < length; i += DES_KEY_LENGTH)
49 * @param offset offset into the byte array the key starts at
53 int offset)
55 return isWeakKey(key, offset, key.length - offset);
29 isWeakKey( byte[] key, int offset, int length) argument
51 isWeakKey( byte[] key, int offset) argument
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfo.cpp29 DWARFDebugMacinfo::Dump(Stream *s, const DataExtractor& macinfo_data, lldb::offset_t offset) argument
37 if (offset == LLDB_INVALID_OFFSET)
39 offset = 0;
40 while (maninfo_entry.Extract(macinfo_data, &offset))
45 if (maninfo_entry.Extract(macinfo_data, &offset))
H A DDWARFLocationList.cpp21 DWARFLocationList::Dump(Stream &s, const DWARFCompileUnit* cu, const DataExtractor& debug_loc_data, lldb::offset_t offset) argument
27 while (debug_loc_data.ValidOffset(offset))
29 start_addr = debug_loc_data.GetMaxU64(&offset,addr_size);
30 end_addr = debug_loc_data.GetMaxU64(&offset,addr_size);
43 uint32_t loc_length = debug_loc_data.GetU16(&offset);
45 DataExtractor locationData(debug_loc_data, offset, loc_length);
48 offset += loc_length;
51 return offset;
72 DWARFLocationList::Size(const DataExtractor& debug_loc_data, lldb::offset_t offset) argument
74 const dw_offset_t debug_loc_offset = offset;
[all...]
/external/elfutils/0.153/libelf/
H A Dgelf_getnote.c1 /* Get note information at the supplied offset.
61 gelf_getnote (data, offset, result, name_offset, desc_offset)
63 size_t offset;
85 offset is OK. */
86 if (unlikely (offset + sizeof (GElf_Nhdr) > data->d_size))
89 offset = 0;
93 const GElf_Nhdr *n = data->d_buf + offset;
94 offset += sizeof *n;
99 if (unlikely (data->d_size - offset < namesz))
100 offset
[all...]
/external/qemu-pc-bios/vgabios/
H A Dbiossums.c28 long chksum_bios_get_offset( byte* data, long offset );
29 byte chksum_bios_calc_value( byte* data, long offset );
30 byte chksum_bios_get_value( byte* data, long offset );
31 void chksum_bios_set_value( byte* data, long offset, byte value );
36 long chksum_pmid_get_offset( byte* data, long offset );
37 byte chksum_pmid_calc_value( byte* data, long offset );
38 byte chksum_pmid_get_value( byte* data, long offset );
39 void chksum_pmid_set_value( byte* data, long offset, byte value );
43 long chksum_pcir_get_offset( byte* data, long offset );
53 long offset, tmp_offse local
210 chksum_bios_set_value( byte* data, long offset, byte value ) argument
260 chksum_pmid_set_value( byte* data, long offset, byte value ) argument
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DScanHandler.java29 public void adup(char[] buff, int offset, int length) throws SAXException; argument
35 public void aname(char[] buff, int offset, int length) throws SAXException; argument
41 public void aval(char[] buff, int offset, int length) throws SAXException; argument
46 public void cdsect(char[] buff, int offset, int length) throws SAXException; argument
52 public void decl(char[] buff, int offset, int length) throws SAXException; argument
58 public void entity(char[] buff, int offset, int length) throws SAXException; argument
64 public void eof(char[] buff, int offset, int length) throws SAXException; argument
70 public void etag(char[] buff, int offset, int length) throws SAXException; argument
76 public void gi(char[] buff, int offset, int length) throws SAXException; argument
82 public void pcdata(char[] buff, int offset, in argument
88 pi(char[] buff, int offset, int length) argument
94 pitarget(char[] buff, int offset, int length) argument
100 stagc(char[] buff, int offset, int length) argument
106 stage(char[] buff, int offset, int length) argument
112 cmnt(char[] buff, int offset, int length) argument
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DBranchTargetFinder.java88 * Returns whether there is an instruction at the given offset in the
91 public boolean isInstruction(int offset) argument
93 return (instructionMarks[offset] & INSTRUCTION) != 0;
98 * Returns whether the instruction at the given offset is the target of
101 public boolean isTarget(int offset) argument
103 return offset == 0 ||
104 (instructionMarks[offset] & (BRANCH_TARGET |
112 * Returns whether the instruction at the given offset is the origin of a
115 public boolean isBranchOrigin(int offset) argument
117 return (instructionMarks[offset]
125 isBranchTarget(int offset) argument
136 isAfterBranch(int offset) argument
146 isExceptionStart(int offset) argument
156 isExceptionEnd(int offset) argument
166 isExceptionHandler(int offset) argument
176 isSubroutineInvocation(int offset) argument
186 isSubroutineStart(int offset) argument
196 isSubroutine(int offset) argument
206 isSubroutineReturning(int offset) argument
216 subroutineStart(int offset) argument
226 subroutineEnd(int offset) argument
236 isNew(int offset) argument
247 initializationOffset(int offset) argument
279 isInitializer(int offset) argument
292 creationOffset(int offset) argument
457 visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
482 visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
523 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
548 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
590 visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
637 markBranches(int offset, int[] jumpOffsets) argument
649 markBranch(int offset, int jumpOffset) argument
662 markBranchOrigin(int offset) argument
671 markBranchTarget(int offset, int jumpOffset) argument
682 markBranchSubroutineStart(int offset, int jumpOffset, int subroutineStart) argument
726 checkSubroutine(int offset) argument
[all...]
/external/chromium_org/mojo/public/js/bindings/
H A Dbuffer.js57 Buffer.prototype.getUint8 = function(offset) {
58 return this.dataView.getUint8(offset);
60 Buffer.prototype.getUint16 = function(offset) {
61 return this.dataView.getUint16(offset, kHostIsLittleEndian);
63 Buffer.prototype.getUint32 = function(offset) {
64 return this.dataView.getUint32(offset, kHostIsLittleEndian);
66 Buffer.prototype.getUint64 = function(offset) {
69 lo = this.dataView.getUint32(offset, kHostIsLittleEndian);
70 hi = this.dataView.getUint32(offset + 4, kHostIsLittleEndian);
72 hi = this.dataView.getUint32(offset, kHostIsLittleEndia
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextInsertionBaseCommand.h54 unsigned offset = 0; local
56 while ((newline = string.find('\n', offset)) != kNotFound) {
57 operation(offset, newline - offset, false);
58 offset = newline + 1;
60 if (!offset)
64 if (length != offset)
65 operation(offset, length - offset, true);
/external/chromium_org/third_party/ots/tools/
H A Dttf-checksum.py4 def readU32(contents, offset):
5 wordBytes = contents[offset:offset + 4]
8 def readU16(contents, offset):
9 wordBytes = contents[offset:offset + 2]
18 for offset in range(0, len(contents), 4):
19 sum += readU32(contents, offset)
26 for offset in range(12, 12 + numTables * 16, 16):
27 tag = contents[offset
[all...]
/external/chromium_org/chrome/common/
H A Dspellcheck_marker.h16 return marker.offset < text_length_;
23 SpellCheckMarker() : hash(0xFFFFFFFF), offset(static_cast<size_t>(-1)) {}
25 SpellCheckMarker(uint32 hash, size_t offset) : hash(hash), offset(offset) {} argument
28 size_t offset; member in class:SpellCheckMarker
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
H A DScrollingConstraints.cpp33 FloatSize offset; local
36 offset.setWidth(viewportRect.x() - m_viewportRectAtLastLayout.x());
38 offset.setWidth(viewportRect.maxX() - m_viewportRectAtLastLayout.maxX());
41 offset.setHeight(viewportRect.y() - m_viewportRectAtLastLayout.y());
43 offset.setHeight(viewportRect.maxY() - m_viewportRectAtLastLayout.maxY());
45 return m_layerPositionAtLastLayout + offset;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_state_dump.c35 batch_out(struct brw_context *brw, const char *name, uint32_t offset,
39 batch_out(struct brw_context *brw, const char *name, uint32_t offset, argument
43 uint32_t *data = intel->batch.bo->virtual + offset;
47 offset + index * 4, data[index], name);
80 static void dump_vs_state(struct brw_context *brw, uint32_t offset) argument
84 struct brw_vs_unit_state *vs = intel->batch.bo->virtual + offset;
86 batch_out(brw, name, offset, 0, "thread0\n");
87 batch_out(brw, name, offset, 1, "thread1\n");
88 batch_out(brw, name, offset, 2, "thread2\n");
89 batch_out(brw, name, offset,
96 dump_gs_state(struct brw_context *brw, uint32_t offset) argument
112 dump_clip_state(struct brw_context *brw, uint32_t offset) argument
132 dump_sf_state(struct brw_context *brw, uint32_t offset) argument
149 dump_wm_state(struct brw_context *brw, uint32_t offset) argument
177 dump_surface_state(struct brw_context *brw, uint32_t offset) argument
201 dump_gen7_surface_state(struct brw_context *brw, uint32_t offset) argument
221 dump_sdc(struct brw_context *brw, uint32_t offset) argument
251 dump_sampler_state(struct brw_context *brw, uint32_t offset, uint32_t size) argument
274 dump_gen7_sampler_state(struct brw_context *brw, uint32_t offset, uint32_t size) argument
298 dump_sf_viewport_state(struct brw_context *brw, uint32_t offset) argument
320 dump_clip_viewport_state(struct brw_context *brw, uint32_t offset) argument
335 dump_sf_clip_viewport_state(struct brw_context *brw, uint32_t offset) argument
357 dump_cc_viewport_state(struct brw_context *brw, uint32_t offset) argument
366 dump_depth_stencil_state(struct brw_context *brw, uint32_t offset) argument
386 dump_cc_state_gen4(struct brw_context *brw, uint32_t offset) argument
400 dump_cc_state_gen6(struct brw_context *brw, uint32_t offset) argument
419 dump_blend_state(struct brw_context *brw, uint32_t offset) argument
428 dump_scissor(struct brw_context *brw, uint32_t offset) argument
441 dump_vs_constants(struct brw_context *brw, uint32_t offset, uint32_t size) argument
458 dump_wm_constants(struct brw_context *brw, uint32_t offset, uint32_t size) argument
474 dump_binding_table(struct brw_context *brw, uint32_t offset, uint32_t size) argument
505 uint32_t offset = item->offset; local
551 uint32_t offset = brw->state_batch_list[i].offset; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_dump.c35 batch_out(struct brw_context *brw, const char *name, uint32_t offset,
39 batch_out(struct brw_context *brw, const char *name, uint32_t offset, argument
43 uint32_t *data = intel->batch.bo->virtual + offset;
47 offset + index * 4, data[index], name);
80 static void dump_vs_state(struct brw_context *brw, uint32_t offset) argument
84 struct brw_vs_unit_state *vs = intel->batch.bo->virtual + offset;
86 batch_out(brw, name, offset, 0, "thread0\n");
87 batch_out(brw, name, offset, 1, "thread1\n");
88 batch_out(brw, name, offset, 2, "thread2\n");
89 batch_out(brw, name, offset,
96 dump_gs_state(struct brw_context *brw, uint32_t offset) argument
112 dump_clip_state(struct brw_context *brw, uint32_t offset) argument
132 dump_sf_state(struct brw_context *brw, uint32_t offset) argument
149 dump_wm_state(struct brw_context *brw, uint32_t offset) argument
177 dump_surface_state(struct brw_context *brw, uint32_t offset) argument
201 dump_gen7_surface_state(struct brw_context *brw, uint32_t offset) argument
221 dump_sdc(struct brw_context *brw, uint32_t offset) argument
251 dump_sampler_state(struct brw_context *brw, uint32_t offset, uint32_t size) argument
274 dump_gen7_sampler_state(struct brw_context *brw, uint32_t offset, uint32_t size) argument
298 dump_sf_viewport_state(struct brw_context *brw, uint32_t offset) argument
320 dump_clip_viewport_state(struct brw_context *brw, uint32_t offset) argument
335 dump_sf_clip_viewport_state(struct brw_context *brw, uint32_t offset) argument
357 dump_cc_viewport_state(struct brw_context *brw, uint32_t offset) argument
366 dump_depth_stencil_state(struct brw_context *brw, uint32_t offset) argument
386 dump_cc_state_gen4(struct brw_context *brw, uint32_t offset) argument
400 dump_cc_state_gen6(struct brw_context *brw, uint32_t offset) argument
419 dump_blend_state(struct brw_context *brw, uint32_t offset) argument
428 dump_scissor(struct brw_context *brw, uint32_t offset) argument
441 dump_vs_constants(struct brw_context *brw, uint32_t offset, uint32_t size) argument
458 dump_wm_constants(struct brw_context *brw, uint32_t offset, uint32_t size) argument
474 dump_binding_table(struct brw_context *brw, uint32_t offset, uint32_t size) argument
505 uint32_t offset = item->offset; local
551 uint32_t offset = brw->state_batch_list[i].offset; local
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dicm.c35 #define test(what, offset) do { \
36 icm(&a[0+offset], 0, what); cc = get_cc(); \
37 icm(&a[1+offset+cc], 1, what); cc = get_cc(); \
38 icm(&a[2+offset+cc], 2, what); cc = get_cc(); \
39 icm(&a[3+offset+cc], 3, what); cc = get_cc(); \
40 icm(&a[4+offset+cc], 4, what); cc = get_cc(); \
41 icm(&a[5+offset+cc], 5, what); cc = get_cc(); \
42 icm(&a[6+offset+cc], 6, what); cc = get_cc(); \
43 icm(&a[7+offset+cc], 7, what); cc = get_cc(); \
44 icm(&a[8+offset
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasGradient.idl31 [RaisesException] void addColorStop(float offset, DOMString color);
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-altkey-container.js8 var offset = activeAccentKeySet.offset;
10 while (offset) {
12 offset--;
/external/libcxx/test/input.output/iostreams.base/fpos/fpos.operations/
H A Doffset.pass.cpp23 std::streamoff offset(p);
24 assert(offset == 7);
/external/libvpx/libvpx/third_party/libmkv/
H A DEbmlBufferWriter.h5 unsigned long long offset; member in struct:__anon24817
11 unsigned int offset; member in struct:__anon24818

Completed in 5841 milliseconds

1234567891011>>