HomeSort by relevance Sort by last modified time
    Searched defs:container_of (Results 1 - 19 of 19) sorted by null

  /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
linux_list.h 8 * container_of - cast a member of a structure out to the containing structure
15 #define container_of(ptr, type, member) ({ \ macro
331 container_of(ptr, type, member)
646 #define hlist_entry(ptr, type, member) container_of(ptr,type,member)
  /device/google/contexthub/firmware/inc/
util.h 33 #define container_of(addr, struct_name, field_name) \ macro
  /external/iproute2/include/
hlist.h 7 #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/e2fsprogs/lib/ext2fs/
rbtree.h 106 #define container_of(ptr, type, member) ({ \ macro
143 #define ext2fs_rb_entry(ptr, type, member) container_of(ptr, type, member)
  /external/f2fs-tools/include/
list.h 9 #define container_of(ptr, type, member) ({ \ macro
72 container_of(ptr, type, member)
  /external/fio/
flist.h 13 #define container_of(ptr, type, member) ({ \ macro
175 container_of(ptr, type, member)
  /external/libdrm/
util_double_list.h 104 #ifndef container_of
105 #define container_of(ptr, sample, member) \ macro
111 for (pos = container_of((head)->next, pos, member); \
113 pos = container_of(pos->member.next, pos, member))
116 for (pos = container_of((head)->next, pos, member), \
117 storage = container_of(pos->member.next, pos, member); \
119 pos = storage, storage = container_of(storage->member.next, storage, member))
122 for (pos = container_of((head)->prev, pos, member), \
123 storage = container_of(pos->member.prev, pos, member); \
125 pos = storage, storage = container_of(storage->member.prev, storage, member)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_double_list.h 114 #ifndef container_of
115 #define container_of(ptr, sample, member) \ macro
121 for (pos = NULL, pos = container_of((head)->next, pos, member); \
123 pos = container_of(pos->member.next, pos, member))
126 for (pos = NULL, pos = container_of((head)->next, pos, member), \
127 storage = container_of(pos->member.next, pos, member); \
129 pos = storage, storage = container_of(storage->member.next, storage, member))
132 for (pos = NULL, pos = container_of((head)->prev, pos, member), \
133 storage = container_of(pos->member.prev, pos, member); \
135 pos = storage, storage = container_of(storage->member.prev, storage, member)
    [all...]
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/include/linux/kernel/
kernel.h 30 #ifndef container_of
31 #define container_of(ptr,type,member) ({ const typeof(((type *) 0)->member) * __mptr = (ptr); (type *) ((char *) __mptr - offsetof(type, member)); }) macro
  /external/blktrace/btt/
list.h 13 #ifndef container_of
21 #define container_of(ptr, type, member) ({ \ macro
147 container_of(ptr, type, member)
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/include/linux/kernel/
kernel.h 18 #ifndef container_of
20 * container_of - cast a member of a structure out to the containing structure
26 #define container_of(ptr, type, member) ({ \ macro
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStream.cpp 25 #ifndef container_of
26 #define container_of(ptr, type, member) \ macro
276 container_of(buffer.buffer, ANativeWindowBuffer, handle),
309 container_of(buffer.buffer, ANativeWindowBuffer, handle),
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_core.c 50 #define container_of(ptr, type, field) \ macro
76 rb_context = container_of(ptr, struct rbug_context, list);
92 tr_shdr = container_of(ptr, struct rbug_shader, list);
188 tr_tex = container_of(ptr, struct rbug_resource, list);
210 tr_tex = container_of(ptr, struct rbug_resource, list);
257 tr_tex = container_of(ptr, struct rbug_resource, list);
307 rb_context = container_of(ptr, struct rbug_context, list);
534 tr_shdr = container_of(ptr, struct rbug_shader, list);
  /hardware/libhardware/tests/camera2/
camera2_utils.cpp 314 #ifndef container_of
315 #define container_of(ptr, type, member) \ macro
540 container_of(buffer, ANativeWindowBuffer, handle), -1);
552 container_of(buffer, ANativeWindowBuffer, handle), -1);
  /frameworks/av/services/camera/libcameraservice/device1/
CameraHardwareInterface.h 627 #ifndef container_of
628 #define container_of(ptr, type, member) ({ \ macro
646 container_of(buffer, ANativeWindowBuffer, handle), -1);
654 container_of(buffer, ANativeWindowBuffer, handle), -1);
  /system/core/libsparse/
output_file.c 59 #define container_of(inner, outer_t, elem) \ macro
99 container_of((_o), struct output_file_gz, out)
107 container_of((_o), struct output_file_normal, out)
116 container_of((_o), struct output_file_callback, out)
  /external/libusb/libusb/
libusbi.h 99 #define container_of(ptr, type, member) ({ \ macro

Completed in 544 milliseconds