HomeSort by relevance Sort by last modified time
    Searched refs:target_offset (Results 1 - 25 of 426) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/compiler/linker/x86_64/
relative_patcher_x86_64.cc 27 uint32_t target_offset) {
30 uint32_t displacement = target_offset - patch_offset;
relative_patcher_x86_64.h 32 uint32_t target_offset) OVERRIDE;
  /art/compiler/linker/x86/
relative_patcher_x86.h 32 uint32_t target_offset) OVERRIDE;
relative_patcher_x86_base.cc 40 uint32_t target_offset) {
43 uint32_t displacement = target_offset - patch_offset;
relative_patcher_x86_base.h 35 uint32_t target_offset) OVERRIDE;
relative_patcher_x86.cc 27 uint32_t target_offset) {
52 uint32_t diff = target_offset - anchor_offset;
  /art/compiler/linker/
multi_oat_relative_patcher.h 99 uint32_t target_offset) {
101 target_offset += adjustment_;
102 relative_patcher_->PatchCall(code, literal_offset, patch_offset, target_offset);
109 uint32_t target_offset) {
111 target_offset += adjustment_;
112 relative_patcher_->PatchPcRelativeReference(code, patch, patch_offset, target_offset);
relative_patcher.h 104 uint32_t target_offset) = 0;
110 uint32_t target_offset) = 0;
  /art/compiler/linker/mips/
relative_patcher_mips.h 39 uint32_t target_offset) OVERRIDE;
43 uint32_t target_offset) OVERRIDE;
relative_patcher_mips.cc 42 uint32_t target_offset ATTRIBUTE_UNUSED) {
49 uint32_t target_offset) {
77 uint32_t diff = target_offset - anchor_offset;
relative_patcher_mips32r6_test.cc 41 void CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches, uint32_t target_offset);
59 uint32_t target_offset) {
66 uint32_t diff = target_offset - (result.second + kAnchorOffset);
relative_patcher_mips_test.cc 41 void CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches, uint32_t target_offset);
61 uint32_t target_offset) {
68 uint32_t diff = target_offset - (result.second + kAnchorOffset);
  /art/compiler/linker/mips64/
relative_patcher_mips64.h 37 uint32_t target_offset) OVERRIDE;
41 uint32_t target_offset) OVERRIDE;
relative_patcher_mips64.cc 42 uint32_t target_offset ATTRIBUTE_UNUSED) {
49 uint32_t target_offset) {
67 uint32_t diff = target_offset - anchor_offset;
relative_patcher_mips64_test.cc 42 void CheckPcRelativePatch(const ArrayRef<const LinkerPatch>& patches, uint32_t target_offset);
60 uint32_t target_offset) {
67 uint32_t diff = target_offset - (result.second + kAnchorOffset);
  /external/v8/src/arm64/
instructions-arm64.cc 240 ptrdiff_t target_offset = DistanceTo(target); local
242 if (Instruction::IsValidPCRelOffset(target_offset)) {
243 imm = Assembler::ImmPCRelAddress(static_cast<int>(target_offset));
248 patcher.PatchAdrFar(target_offset);
292 int32_t target_offset = local
294 uint32_t high16 = unsigned_bitextract_32(31, 16, target_offset);
295 uint32_t low16 = unsigned_bitextract_32(15, 0, target_offset);
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebtables.h 123 unsigned int target_offset; member in struct:ebt_entry
140 ({ unsigned int __i; int __ret = 0; struct ebt_entry_watcher * __watcher; for(__i = e->watchers_offset; __i < (e)->target_offset; __i += __watcher->watcher_size + sizeof(struct ebt_entry_watcher)) { __watcher = (void *) (e) + __i; __ret = fn(__watcher, ##args); if(__ret != 0) break; } if(__ret == 0) { if(__i != (e)->target_offset) __ret = - EINVAL; } __ret; \
  /bionic/libc/kernel/uapi/linux/netfilter_ipv6/
ip6_tables.h 80 __u16 target_offset; member in struct:ip6t_entry
95 {.target_offset = sizeof(struct ip6t_entry),.next_offset = (__size), \
144 return(void *) e + e->target_offset;
  /development/ndk/platforms/android-21/include/linux/netfilter_bridge/
ebtables.h 149 unsigned int target_offset; member in struct:ebt_entry
166 #define EBT_WATCHER_ITERATE(e, fn, args...) ({ unsigned int __i; int __ret = 0; struct ebt_entry_watcher *__watcher; for (__i = e->watchers_offset; __i < (e)->target_offset; __i += __watcher->watcher_size + sizeof(struct ebt_entry_watcher)) { __watcher = (void *)(e) + __i; __ret = fn(__watcher , ## args); if (__ret != 0) break; } if (__ret == 0) { if (__i != (e)->target_offset) __ret = -EINVAL; } __ret; })
  /development/ndk/platforms/android-21/include/linux/netfilter_ipv6/
ip6_tables.h 94 __u16 target_offset; member in struct:ip6t_entry
111 #define IP6T_ENTRY_INIT(__size) { .target_offset = sizeof(struct ip6t_entry), .next_offset = (__size), }
169 return (void *)e + e->target_offset;
  /development/ndk/platforms/android-9/include/linux/netfilter_ipv4/
ip_tables.h 67 u_int16_t target_offset; member in struct:ipt_entry
173 return (void *)e + e->target_offset;
176 #define IPT_MATCH_ITERATE(e, fn, args...) ({ unsigned int __i; int __ret = 0; struct ipt_entry_match *__match; for (__i = sizeof(struct ipt_entry); __i < (e)->target_offset; __i += __match->u.match_size) { __match = (void *)(e) + __i; __ret = fn(__match , ## args); if (__ret != 0) break; } __ret; })
  /external/iptables/include/linux/netfilter_ipv6/
ip6_tables.h 113 __u16 target_offset; member in struct:ip6t_entry
140 .target_offset = sizeof(struct ip6t_entry), \
261 return (void *)e + e->target_offset;
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebtables.h 177 unsigned int target_offset; member in struct:ebt_entry
229 __i < (e)->target_offset; \
239 if (__i != (e)->target_offset) \
  /external/kernel-headers/original/uapi/linux/netfilter_ipv6/
ip6_tables.h 116 __u16 target_offset; member in struct:ip6t_entry
143 .target_offset = sizeof(struct ip6t_entry), \
264 return (void *)e + e->target_offset;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebtables.h 184 unsigned int target_offset; member in struct:ebt_entry
236 __i < (e)->target_offset; \
246 if (__i != (e)->target_offset) \

Completed in 5575 milliseconds

1 2 3 4 5 6 7 8 91011>>