Home
last modified time | relevance | path

Searched refs:offset (Results 1 – 25 of 8394) sorted by relevance

12345678910>>...336

/external/elfutils/tests/
Drun-show-abbrev.sh25 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
26 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
27 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
28 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
29 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
30 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
31 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
33 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19
34 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21
35 abbrev[19]: attr[2]: code = 3, form = 8, offset = 23
[all …]
Drun-show-die-info.sh29 CU offset : 11
39 CU offset : 104
46 CU offset : 127
53 CU offset : 11
63 CU offset : 104
70 CU offset : 127
77 CU offset : 11
87 CU offset : 104
94 CU offset : 132
99 CU offset : 149
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DBaseDexBuffer.java45 public BaseDexBuffer(@Nonnull byte[] buf, int offset) { in BaseDexBuffer() argument
47 this.baseOffset = offset; in BaseDexBuffer()
50 public int readSmallUint(int offset) { in readSmallUint() argument
52 offset += baseOffset; in readSmallUint()
53 int result = (buf[offset] & 0xff) | in readSmallUint()
54 ((buf[offset+1] & 0xff) << 8) | in readSmallUint()
55 ((buf[offset+2] & 0xff) << 16) | in readSmallUint()
56 ((buf[offset+3]) << 24); in readSmallUint()
58 …row new ExceptionWithContext("Encountered small uint that is out of range at offset 0x%x", offset); in readSmallUint()
63 public int readOptionalUint(int offset) { in readOptionalUint() argument
[all …]
DBaseDexReader.java41 private int offset; field in BaseDexReader
43 public BaseDexReader(@Nonnull T dexBuf, int offset) { in BaseDexReader() argument
45 this.offset = offset; in BaseDexReader()
48 public int getOffset() { return offset; } in getOffset()
49 public void setOffset(int offset) { this.offset = offset; } in setOffset() argument
52 int end = dexBuf.baseOffset + offset; in readSleb128()
79 "Invalid sleb128 integer encountered at offset 0x%x", offset); in readSleb128()
87 offset = end - dexBuf.baseOffset; in readSleb128()
92 int end = dexBuf.baseOffset + offset; in peekSleb128Size()
108 "Invalid sleb128 integer encountered at offset 0x%x", offset); in peekSleb128Size()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DDataExtractorTest.cpp28 uint32_t offset = 0; in TEST() local
30 EXPECT_EQ(0x80U, DE.getU8(&offset)); in TEST()
31 EXPECT_EQ(1U, offset); in TEST()
32 offset = 0; in TEST()
33 EXPECT_EQ(0x8090U, DE.getU16(&offset)); in TEST()
34 EXPECT_EQ(2U, offset); in TEST()
35 offset = 0; in TEST()
36 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset)); in TEST()
37 EXPECT_EQ(4U, offset); in TEST()
38 offset = 0; in TEST()
[all …]
/external/llvm/unittests/Support/
DDataExtractorTest.cpp28 uint32_t offset = 0; in TEST() local
30 EXPECT_EQ(0x80U, DE.getU8(&offset)); in TEST()
31 EXPECT_EQ(1U, offset); in TEST()
32 offset = 0; in TEST()
33 EXPECT_EQ(0x8090U, DE.getU16(&offset)); in TEST()
34 EXPECT_EQ(2U, offset); in TEST()
35 offset = 0; in TEST()
36 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset)); in TEST()
37 EXPECT_EQ(4U, offset); in TEST()
38 offset = 0; in TEST()
[all …]
/external/swiftshader/third_party/LLVM/unittests/Support/
DDataExtractorTest.cpp27 uint32_t offset = 0; in TEST() local
29 EXPECT_EQ(0x80U, DE.getU8(&offset)); in TEST()
30 EXPECT_EQ(1U, offset); in TEST()
31 offset = 0; in TEST()
32 EXPECT_EQ(0x8090U, DE.getU16(&offset)); in TEST()
33 EXPECT_EQ(2U, offset); in TEST()
34 offset = 0; in TEST()
35 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset)); in TEST()
36 EXPECT_EQ(4U, offset); in TEST()
37 offset = 0; in TEST()
[all …]
/external/proguard/src/proguard/optimize/peephole/
DBranchTargetFinder.java96 public boolean isInstruction(int offset) in isInstruction() argument
98 return (instructionMarks[offset] & INSTRUCTION) != 0; in isInstruction()
106 public boolean isTarget(int offset) in isTarget() argument
108 return offset == 0 || in isTarget()
109 (instructionMarks[offset] & (BRANCH_TARGET | in isTarget()
120 public boolean isBranchOrigin(int offset) in isBranchOrigin() argument
122 return (instructionMarks[offset] & BRANCH_ORIGIN) != 0; in isBranchOrigin()
130 public boolean isBranchTarget(int offset) in isBranchTarget() argument
132 return (instructionMarks[offset] & BRANCH_TARGET) != 0; in isBranchTarget()
141 public boolean isAfterBranch(int offset) in isAfterBranch() argument
[all …]
/external/proguard/src/proguard/classfile/instruction/
DInstruction.java892 public final void write(CodeAttribute codeAttribute, int offset) in write() argument
894 write(codeAttribute.code, offset); in write()
901 public void write(byte[] code, int offset) in write() argument
906 code[offset++] = InstructionConstants.OP_WIDE; in write()
910 code[offset++] = opcode; in write()
913 writeInfo(code, offset); in write()
930 protected abstract void readInfo(byte[] code, int offset); in readInfo() argument
936 protected abstract void writeInfo(byte[] code, int offset); in writeInfo() argument
942 public abstract int length(int offset); in length() argument
948 …public abstract void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, I… in accept() argument
[all …]
/external/v8/src/objects/
Dobject-macros.h56 #define INT_ACCESSORS(holder, name, offset) \ argument
57 int holder::name() const { return READ_INT_FIELD(this, offset); } \
58 void holder::set_##name(int value) { WRITE_INT_FIELD(this, offset, value); }
60 #define INT32_ACCESSORS(holder, name, offset) \ argument
61 int32_t holder::name() const { return READ_INT32_FIELD(this, offset); } \
63 WRITE_INT32_FIELD(this, offset, value); \
66 #define UINT16_ACCESSORS(holder, name, offset) \ argument
67 uint16_t holder::name() const { return READ_UINT16_FIELD(this, offset); } \
71 WRITE_UINT16_FIELD(this, offset, value); \
74 #define UINT8_ACCESSORS(holder, name, offset) \ argument
[all …]
/external/libnetfilter_conntrack/src/expect/
Dsnprintf_xml.c57 unsigned int size = 0, offset = 0; in snprintf_expect_meta_xml() local
60 BUFFER_SIZE(ret, size, len, offset); in snprintf_expect_meta_xml()
63 ret = snprintf(buf+offset, len, in snprintf_expect_meta_xml()
66 BUFFER_SIZE(ret, size, len, offset); in snprintf_expect_meta_xml()
69 ret = snprintf(buf+offset, len, "<timeout>%u</timeout>", in snprintf_expect_meta_xml()
71 BUFFER_SIZE(ret, size, len, offset); in snprintf_expect_meta_xml()
74 ret = snprintf(buf+offset, len, "<class>%u</class>", in snprintf_expect_meta_xml()
76 BUFFER_SIZE(ret, size, len, offset); in snprintf_expect_meta_xml()
79 ret = snprintf(buf+offset, len, "<zone>%u</zone>", exp->zone); in snprintf_expect_meta_xml()
80 BUFFER_SIZE(ret, size, len, offset); in snprintf_expect_meta_xml()
[all …]
/external/flatbuffers/net/FlatBuffers/
DByteBuffer.cs326 protected void WriteLittleEndian(int offset, int count, ulong data) in WriteLittleEndian() argument
332 _buffer.Buffer[offset + i] = (byte)(data >> i * 8); in WriteLittleEndian()
339 _buffer.Buffer[offset + count - 1 - i] = (byte)(data >> i * 8); in WriteLittleEndian()
344 protected ulong ReadLittleEndian(int offset, int count) in ReadLittleEndian() argument
346 AssertOffsetAndLength(offset, count); in ReadLittleEndian()
352 r |= (ulong)_buffer.Buffer[offset + i] << i * 8; in ReadLittleEndian()
359 r |= (ulong)_buffer.Buffer[offset + count - 1 - i] << i * 8; in ReadLittleEndian()
366 private void AssertOffsetAndLength(int offset, int length) in AssertOffsetAndLength() argument
369 if (offset < 0 || in AssertOffsetAndLength()
370 offset > _buffer.Length - length) in AssertOffsetAndLength()
[all …]
/external/flatbuffers/tests/
Dmonster_test_generated.ts86 var offset = builder.endObject();
87 return offset;
136 var offset = builder.endObject();
137 return offset;
177 var offset = this.bb!.__offset(this.bb_pos, 0);
179 if (offset === 0) {
183 this.bb!.writeInt16(this.bb_pos + offset, value);
199 var offset = this.bb!.__offset(this.bb_pos, 2);
201 if (offset === 0) {
205 this.bb!.writeInt8(this.bb_pos + offset, value);
[all …]
Dmonster_test_generated.js113 var offset = builder.endObject();
114 return offset;
173 var offset = builder.endObject();
174 return offset;
224 var offset = this.bb.__offset(this.bb_pos, 0);
226 if (offset === 0) {
230 this.bb.writeInt16(this.bb_pos + offset, value);
246 var offset = this.bb.__offset(this.bb_pos, 2);
248 if (offset === 0) {
252 this.bb.writeInt8(this.bb_pos + offset, value);
[all …]
/external/u-boot/scripts/dtc/libfdt/
Dfdt_ro.c58 static int fdt_nodename_eq_(const void *fdt, int offset, in fdt_nodename_eq_() argument
62 const char *p = fdt_get_name(fdt, offset, &olen); in fdt_nodename_eq_()
95 int offset; in fdt_get_max_phandle() local
97 for (offset = fdt_next_node(fdt, -1, NULL);; in fdt_get_max_phandle()
98 offset = fdt_next_node(fdt, offset, NULL)) { in fdt_get_max_phandle()
101 if (offset == -FDT_ERR_NOTFOUND) in fdt_get_max_phandle()
104 if (offset < 0) in fdt_get_max_phandle()
107 phandle = fdt_get_phandle(fdt, offset); in fdt_get_max_phandle()
135 static int nextprop_(const void *fdt, int offset) in nextprop_() argument
141 tag = fdt_next_tag(fdt, offset, &nextoffset); in nextprop_()
[all …]
Dfdt.c77 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len) in fdt_offset_ptr() argument
79 unsigned absoffset = offset + fdt_off_dt_struct(fdt); in fdt_offset_ptr()
81 if ((absoffset < offset) in fdt_offset_ptr()
87 if (((offset + len) < offset) in fdt_offset_ptr()
88 || ((offset + len) > fdt_size_dt_struct(fdt))) in fdt_offset_ptr()
91 return fdt_offset_ptr_(fdt, offset); in fdt_offset_ptr()
98 int offset = startoffset; in fdt_next_tag() local
102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE); in fdt_next_tag()
106 offset += FDT_TAGSIZE; in fdt_next_tag()
113 p = fdt_offset_ptr(fdt, offset++, 1); in fdt_next_tag()
[all …]
/external/u-boot/lib/libfdt/
Dfdt_ro.c17 static int _fdt_nodename_eq(const void *fdt, int offset, in _fdt_nodename_eq() argument
20 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1); in _fdt_nodename_eq()
53 int offset; in fdt_get_max_phandle() local
55 for (offset = fdt_next_node(fdt, -1, NULL);; in fdt_get_max_phandle()
56 offset = fdt_next_node(fdt, offset, NULL)) { in fdt_get_max_phandle()
59 if (offset == -FDT_ERR_NOTFOUND) in fdt_get_max_phandle()
62 if (offset < 0) in fdt_get_max_phandle()
65 phandle = fdt_get_phandle(fdt, offset); in fdt_get_max_phandle()
93 static int _nextprop(const void *fdt, int offset) in _nextprop() argument
99 tag = fdt_next_tag(fdt, offset, &nextoffset); in _nextprop()
[all …]
/external/dtc/libfdt/
Dfdt_ro.c58 static int _fdt_nodename_eq(const void *fdt, int offset, in _fdt_nodename_eq() argument
61 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1); in _fdt_nodename_eq()
94 int offset; in fdt_get_max_phandle() local
96 for (offset = fdt_next_node(fdt, -1, NULL);; in fdt_get_max_phandle()
97 offset = fdt_next_node(fdt, offset, NULL)) { in fdt_get_max_phandle()
100 if (offset == -FDT_ERR_NOTFOUND) in fdt_get_max_phandle()
103 if (offset < 0) in fdt_get_max_phandle()
106 phandle = fdt_get_phandle(fdt, offset); in fdt_get_max_phandle()
134 static int _nextprop(const void *fdt, int offset) in _nextprop() argument
140 tag = fdt_next_tag(fdt, offset, &nextoffset); in _nextprop()
[all …]
Dfdt.c77 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len) in fdt_offset_ptr() argument
79 unsigned absoffset = offset + fdt_off_dt_struct(fdt); in fdt_offset_ptr()
81 if ((absoffset < offset) in fdt_offset_ptr()
87 if (((offset + len) < offset) in fdt_offset_ptr()
88 || ((offset + len) > fdt_size_dt_struct(fdt))) in fdt_offset_ptr()
91 return _fdt_offset_ptr(fdt, offset); in fdt_offset_ptr()
98 int offset = startoffset; in fdt_next_tag() local
102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE); in fdt_next_tag()
106 offset += FDT_TAGSIZE; in fdt_next_tag()
113 p = fdt_offset_ptr(fdt, offset++, 1); in fdt_next_tag()
[all …]
/external/libnetfilter_conntrack/src/conntrack/
Dsnprintf_xml.c100 unsigned int size = 0, offset = 0; in __snprintf_addr_xml() local
104 BUFFER_SIZE(ret, size, len, offset); in __snprintf_addr_xml()
108 ret = __snprintf_ipv4_xml(buf+offset, len, tuple, type); in __snprintf_addr_xml()
109 BUFFER_SIZE(ret, size, len, offset); in __snprintf_addr_xml()
112 ret = __snprintf_ipv6_xml(buf+offset, len, tuple, type); in __snprintf_addr_xml()
113 BUFFER_SIZE(ret, size, len, offset); in __snprintf_addr_xml()
117 ret = snprintf(buf+offset, len, "</%s>", tag); in __snprintf_addr_xml()
118 BUFFER_SIZE(ret, size, len, offset); in __snprintf_addr_xml()
128 unsigned int size = 0, offset = 0; in __snprintf_proto_xml() local
139 BUFFER_SIZE(ret, size, len, offset); in __snprintf_proto_xml()
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dreflection.vert.out3 image_ui2D: offset -1, type 9063, size 1, index -1, binding -1, stages 1
4 sampler_2D: offset -1, type 8b5e, size 1, index -1, binding -1, stages 1
5 sampler_2DMSArray: offset -1, type 910b, size 1, index -1, binding -1, stages 1
6 anonMember3: offset 80, type 8b52, size 1, index 0, binding -1, stages 1
7 s.a: offset -1, type 1404, size 1, index -1, binding -1, stages 1
8 named.scalar: offset 12, type 1404, size 1, index 1, binding -1, stages 1
9 m23: offset 16, type 8b67, size 1, index 0, binding -1, stages 1
10 scalarAfterm23: offset 48, type 1404, size 1, index 0, binding -1, stages 1
11 c_m23: offset 16, type 8b67, size 1, index 2, binding -1, stages 1
12 c_scalarAfterm23: offset 64, type 1404, size 1, index 2, binding -1, stages 1
[all …]
/external/libchrome/mojo/public/js/lib/
Dbuffer.js58 Buffer.prototype.getUint8 = function(offset) { argument
59 return this.dataView.getUint8(offset);
61 Buffer.prototype.getUint16 = function(offset) { argument
62 return this.dataView.getUint16(offset, kHostIsLittleEndian);
64 Buffer.prototype.getUint32 = function(offset) { argument
65 return this.dataView.getUint32(offset, kHostIsLittleEndian);
67 Buffer.prototype.getUint64 = function(offset) { argument
70 lo = this.dataView.getUint32(offset, kHostIsLittleEndian);
71 hi = this.dataView.getUint32(offset + 4, kHostIsLittleEndian);
73 hi = this.dataView.getUint32(offset, kHostIsLittleEndian);
[all …]
/external/tensorflow/tensorflow/core/lib/wav/
Dwav_io_test.cc31 Status ExpectText(const string& data, const string& expected_text, int* offset);
33 int* offset);
245 int offset = 0; in TEST() local
246 TF_EXPECT_OK(ExpectText(test_string, "Expected", &offset)); in TEST()
247 EXPECT_EQ(8, offset); in TEST()
249 offset = 0; in TEST()
250 Status expect_status = ExpectText(test_string, "Unexpected", &offset); in TEST()
253 offset = 0; in TEST()
254 TF_EXPECT_OK(ExpectText(test_string, "Exp", &offset)); in TEST()
255 EXPECT_EQ(3, offset); in TEST()
[all …]
/external/u-boot/drivers/gpio/
Dsandbox.c25 static u8 *get_gpio_flags(struct udevice *dev, unsigned offset) in get_gpio_flags() argument
30 if (offset >= uc_priv->gpio_count) { in get_gpio_flags()
32 printf("sandbox_gpio: error: invalid gpio %u\n", offset); in get_gpio_flags()
36 return &state[offset].flags; in get_gpio_flags()
39 static int get_gpio_flag(struct udevice *dev, unsigned offset, int flag) in get_gpio_flag() argument
41 return (*get_gpio_flags(dev, offset) & flag) != 0; in get_gpio_flag()
44 static int set_gpio_flag(struct udevice *dev, unsigned offset, int flag, in set_gpio_flag() argument
47 u8 *gpio = get_gpio_flags(dev, offset); in set_gpio_flag()
61 int sandbox_gpio_get_value(struct udevice *dev, unsigned offset) in sandbox_gpio_get_value() argument
63 if (get_gpio_flag(dev, offset, GPIOF_OUTPUT)) in sandbox_gpio_get_value()
[all …]
/external/proguard/src/proguard/optimize/evaluation/
DEvaluationShrinker.java200 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute0()
202 if (partialEvaluator.isTraced(offset)) in visitCodeAttribute0()
205 offset); in visitCodeAttribute0()
207 instruction.accept(clazz, method, codeAttribute, offset, unusedParameterSimplifier); in visitCodeAttribute0()
227 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute0()
229 if (partialEvaluator.isTraced(offset)) in visitCodeAttribute0()
232 offset); in visitCodeAttribute0()
239 markInstruction(offset); in visitCodeAttribute0()
246 offset, in visitCodeAttribute0()
249 markInstruction(offset); in visitCodeAttribute0()
[all …]

12345678910>>...336