Searched refs:offset (Results 1 - 25 of 6810) 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/conscrypt/src/main/java/org/conscrypt/util/
H A DArrays.java27 * Checks that the range described by {@code offset} and {@code count}
32 public static final void checkOffsetAndCount(int arrayLength, int offset, int count) { argument
33 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
35 + offset + "; regionLength=" + count);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DBaseDexBuffer.java45 public int readSmallUint(int offset) { argument
47 int result = (buf[offset] & 0xff) |
48 ((buf[offset+1] & 0xff) << 8) |
49 ((buf[offset+2] & 0xff) << 16) |
50 ((buf[offset+3]) << 24);
52 throw new ExceptionWithContext("Encountered small uint that is out of range at offset 0x%x", offset);
57 public int readOptionalUint(int offset) { argument
59 int result = (buf[offset] & 0xff) |
60 ((buf[offset
69 readUshort(int offset) argument
75 readUbyte(int offset) argument
79 readLong(int offset) argument
91 readInt(int offset) argument
99 readShort(int offset) argument
105 readByte(int offset) argument
110 readerAt(int offset) argument
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DAlignmentUtils.java32 public static int alignOffset(int offset, int alignment) { argument
35 return (offset + mask) & ~mask;
38 public static boolean isAligned(int offset, int alignment) { argument
39 return (offset % alignment) == 0;
/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/valgrind/main/none/tests/mips64/
H A Dmacro_load_store.h3 #define TEST1(instruction, offset, mem) \
14 : "r" (mem), "r" (offset) \
17 printf("%s :: offset: 0x%x, out: 0x%lx\n", \
18 instruction, offset, out); \
21 #define TEST2(instruction, offset) \
40 : "r" (reg_val2) , "r" (reg_val_zero), "r" (offset) \
43 printf("%s :: offset: 0x%x, out: 0x%lx, outHI: 0x%lx\n", \
44 instruction, offset, out, outHI); \
47 #define TEST3(instruction, offset, mem) \
58 : "r" (mem) , "r" (offset) \
[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/chromium_org/third_party/brotli/src/woff2/
H A Dstore_bytes.h27 inline size_t StoreU32(uint8_t* dst, size_t offset, uint32_t x) { argument
28 dst[offset] = x >> 24;
29 dst[offset + 1] = x >> 16;
30 dst[offset + 2] = x >> 8;
31 dst[offset + 3] = x;
32 return offset + 4;
35 inline size_t Store16(uint8_t* dst, size_t offset, int x) { argument
36 dst[offset] = x >> 8;
37 dst[offset + 1] = x;
38 return offset
41 StoreU32(uint32_t val, size_t* offset, uint8_t* dst) argument
48 Store16(int val, size_t* offset, uint8_t* dst) argument
53 StoreBytes(const uint8_t* data, size_t len, size_t* offset, uint8_t* dst) argument
[all...]
/external/elfutils/0.153/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/0.153/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/svg/
H A DSVGStopElement.idl27 readonly attribute SVGAnimatedNumber offset;
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-altkey-set.js6 offset: 0,
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/third_party/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/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/chromium_org/content/public/browser/
H A Ddownload_save_info.cc10 : offset(0), prompt_for_save_location(false) {
/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);

Completed in 5070 milliseconds

1234567891011>>