Searched defs:offset (Results 1 - 25 of 4384) sorted by relevance

1234567891011>>

/external/strace/
H A Dlseek.c41 * fs/read_write.c::SYSCALL_DEFINE3(lseek, unsigned, fd, off_t, offset, unsigned, origin)
50 kernel_long_t offset; local
54 offset = (int) tcp->u_arg[1];
58 offset = tcp->u_arg[1];
61 tprintf(", %" PRI_kld ", ", offset);
H A Daccess.c8 decode_access(struct tcb *tcp, int offset) argument
10 printpath(tcp, tcp->u_arg[offset]);
12 printflags(access_flags, tcp->u_arg[offset + 1], "?_OK");
H A Dchmod.c4 decode_chmod(struct tcb *tcp, const int offset) argument
6 printpath(tcp, tcp->u_arg[offset]);
8 print_numeric_umode_t(tcp->u_arg[offset + 1]);
H A Dreadlink.c38 decode_readlink(struct tcb *tcp, int offset) argument
41 printpath(tcp, tcp->u_arg[offset]);
45 printaddr(tcp->u_arg[offset + 1]);
54 printstrn(tcp, tcp->u_arg[offset + 1], tcp->u_rval);
55 tprintf(", %" PRI_klu, tcp->u_arg[offset + 2]);
H A Drtnl_dcb.c47 size_t offset = sizeof(dcb.dcb_family); local
54 if (!umoven_or_printaddr(tcp, addr + offset,
55 sizeof(dcb) - offset,
56 (char *) &dcb + offset)) {
65 offset = NLMSG_ALIGN(sizeof(dcb));
66 if (decode_nla && len > offset) {
68 decode_nlattr(tcp, addr + offset, len - offset,
H A Drtnl_netconf.c60 const size_t offset = NLMSG_ALIGN(sizeof(ncm)); local
61 if (len > offset) {
63 decode_nlattr(tcp, addr + offset, len - offset,
H A Drtnl_nsid.c53 const size_t offset = NLMSG_ALIGN(sizeof(rtgenmsg)); local
54 if (len > offset) {
56 decode_nlattr(tcp, addr + offset, len - offset,
H A Drtnl_tc_action.c56 const size_t offset = NLMSG_ALIGN(sizeof(tca)); local
57 if (len > offset) {
59 decode_nlattr(tcp, addr + offset, len - offset,
/external/clang/test/CodeGenCXX/
H A D2008-05-07-CrazyOffsetOf.cpp8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10; variable
/external/compiler-rt/test/asan/TestCases/
H A Ddebug_mapping.cc1 // Checks that the debugging API returns correct shadow scale and offset.
14 size_t scale, offset; local
15 __asan_get_shadow_mapping(&scale, &offset);
18 fprintf(stderr, "offset: 0x%lx\n", offset);
21 // CHECK: offset: [[OFFSET]]
/external/elfutils/libelf/
H A Delf_rand.c41 elf_rand (Elf *elf, size_t offset) argument
49 /* Save the old offset and set the offset. */
50 elf->state.ar.offset = elf->start_offset + offset;
62 return offset;
H A Dgelf_offscn.c41 gelf_offscn (Elf *elf, GElf_Off offset) argument
45 if ((Elf32_Off) offset != offset)
51 return INTUSE(elf32_offscn) (elf, (Elf32_Off) offset);
54 return INTUSE(elf64_offscn) (elf, offset);
/external/llvm/test/CodeGen/SystemZ/Large/
H A Dbranch-range-07.py55 offset = 4096 + b % 500000 variable
57 print ' %%ptr%d = getelementptr i8, i8 *%%base, i64 %d' % (i, offset)
H A Dbranch-range-08.py56 offset = 4096 + b % 500000 variable
58 print ' %%ptr%d = getelementptr i8, i8 *%%base, i64 %d' % (i, offset)
/external/parameter-framework/upstream/parameter/
H A DParameterBlackboard.h46 void writeInteger(const void *pvSrcData, size_t size, size_t offset);
47 void readInteger(void *pvDstData, size_t size, size_t offset) const;
49 void writeString(const std::string &input, size_t offset);
50 void readString(std::string &output, size_t offset) const;
52 void writeBuffer(const void *pvSrcData, size_t size, size_t offset);
53 void readBuffer(void *pvDstData, size_t size, size_t offset) const;
61 * @param[in] offset the destination offset in the blackboard.
64 * - This function asserts that the input vector's size + the offset
67 void writeBytes(const std::vector<uint8_t> &bytes, size_t offset);
98 atOffset(size_t offset) argument
[all...]
/external/strace/tests/
H A Dlseek.c39 const kernel_ulong_t offset = (kernel_ulong_t) 0xfacefeeddeadbeefULL; local
41 if (sizeof(offset) > sizeof(long)) {
46 long long rc = lseek(-1, offset, SEEK_SET);
48 (long long) offset, rc, errno2name());
50 long rc = syscall(__NR_lseek, -1L, offset, SEEK_SET);
52 (long) offset, rc, errno2name());
H A Duio.c41 const off_t offset = 0xdefaceddeadbeefLL; local
47 assert(pread(0, buf, sizeof(buf), offset) == 4);
48 assert(preadv(0, &iov, 1, offset) == 4);
52 assert(pwrite(0, buf, sizeof(buf), offset) == 4);
53 assert(pwritev(0, &iov, 1, offset) == 4);
/external/strace/tests-m32/
H A Dlseek.c39 const kernel_ulong_t offset = (kernel_ulong_t) 0xfacefeeddeadbeefULL; local
41 if (sizeof(offset) > sizeof(long)) {
46 long long rc = lseek(-1, offset, SEEK_SET);
48 (long long) offset, rc, errno2name());
50 long rc = syscall(__NR_lseek, -1L, offset, SEEK_SET);
52 (long) offset, rc, errno2name());
H A Duio.c41 const off_t offset = 0xdefaceddeadbeefLL; local
47 assert(pread(0, buf, sizeof(buf), offset) == 4);
48 assert(preadv(0, &iov, 1, offset) == 4);
52 assert(pwrite(0, buf, sizeof(buf), offset) == 4);
53 assert(pwritev(0, &iov, 1, offset) == 4);
/external/strace/tests-mx32/
H A Dlseek.c39 const kernel_ulong_t offset = (kernel_ulong_t) 0xfacefeeddeadbeefULL; local
41 if (sizeof(offset) > sizeof(long)) {
46 long long rc = lseek(-1, offset, SEEK_SET);
48 (long long) offset, rc, errno2name());
50 long rc = syscall(__NR_lseek, -1L, offset, SEEK_SET);
52 (long) offset, rc, errno2name());
H A Duio.c41 const off_t offset = 0xdefaceddeadbeefLL; local
47 assert(pread(0, buf, sizeof(buf), offset) == 4);
48 assert(preadv(0, &iov, 1, offset) == 4);
52 assert(pwrite(0, buf, sizeof(buf), offset) == 4);
53 assert(pwritev(0, &iov, 1, offset) == 4);
/external/swiftshader/third_party/subzero/src/DartARM32/
H A Dassembler_arm.cc35 uint32_t offset = encoding_ & kOffset12Mask;
36 ASSERT(offset < 256);
38 ((offset & 0xf0) << 4) | (offset & 0xf);
47 uint32_t offset = encoding_ & kOffset12Mask; local
48 ASSERT(offset < (1 << 10)); // In the range 0 to +1020.
49 ASSERT(Utils::IsAligned(offset, 4)); // Multiple of 4.
52 uint32_t vencoding = (encoding_ & (0xf << kRnShift)) | (offset >> 2);
98 void Assembler::EmitType5(Condition cond, int32_t offset, bool link) {
103 Emit(Assembler::EncodeBranchOffset(offset, encodin
[all...]
/external/ImageMagick/MagickCore/
H A Dmonitor.h33 static inline MagickBooleanType QuantumTick(const MagickOffsetType offset, argument
38 if (offset == (MagickOffsetType) (span-1))
40 if ((offset % (span/100)) == 0)
/external/elfutils/libdw/
H A Ddwarf_offabbrev.c1 /* Get abbreviation at given offset.
38 dwarf_offabbrev (Dwarf *dbg, Dwarf_Off offset, size_t *lengthp, argument
44 Dwarf_Abbrev *abbrev = __libdw_getabbrev (dbg, NULL, offset, lengthp,
/external/elfutils/libdwfl/
H A Ddwfl_getmodules.c36 ptrdiff_t offset)
42 But continuing from an offset is slow that way. So when
46 choose the style of place-holder when we return an offset,
51 if ((offset & 3) == 1)
53 offset >>= 2;
54 for (ptrdiff_t pos = 0; pos < offset; ++pos)
60 else if (((offset & 3) == 2) && likely (dwfl->lookup_module != NULL))
62 offset >>= 2;
64 if ((size_t) offset - 1 == dwfl->lookup_elts)
67 if (unlikely ((size_t) offset
32 dwfl_getmodules(Dwfl *dwfl, int (*callback) (Dwfl_Module *, void **, const char *, Dwarf_Addr, void *), void *arg, ptrdiff_t offset) argument
[all...]

Completed in 466 milliseconds

1234567891011>>