Searched defs:offset (Results 26 - 50 of 4056) sorted by relevance

1234567891011>>

/external/llvm/test/CodeGen/SystemZ/Large/
H A Dbranch-range-11.py112 offset = 4096 + b % 500000 variable
114 print ' %%ptr%d = getelementptr i8 *%%base, i64 %d' % (i, offset)
H A Dbranch-range-12.py112 offset = 4096 + b % 500000 variable
114 print ' %%ptr%d = getelementptr i8 *%%base, i64 %d' % (i, offset)
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_mm.h13 uint32_t offset; member in struct:nouveau_mm_allocation
25 struct nouveau_bo **, uint32_t *offset);
/external/mesa3d/src/mapi/shared-glapi/tests/
H A Dcheck_table.cpp34 int offset; member in struct:name_offset
46 EXPECT_EQ(linux_gl_abi[i].offset,
/external/strace/tests/
H A Duio.c9 const off_t offset = 0xdefaceddeadbeefLL; local
15 assert(pread(fd, buf, sizeof buf, offset) == 4);
16 assert(preadv(fd, &iov, 1, offset) == 4);
20 assert(pwrite(fd, buf, sizeof buf, offset) == 4);
21 assert(pwritev(fd, &iov, 1, offset) == 4);
/external/valgrind/main/coregrind/m_gdbserver/
H A Dregdef.h35 /* The offset (in bits) of the value of this register in the buffer. */
36 int offset; member in struct:reg
/external/chromium_org/android_webview/native/
H A Daw_media_url_interceptor.cc16 int* fd, int64* offset, int64* size) const{
25 return AwAssets::OpenAsset(filename, fd, offset, size);
15 Intercept(const std::string& url, int* fd, int64* offset, int64* size) const argument
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGStopElement.h37 SVGAnimatedNumber* offset() { return m_offset.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
70 * this is the offset from the start of the text. If the parser
74 int32_t offset; member in struct:UParseError
/external/chromium_org/third_party/icu/source/i18n/
H A Dregextxt.cpp18 uregex_utext_unescape_charAt(int32_t offset, void *ct) { argument
21 if (offset == context->lastOffset + 1) {
24 } else if (offset == context->lastOffset) {
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
30 context->lastOffset = offset;
42 uregex_ucstr_unescape_charAt(int32_t offset, void *context) { argument
43 return ((UChar *)context)[offset];
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Daes_icm.h54 v128_t offset; /* initial offset value */ member in struct:__anon12808
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_debug_private.h36 unsigned offset; /* current gtt offset */ member in struct:debug_stream
37 char *ptr; /* pointer to gtt offset zero */
38 char *end; /* pointer to gtt offset zero */
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_debug.h38 unsigned offset; /* current gtt offset */ member in struct:debug_stream
39 char *ptr; /* pointer to gtt offset zero */
40 char *end; /* pointer to gtt offset zero */
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dvarray.h50 GLsizeiptrARB offset = (GLsizeiptrARB) array->Ptr; local
53 if (offset < bufSize) {
54 array->_MaxElement = (bufSize - offset + array->StrideB
/external/chromium_org/third_party/skia/src/animator/
H A DSkTextOnPath.h24 SkScalar offset; member in class:SkTextOnPath
/external/chromium_org/ui/gfx/
H A Dutf16_indexing_unittest.cc20 ptrdiff_t offset = static_cast<ptrdiff_t>(j - i); local
22 --offset;
23 EXPECT_EQ(offset, UTF16IndexToOffset(s, i, j));
24 EXPECT_EQ(-offset, UTF16IndexToOffset(s, j, i));
26 EXPECT_EQ(adjusted_j, UTF16OffsetToIndex(s, i, offset));
28 EXPECT_EQ(adjusted_i, UTF16OffsetToIndex(s, j, -offset));
/external/chromium_org/v8/test/mjsunit/
H A Dsubstr.js142 var offset = 0; variable
147 offset += i;
152 assertEquals(xl - offset, z.length);
153 offset -= i;
/external/eigen/bench/btl/data/
H A Dgnuplot_common_settings.hh64 set timestamp "" bottom norotate offset 0,0
69 set xlabel "matrix size" offset 0,0 variable
70 set x2label "" offset 0,0 variable
74 set ylabel "MFLOPS" offset 0,0 variable
75 set y2label "" offset 0,0 variable
78 set zlabel "" offset 0,0 variable
/external/elfutils/0.153/libdw/
H A Ddwarf_formref_die.c69 Dwarf_Off offset; local
72 /* This has an absolute offset. */
79 ref_size, &offset, IDX_debug_info, 0))
82 return INTUSE(dwarf_offdie) (cu->dbg, offset, result);
88 /* This doesn't have an offset, but instead a value we
109 offset = cu->type_offset;
113 /* Other forms produce an offset from the CU. */
114 if (unlikely (__libdw_formref (attr, &offset) != 0))
120 if (unlikely (data->d_size - cu->start <= offset))
127 result->addr = (char *) data->d_buf + cu->start + offset;
[all...]
H A Ddwarf_getfuncs.c61 void *arg, ptrdiff_t offset)
71 if (offset == 0)
75 die = INTUSE(dwarf_offdie) (cudie->cu->dbg, offset, &die_mem);
60 dwarf_getfuncs(Dwarf_Die *cudie, int (*callback) (Dwarf_Die *, void *), void *arg, ptrdiff_t offset) argument
H A Ddwarf_haspc.c67 ptrdiff_t offset = 0; local
68 while ((offset = INTUSE(dwarf_ranges) (die, offset, &base,
73 return offset;
H A Ddwarf_offdie.c1 /* Return DIE at given offset.
61 __libdw_offdie (Dwarf *dbg, Dwarf_Off offset, Dwarf_Die *result, argument
69 if (offset >= data->d_size)
79 result->addr = (char *) data->d_buf + offset;
82 result->cu = __libdw_findcu (dbg, offset, debug_types);
95 dwarf_offdie (dbg, offset, result)
97 Dwarf_Off offset;
100 return __libdw_offdie (dbg, offset, result, false);
105 dwarf_offdie_types (dbg, offset, result)
107 Dwarf_Off offset; variable
[all...]
H A Ddwarf_siblingof.c98 Dwarf_Off offset; local
100 if (unlikely (__libdw_formref (&sibattr, &offset) != 0))
106 + sibattr.cu->start + offset);
/external/elfutils/0.153/libdwfl/
H A Ddwfl_validate_address.c1 /* Validate an address and the relocatability of an offset from it.
53 dwfl_validate_address (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Sword offset) argument
64 if (offset != 0)
67 relative = address + offset;
/external/elfutils/0.153/libelf/
H A Delf_readall.c65 set_address (Elf *elf, size_t offset) argument
76 child->start_offset -= offset;
78 child->state.ar.offset -= offset;
80 set_address (child, offset);
159 elf->state.ar.offset -= elf->start_offset;

Completed in 2936 milliseconds

1234567891011>>