Searched refs:offset (Results 1 - 25 of 5688) sorted by relevance

1234567891011>>

/external/chromium_org/media/test/data/
H A Dbear-320x240-manifest.js7 init: { offset: 0, size: 4370},
9 { offset: 4370, size: 40778, timecode: 0.000000 },
10 { offset: 45148, size: 27589, timecode: 0.396000 },
11 { offset: 72737, size: 28183, timecode: 0.779000 },
12 { offset: 100920, size: 31600, timecode: 1.197000 },
13 { offset: 132520, size: 33922, timecode: 1.589000 },
14 { offset: 166442, size: 30587, timecode: 1.987000 },
15 { offset: 197029, size: 22079, timecode: 2.400000 },
H A Dbear-640x360-manifest.js7 init: { offset: 0, size: 4340},
9 { offset: 4340, size: 50950, timecode: 0.000000},
10 { offset: 55290, size: 18785, timecode: 0.527000},
11 { offset: 74075, size: 19810, timecode: 1.014000},
12 { offset: 93885, size: 21706, timecode: 1.522000},
13 { offset: 115591, size: 20249, timecode: 2.016000},
14 { offset: 135840, size: 9946, timecode: 2.515000},
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/
H A Doffset.asm2 mov ax,offset a
3 mov ax,offset[a]
H A Dlabel.asm2 mov ax,offset a
/external/llvm/unittests/Support/
H A DDataExtractorTest.cpp28 uint32_t offset = 0; local
30 EXPECT_EQ(0x80U, DE.getU8(&offset));
31 EXPECT_EQ(1U, offset);
32 offset = 0;
33 EXPECT_EQ(0x8090U, DE.getU16(&offset));
34 EXPECT_EQ(2U, offset);
35 offset = 0;
36 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset));
37 EXPECT_EQ(4U, offset);
38 offset
76 uint32_t offset = 0; local
93 uint32_t offset = 0; local
103 uint32_t offset = 0; local
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DInstruction.java682 * Writes the Instruction at the given offset in the given code attribute.
684 public final void write(CodeAttribute codeAttribute, int offset) argument
686 write(codeAttribute.code, offset);
691 * Writes the Instruction at the given offset in the given code array.
693 public void write(byte[] code, int offset) argument
698 code[offset++] = InstructionConstants.OP_WIDE;
702 code[offset++] = opcode;
705 writeInfo(code, offset);
722 protected abstract void readInfo(byte[] code, int offset); argument
728 protected abstract void writeInfo(byte[] code, int offset); argument
734 length(int offset) argument
740 accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) argument
746 toString(int offset) argument
793 readByte(byte[] code, int offset) argument
798 readShort(byte[] code, int offset) argument
804 readInt(byte[] code, int offset) argument
812 readValue(byte[] code, int offset, int valueSize) argument
824 readSignedByte(byte[] code, int offset) argument
829 readSignedShort(byte[] code, int offset) argument
835 readSignedValue(byte[] code, int offset, int valueSize) argument
847 writeByte(byte[] code, int offset, int value) argument
857 writeShort(byte[] code, int offset, int value) argument
868 writeInt(byte[] code, int offset, int value) argument
876 writeValue(byte[] code, int offset, int value, int valueSize) argument
888 writeSignedByte(byte[] code, int offset, int value) argument
898 writeSignedShort(byte[] code, int offset, int value) argument
909 writeSignedValue(byte[] code, int offset, int value, int valueSize) 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 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/qemu-pc-bios/bochs/bios/
H A Dbiossums.c35 long chksum_bios_get_offset( byte* data, long offset );
36 byte chksum_bios_calc_value( byte* data, long offset );
37 byte chksum_bios_get_value( byte* data, long offset );
38 void chksum_bios_set_value( byte* data, long offset, byte value );
46 long chksum__32__get_offset( byte* data, long offset );
47 byte chksum__32__calc_value( byte* data, long offset );
48 byte chksum__32__get_value( byte* data, long offset );
49 void chksum__32__set_value( byte* data, long offset, byte value );
57 long chksum__mp__get_offset( byte* data, long offset );
58 byte chksum__mp__calc_value( byte* data, long offset );
94 long offset, tmp_offset; local
277 chksum_bios_set_value( byte* data, long offset, byte value ) argument
330 chksum__32__set_value( byte* data, long offset, byte value ) argument
384 chksum__mp__set_value( byte* data, long offset, byte value ) argument
444 chksum_pcmp_set_value( byte* data, long offset, byte value ) argument
499 chksum__pir_set_value( byte* data, long offset, byte value ) argument
[all...]
/external/elfutils/libdwfl/
H A Ddwfl_getmodules.c57 ptrdiff_t offset)
63 But continuing from an offset is slow that way. So when
67 choose the style of place-holder when we return an offset,
72 if ((offset & 3) == 1)
74 offset >>= 2;
75 for (ptrdiff_t pos = 0; pos < offset; ++pos)
81 else if (((offset & 3) == 2) && likely (dwfl->lookup_module != NULL))
83 offset >>= 2;
85 if ((size_t) offset - 1 == dwfl->lookup_elts)
88 if (unlikely ((size_t) offset
53 dwfl_getmodules(Dwfl *dwfl, int (*callback) (Dwfl_Module *, void **, const char *, Dwarf_Addr, void *), void *arg, ptrdiff_t offset) argument
[all...]
/external/elfutils/tests/
H A Drun-show-abbrev.sh33 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
34 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
35 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
36 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
37 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
38 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
39 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
41 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19
42 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21
43 abbrev[19]: attr[2]: code = 3, form = 8, offset
[all...]
/external/chromium_org/chrome/common/
H A Dspellcheck_marker.h16 return marker.offset < text_length_;
23 SpellCheckMarker() : hash(-1), offset(-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/bindings/v8/custom/
H A DV8ArrayBufferViewCustomScript.js26 return function(source, length, offset) {
27 if (offset == 0) {
32 this[i + offset] = source[i];
/external/elfutils/libelf/
H A Dgelf_offscn.c62 gelf_offscn (elf, offset)
64 GElf_Off offset;
68 if ((Elf32_Off) offset != offset)
74 return INTUSE(elf32_offscn) (elf, (Elf32_Off) offset);
77 return INTUSE(elf64_offscn) (elf, offset);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasGradient.idl29 [RaisesException] void addColorStop(float offset, DOMString color);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGStopElement.idl27 readonly attribute SVGAnimatedNumber offset;
/external/chromium_org/third_party/icu/source/common/
H A Dunifilt.cpp36 * filters. Matches a single code point at offset (either one or
40 int32_t& offset,
44 if (offset < limit &&
45 contains(c = text.char32At(offset))) {
46 offset += UTF_CHAR_LENGTH(c);
49 if (offset > limit &&
50 contains(c = text.char32At(offset))) {
51 // Backup offset by 1, unless the preceding character is a
52 // surrogate pair -- then backup by 2 (keep offset pointing at
54 --offset;
39 matches(const Replaceable& text, int32_t& offset, int32_t limit, UBool incremental) argument
[all...]
/external/icu4c/common/
H A Dunifilt.cpp37 * filters. Matches a single code point at offset (either one or
41 int32_t& offset,
45 if (offset < limit &&
46 contains(c = text.char32At(offset))) {
47 offset += U16_LENGTH(c);
50 if (offset > limit &&
51 contains(c = text.char32At(offset))) {
52 // Backup offset by 1, unless the preceding character is a
53 // surrogate pair -- then backup by 2 (keep offset pointing at
55 --offset;
40 matches(const Replaceable& text, int32_t& offset, int32_t limit, UBool incremental) argument
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc29 bool FontData::Bound(int32_t offset, int32_t length) { argument
30 if (offset + length > Size() || offset < 0 || length < 0)
33 bound_offset_ += offset;
38 bool FontData::Bound(int32_t offset) { argument
39 if (offset > Size() || offset < 0)
42 bound_offset_ += offset;
54 FontData::FontData(FontData* data, int32_t offset, int32_t length) { argument
56 Bound(data->bound_offset_ + offset, lengt
59 FontData(FontData* data, int32_t offset) argument
74 BoundOffset(int32_t offset) argument
78 BoundLength(int32_t offset, int32_t length) argument
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DBranchTargetFinder.java82 * Returns whether there is an instruction at the given offset in the
85 public boolean isInstruction(int offset) argument
87 return (instructionMarks[offset] & INSTRUCTION) != 0;
92 * Returns whether the instruction at the given offset is the target of
95 public boolean isTarget(int offset) argument
97 return offset == 0 ||
98 (instructionMarks[offset] & (BRANCH_TARGET |
106 * Returns whether the instruction at the given offset is the origin of a
109 public boolean isBranchOrigin(int offset) argument
111 return (instructionMarks[offset]
119 isBranchTarget(int offset) argument
130 isAfterBranch(int offset) argument
140 isExceptionStart(int offset) argument
150 isExceptionEnd(int offset) argument
160 isExceptionHandler(int offset) argument
170 isSubroutineInvocation(int offset) argument
180 isSubroutineStart(int offset) argument
190 isSubroutine(int offset) argument
200 isSubroutineReturning(int offset) argument
210 subroutineStart(int offset) argument
220 subroutineEnd(int offset) argument
230 isNew(int offset) argument
241 initializationOffset(int offset) argument
273 isInitializer(int offset) argument
286 creationOffset(int offset) argument
449 visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
474 visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
515 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
537 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
568 visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
616 markBranchTargets(int offset, int[] jumpOffsets) argument
628 markBranchOrigin(int offset) argument
637 markBranchTarget(int offset, int jumpOffset) argument
677 checkSubroutine(int offset) argument
[all...]
/external/chromium_org/content/public/browser/
H A Ddownload_save_info.cc10 : offset(0), prompt_for_save_location(false) {
/external/chromium_org/net/disk_cache/
H A Dmapped_file_avoid_mmap_posix.cc38 size_t offset = block->offset() + view_size_; local
39 return Read(block->buffer(), block->size(), offset);
43 size_t offset = block->offset() + view_size_; local
44 return Write(block->buffer(), block->size(), offset);
53 for (size_t offset = 0; offset < view_size_; offset += block_size) {
54 size_t size = std::min(view_size_ - offset, block_siz
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
H A Dmmio.h41 read_MMIO_LE32( volatile void * base, unsigned long offset )
47 : "b" (base), "r" (offset) );
54 read_MMIO_LE32( volatile void * base, unsigned long offset )
56 volatile uint32_t * p = (volatile uint32_t *) (((volatile char *) base) + offset);
/external/mesa3d/src/mesa/drivers/dri/common/
H A Dmmio.h41 read_MMIO_LE32( volatile void * base, unsigned long offset )
47 : "b" (base), "r" (offset) );
54 read_MMIO_LE32( volatile void * base, unsigned long offset )
56 volatile uint32_t * p = (volatile uint32_t *) (((volatile char *) base) + offset);
/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

Completed in 570 milliseconds

1234567891011>>