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

1 2 3 4 5 6

  /external/syslinux/com32/include/
stddef.h 24 #undef container_of macro
26 * The container_of construct: if p is a pointer to member m of
30 #define container_of(p, c, m) ((c *)((char *)(p) - offsetof(c,m))) macro
  /external/syslinux/gpxe/src/include/
stddef.h 15 #undef container_of macro
16 #define container_of(ptr, type, member) ({ \ macro
  /external/libdrm/
util_double_list.h 110 #ifndef container_of
111 #define container_of(ptr, sample, member) \ macro
117 for (pos = container_of((head)->next, pos, member); \
119 pos = container_of(pos->member.next, pos, member))
122 for (pos = container_of((head)->next, pos, member), \
123 storage = container_of(pos->member.next, pos, member); \
125 pos = storage, storage = container_of(storage->member.next, storage, member))
128 for (pos = container_of((head)->prev, pos, member), \
129 storage = container_of(pos->member.prev, pos, member); \
131 pos = storage, storage = container_of(storage->member.prev, storage, member)
    [all...]
  /external/iptables/libiptc/
linux_stddef.h 16 * container_of - cast a member of a structure out to the containing structure
23 #define container_of(ptr, type, member) ({ \ macro
  /external/mesa3d/src/util/
list.h 173 #ifndef container_of
174 #define container_of(ptr, sample, member) \ macro
187 for (pos = NULL, pos = container_of((head)->next, pos, member); \
189 pos = container_of(pos->member.next, pos, member))
192 for (pos = NULL, pos = container_of((head)->next, pos, member), \
193 storage = container_of(pos->member.next, pos, member); \
195 pos = storage, storage = container_of(storage->member.next, storage, member))
198 for (pos = NULL, pos = container_of((head)->prev, pos, member), \
199 storage = container_of(pos->member.prev, pos, member); \
201 pos = storage, storage = container_of(storage->member.prev, storage, member)
    [all...]
  /device/google/contexthub/firmware/os/inc/
isr.h 68 struct ChainedIsr *curIsr = container_of(cur, struct ChainedIsr, node);
85 struct ChainedIsr *curIsr = container_of(cur, struct ChainedIsr, node);
101 struct ChainedIsr *curIsr = container_of(cur, struct ChainedIsr, node);
util.h 44 #define container_of(addr, struct_name, field_name) \ macro
  /external/syslinux/core/thread/
schedule.c 49 nt = st = container_of(curr->list.next, struct thread, list);
65 nt = container_of(nt->list.next, struct thread, list);
timeout.c 25 t = container_of(tp, struct thread, list);
  /external/syslinux/gpxe/src/core/
downloader.c 63 container_of ( refcnt, struct downloader, refcnt );
130 container_of ( job, struct downloader, job );
145 container_of ( job, struct downloader, job );
180 container_of ( xfer, struct downloader, xfer );
216 container_of ( xfer, struct downloader, xfer );
hw.c 31 struct hw *hw = container_of ( xfer, struct hw, xfer );
46 struct hw *hw = container_of ( process, struct hw, process );
  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
misc.h 18 #define container_of(ptr, type, member) ({ \ macro
  /external/blktrace/
rbtree.h 120 #define container_of(ptr, type, member) ({ \ macro
141 #define rb_entry(ptr, type, member) container_of(ptr, type, member)
  /external/ltp/utils/ffsb-6.0-rc2/
list.h 31 #define container_of(ptr, type, member) ({ \ macro
36 container_of(ptr, type, member)
  /external/syslinux/gpxe/src/net/
netdev_settings.c 58 struct net_device *netdev = container_of ( settings, struct net_device,
82 struct net_device *netdev = container_of ( settings, struct net_device,
  /external/kmod/libkmod/
libkmod-list.c 202 return container_of(node, struct kmod_list, node);
225 return container_of(node, struct kmod_list, node);
268 return container_of(curr->node.prev, struct kmod_list, node);
293 return container_of(curr->node.next, struct kmod_list, node);
313 return container_of(list->node.prev, struct kmod_list, node);
  /external/blktrace/btt/
list.h 13 #ifndef container_of
21 #define container_of(ptr, type, member) ({ \ macro
147 container_of(ptr, type, member)
  /external/syslinux/gpxe/src/net/tcp/
ftp.c 79 container_of ( refcnt, struct ftp_request, refcnt );
180 container_of ( control, struct ftp_request, control );
311 container_of ( control, struct ftp_request, control );
387 container_of ( data, struct ftp_request, data );
412 container_of ( data, struct ftp_request, data );
448 container_of ( xfer, struct ftp_request, xfer );
  /external/e2fsprogs/lib/ext2fs/
rbtree.h 107 #define container_of(ptr, type, member) ({ \ macro
144 #define ext2fs_rb_entry(ptr, type, member) container_of(ptr, type, member)
  /external/syslinux/gpxe/src/net/udp/
slam.c 156 container_of ( refcnt, struct slam_request, refcnt );
314 container_of ( timer, struct slam_request, master_timer );
338 container_of ( timer, struct slam_request, slave_timer );
484 container_of ( mc_socket, struct slam_request, mc_socket );
567 container_of ( socket, struct slam_request, socket );
608 container_of ( socket, struct slam_request, socket );
634 container_of ( mc_socket, struct slam_request, mc_socket );
666 container_of ( xfer, struct slam_request, xfer );
  /device/google/contexthub/firmware/os/core/
eventQ.c 90 struct EvtRecord * rec = container_of(pos, struct EvtRecord, item);
117 rec = container_of(pos, struct EvtRecord, item);
166 struct EvtRecord * rec = container_of(pos, struct EvtRecord, item);
189 rec = container_of(pos, struct EvtRecord, item);
  /external/fio/lib/
rbtree.h 133 #define rb_entry(ptr, type, member) container_of(ptr, type, member)
  /external/kmod/shared/
macro.h 34 #define container_of(member_ptr, containing_type, member) \ macro
  /external/libnl/python/netlink/
utils.h 32 #define container_of(ptr, type, member) ({ \ macro
  /external/syslinux/gpxe/src/arch/i386/interface/pcbios/
aoeboot.c 47 container_of ( ata->backend, struct aoe_session, refcnt );

Completed in 1022 milliseconds

1 2 3 4 5 6