Searched refs:offset (Results 101 - 125 of 5445) sorted by relevance

1234567891011>>

/external/syslinux/gpxe/src/util/Option/
H A DROM.pm74 ( $self->{offset} + $self->{fields}->{$key}->{offset} ),
93 ( $self->{offset} + $self->{fields}->{$key}->{offset} ),
117 ( ( $self->{fields}->{$key}->{offset} +
152 my $raw = substr ( ${$self->{data}}, $self->{offset}, $self->{length} );
197 my $offset = unpack ( "xC", $instr );
198 return ( $offset + 5 );
200 my $offset = unpack ( "xS", $instr );
201 return ( $offset
[all...]
/external/flatbuffers/tests/namespace_test/
H A Dnamespace_test2_generated.js61 var offset = this.bb.__offset(this.bb_pos, 4);
62 return offset ? (obj || new NamespaceA.NamespaceB.TableInNestedNS).__init(this.bb.__indirect(this.bb_pos + offset), this.bb) : null;
69 var offset = this.bb.__offset(this.bb_pos, 6);
70 return offset ? /** @type {NamespaceA.NamespaceB.EnumInNestedNS} */ (this.bb.readInt8(this.bb_pos + offset)) : NamespaceA.NamespaceB.EnumInNestedNS.A;
78 var offset = this.bb.__offset(this.bb_pos, 6);
80 if (offset === 0) {
84 this.bb.writeInt8(this.bb_pos + offset, value);
93 var offset
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_offset.c29 * \brief polygon offset state
68 struct offset_stage *offset = offset_stage(stage); local
92 float zoffset = offset->units + MAX2(dzdx, dzdy) * offset->scale;
94 if (offset->clamp)
95 zoffset = (offset->clamp < 0.0f) ? MAX2(zoffset, offset->clamp) :
96 MIN2(zoffset, offset->clamp);
99 * Note: we're applying the offset and clamping per-vertex.
100 * Ideally, the offset i
129 struct offset_stage *offset = offset_stage(stage); local
168 struct offset_stage *offset = CALLOC_STRUCT(offset_stage); local
[all...]
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DVerificationTypeVisitor.java36 public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType); argument
37 public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType); argument
38 public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LongType longType); argument
39 public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType); argument
40 public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TopType topType); argument
41 public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType); argument
42 public void visitNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, NullType nullType); argument
43 public void visitUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, UninitializedType uninitializedType); argument
44 public void visitUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, UninitializedThisType uninitializedThisType); argument
46 public void visitStackIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, in argument
47 visitStackFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, FloatType floatType) argument
48 visitStackLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, LongType longType) argument
49 visitStackDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, DoubleType doubleType) argument
50 visitStackTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, TopType topType) argument
51 visitStackObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) argument
52 visitStackNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType nullType) argument
53 visitStackUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, UninitializedType uninitializedType) argument
54 visitStackUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, UninitializedThisType uninitializedThisType) argument
56 visitVariablesIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, IntegerType integerType) argument
57 visitVariablesFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, FloatType floatType) argument
58 visitVariablesLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, LongType longType) argument
59 visitVariablesDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, DoubleType doubleType) argument
60 visitVariablesTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, TopType topType) argument
61 visitVariablesObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) argument
62 visitVariablesNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType nullType) argument
63 visitVariablesUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, UninitializedType uninitializedType) argument
64 visitVariablesUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, UninitializedThisType uninitializedThisType) argument
[all...]
/external/proguard/src/proguard/optimize/evaluation/
H A DLivenessAnalyzer.java82 * Returns whether the instruction at the given offset has ever been
93 * at the given offset.
104 * at the given offset.
124 * at the given offset.
135 * at the given offset.
155 * instruction at the given offset.
166 * instruction at the given offset.
223 for (int offset = codeLength - 1; offset >= 0; offset
345 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
348 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
373 visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
[all...]
/external/elfutils/tests/
H A Drun-readelf-aranges.sh116 DWARF section [27] '.debug_aranges' at offset 0x1044:
118 Table at offset 0:
122 CU offset: 0
128 Table at offset 32:
132 CU offset: 136
139 Table at offset 72:
143 CU offset: 1d1
153 DWARF section [27] '.debug_aranges' at offset 0x1044 contains 5 entries:
154 [0] start: 0x080482f0, length: 52, CU DIE offset: 11
155 [1] start: 0x08048330, length: 11, CU DIE offset
[all...]
H A Ddwfl-bug-getmodules.c55 ptrdiff_t offset = dwfl_getmodules (dwfl, &iterate, dwfl, 0); local
56 if (offset <= 0)
59 offset = dwfl_getmodules (dwfl, &iterate, NULL, offset);
60 if (offset != 0)
61 error (1, 0, "dwfl_getmodules (%d): %s", (int) offset, dwfl_errmsg (-1));
/external/ltp/lib/
H A Ddatabin.c44 void databingen(int mode, char *buffer, int bsize, int offset) argument
60 buffer[ind] = ((offset + ind) % 8 & 0177);
80 * >= 0 : error at byte offset into the file, offset+buffer[0-(bsize-1)]
83 int databinchk(int mode, char *buffer, int bsize, int offset, char **errmsg) argument
107 expbits = ((offset + cnt) % 8 & 0177);
111 "data mismatch at offset %d, exp:%#lo, act:%#o",
112 offset + cnt, expbits, buffer[cnt]);
113 return offset + cnt;
136 "data mismatch at offset
151 int offset; local
[all...]
/external/xmlrpcpp/test/
H A DTestValues.cpp19 int offset = 0; local
20 XmlRpcValue booleanFalseXml("<value><boolean>0</boolean></value>", &offset);
21 offset = 0;
22 XmlRpcValue booleanTrueXml("<value><boolean>1</boolean></value>", &offset);
41 int offset = 0; local
42 XmlRpcValue int0Xml("<value><int>0</int></value>", &offset);
43 offset = 0;
44 XmlRpcValue int9Xml("<value><i4>9</i4></value>", &offset);
55 int offset = 0; local
56 XmlRpcValue dXml("<value><double>56.3</double></value>", &offset);
66 int offset = 0; local
93 int offset = 0; local
122 int offset = 0; local
160 int offset = 0; local
[all...]
H A DTestValuesWin32.cpp21 int offset = 0; local
22 XmlRpcValue booleanFalseXml("<value><boolean>0</boolean></value>", &offset);
23 offset = 0;
24 XmlRpcValue booleanTrueXml("<value><boolean>1</boolean></value>", &offset);
44 int offset = 0; local
45 XmlRpcValue int0Xml("<value><int>0</int></value>", &offset);
46 offset = 0;
47 XmlRpcValue int9Xml("<value><i4>9</i4></value>", &offset);
58 int offset = 0; local
59 XmlRpcValue dXml("<value><double>56.3</double></value>", &offset);
69 int offset = 0; local
96 int offset = 0; local
125 int offset = 0; local
163 int offset = 0; local
[all...]
/external/dtc/tests/
H A Dstringlist.c34 int offset, err; local
36 offset = fdt_path_offset(fdt, "/");
37 if (offset < 0)
40 err = fdt_stringlist_count(fdt, offset, "#address-cells");
44 err = fdt_stringlist_search(fdt, offset, "#address-cells", "foo");
58 err = fdt_stringlist_search(fdt, offset, "#address-cells", "");
73 int offset, err; local
75 offset = fdt_path_offset(fdt, path);
76 if (offset < 0)
79 err = fdt_stringlist_count(fdt, offset, propert
93 int offset, err; local
111 int offset, len; local
[all...]
H A Dset_name.c32 int offset; local
41 offset = fdt_path_offset(fdt, path);
42 if (offset < 0)
45 getname = fdt_get_name(fdt, offset, &len);
47 offset, getname, len);
49 FAIL("fdt_get_name(%d): %s", offset, fdt_strerror(len));
59 err = fdt_set_name(fdt, offset, newname);
61 FAIL("fdt_set_name(%d, \"%s\"): %s", offset, newname,
64 getname = fdt_get_name(fdt, offset, &len);
66 FAIL("fdt_get_name(%d): %s", offset, fdt_strerro
[all...]
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DTypedRange.java18 * A range, annotated with metadata, that is represented as an offset and a length. Comparison is
19 * performed based on the natural ordering of the offset field.
24 * The offset at which the range starts.
26 private final long offset; field in class:TypedRange
40 * @param offset the offset at which the range starts
44 public TypedRange(long offset, long length, T metadata) { argument
45 this.offset = offset;
52 return "offset "
[all...]
/external/syslinux/gpxe/src/util/
H A Dmergerom.pl29 my $offset = shift;
33 $$baserom_entry = ( $offset + $$rom_entry );
42 my $offset = $baserom->length;
50 merge_entry_points ( $baserom->{init}, $rom->{init}, $offset );
53 merge_entry_points ( $baserom->{bofm_header}, $rom->{bofm_header}, $offset );
74 $offset );
82 merge_entry_points ( $baserom_pnp->{bcv}, $rom_pnp->{bcv}, $offset );
83 merge_entry_points ( $baserom_pnp->{bdv}, $rom_pnp->{bdv}, $offset );
84 merge_entry_points ( $baserom_pnp->{bev}, $rom_pnp->{bev}, $offset );
90 $offset
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc31 void FontData::Bound(int32_t offset, int32_t length) { argument
33 CHECK(offset >= 0);
37 CHECK(bound_offset_ <= std::numeric_limits<int32_t>::max() - offset);
38 const int32_t new_offset = bound_offset_ + offset;
64 FontData::FontData(FontData* data, int32_t offset, int32_t length) { argument
66 Bound(data->bound_offset_ + offset, length);
69 FontData::FontData(FontData* data, int32_t offset) { argument
71 Bound(data->bound_offset_ + offset,
73 ? GROWABLE_SIZE : data->bound_length_ - offset);
84 int32_t FontData::BoundOffset(int32_t offset) { argument
88 BoundLength(int32_t offset, int32_t length) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DBOCSU.java256 * @param offset to the byte buffer to start appending
257 * @return end offset where the appending stops
259 private static final int writeDiff(int diff, byte buffer[], int offset) argument
263 buffer[offset ++] = (byte)(SLOPE_MIDDLE_ + diff);
266 buffer[offset ++] = (byte)(SLOPE_START_POS_2_
268 buffer[offset ++] = (byte)(SLOPE_MIN_ +
272 buffer[offset + 2] = (byte)(SLOPE_MIN_
275 buffer[offset + 1] = (byte)(SLOPE_MIN_
277 buffer[offset] = (byte)(SLOPE_START_POS_3_
279 offset
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DBOCSU.java255 * @param offset to the byte buffer to start appending
256 * @return end offset where the appending stops
258 private static final int writeDiff(int diff, byte buffer[], int offset) argument
262 buffer[offset ++] = (byte)(SLOPE_MIDDLE_ + diff);
265 buffer[offset ++] = (byte)(SLOPE_START_POS_2_
267 buffer[offset ++] = (byte)(SLOPE_MIN_ +
271 buffer[offset + 2] = (byte)(SLOPE_MIN_
274 buffer[offset + 1] = (byte)(SLOPE_MIN_
276 buffer[offset] = (byte)(SLOPE_START_POS_3_
278 offset
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DReachableCodeMarker.java51 * Returns whether the instruction at the given offset is reachable in
54 public boolean isReachable(int offset) argument
56 return isReachable[offset];
67 for (int offset = startOffset; offset < endOffset; offset++)
69 if (isReachable[offset])
115 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
131 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
136 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstructio argument
145 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
162 visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
202 markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets) argument
214 markBranchTarget(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset) argument
227 markCode(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSuballocatedIntVector.java162 int offset=m_firstFree&m_MASK;
174 block[offset]=value;
179 m_buildCacheStartIndex = m_firstFree-offset;
200 int offset=m_firstFree&m_MASK;
214 int copied=(m_blocksize-offset < numberOfElements)
215 ? m_blocksize-offset : numberOfElements;
218 block[offset++]=value;
220 ++index;offset=0;
272 int offset=at&m_MASK;
273 block[offset]
[all...]
/external/mesa3d/src/glx/
H A Dpackrender.h157 #define __GLX_PUT_CHAR(offset,a) \
158 *((INT8 *) (pc + offset)) = a
161 #define __GLX_PUT_SHORT(offset,a) \
162 *((INT16 *) (pc + offset)) = a
164 #define __GLX_PUT_LONG(offset,a) \
165 *((INT32 *) (pc + offset)) = a
167 #define __GLX_PUT_FLOAT(offset,a) \
168 *((FLOAT32 *) (pc + offset)) = a
171 #define __GLX_PUT_SHORT(offset,a) \
172 { GLubyte *cp = (pc+offset); \
[all...]
/external/v8/src/ic/ia32/
H A Dstub-cache-ia32.cc19 // The offset is scaled by 4, based on
21 Register offset, Register extra) {
33 __ lea(offset, Operand(offset, offset, times_2, 0));
37 __ mov(extra, Operand::StaticArray(offset, times_1, value_offset));
40 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset));
44 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset));
45 __ cmp(offset, FieldOperan
17 ProbeTable(StubCache* stub_cache, MacroAssembler* masm, StubCache::Table table, Register name, Register receiver, Register offset, Register extra) argument
139 Register offset = scratch; local
[all...]
/external/v8/src/ic/x87/
H A Dstub-cache-x87.cc19 // The offset is scaled by 4, based on
21 Register offset, Register extra) {
33 __ lea(offset, Operand(offset, offset, times_2, 0));
37 __ mov(extra, Operand::StaticArray(offset, times_1, value_offset));
40 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset));
44 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset));
45 __ cmp(offset, FieldOperan
17 ProbeTable(StubCache* stub_cache, MacroAssembler* masm, StubCache::Table table, Register name, Register receiver, Register offset, Register extra) argument
139 Register offset = scratch; local
[all...]
/external/c-ares/
H A Dares_timeout.c41 long offset, min_offset; local
58 offset = ares__timeoffset(&now, &query->timeout);
59 if (offset < 0)
60 offset = 0;
61 if (min_offset == -1 || offset < min_offset)
62 min_offset = offset;
/external/dtc/libfdt/
H A Dlibfdt_internal.h65 int _fdt_check_node_offset(const void *fdt, int offset);
66 int _fdt_check_prop_offset(const void *fdt, int offset);
70 static inline const void *_fdt_offset_ptr(const void *fdt, int offset) argument
72 return (const char *)fdt + fdt_off_dt_struct(fdt) + offset;
75 static inline void *_fdt_offset_ptr_w(void *fdt, int offset) argument
77 return (void *)(uintptr_t)_fdt_offset_ptr(fdt, offset);
/external/llvm/test/MC/Mips/eva/
H A Dinvalid-noeva-wrong-error.s22 cachee 31, 255($7) # CHECK: :[[@LINE]]:23: error: expected memory with 9-bit signed offset
23 cachee 0, -256($4) # CHECK: :[[@LINE]]:22: error: expected memory with 9-bit signed offset
24 cachee 5, -140($4) # CHECK: :[[@LINE]]:22: error: expected memory with 9-bit signed offset
25 lbe $10,-256($25) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
26 lbe $13,255($15) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
27 lbe $11,146($14) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
28 lbue $13,-256($v1) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
29 lbue $13,255($v0) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
30 lbue $13,-190($v1) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
31 lhe $13,-256($s5) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: expected memory with 9-bit signed offset
[all...]

Completed in 2075 milliseconds

1234567891011>>