/external/fio/ |
D | blktrace.c | 121 struct io_piece *ipo; in trace_add_open_close_event() local 123 ipo = calloc(1, sizeof(*ipo)); in trace_add_open_close_event() 124 init_ipo(ipo); in trace_add_open_close_event() 126 ipo->ddir = DDIR_INVAL; in trace_add_open_close_event() 127 ipo->fileno = fileno; in trace_add_open_close_event() 128 ipo->file_action = action; in trace_add_open_close_event() 129 flist_add_tail(&ipo->list, &td->io_log_list); in trace_add_open_close_event() 226 struct io_piece *ipo = malloc(sizeof(*ipo)); in store_ipo() local 228 init_ipo(ipo); in store_ipo() 230 ipo->offset = offset * bs; in store_ipo() [all …]
|
D | iolog.c | 27 void queue_io_piece(struct thread_data *td, struct io_piece *ipo) in queue_io_piece() argument 29 flist_add_tail(&ipo->list, &td->io_log_list); in queue_io_piece() 30 td->total_io_size += ipo->len; in queue_io_piece() 97 static int ipo_special(struct thread_data *td, struct io_piece *ipo) in ipo_special() argument 105 if (ipo->ddir != DDIR_INVAL) in ipo_special() 108 f = td->files[ipo->fileno]; in ipo_special() 110 switch (ipo->file_action) { in ipo_special() 129 log_err("fio: bad file action %d\n", ipo->file_action); in ipo_special() 138 struct io_piece *ipo; in read_iolog_get() local 144 ipo = flist_first_entry(&td->io_log_list, struct io_piece, list); in read_iolog_get() [all …]
|
D | trim.c | 16 struct io_piece *ipo; in get_next_trim() local 27 ipo = flist_first_entry(&td->trim_list, struct io_piece, trim_list); in get_next_trim() 28 remove_trim_entry(td, ipo); in get_next_trim() 30 io_u->offset = ipo->offset; in get_next_trim() 31 io_u->buflen = ipo->len; in get_next_trim() 32 io_u->file = ipo->file; in get_next_trim() 39 if (ipo->flags & IP_F_ONLIST) in get_next_trim() 40 flist_del(&ipo->list); in get_next_trim() 42 assert(ipo->flags & IP_F_ONRB); in get_next_trim() 43 rb_erase(&ipo->rb_node, &td->io_hist_tree); in get_next_trim() [all …]
|
D | trim.h | 14 static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ipo) in remove_trim_entry() argument 16 if (!flist_empty(&ipo->trim_list)) { in remove_trim_entry() 17 flist_del_init(&ipo->trim_list); in remove_trim_entry() 31 static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ipo) in remove_trim_entry() argument
|
D | iolog.h | 272 static inline void ipo_bytes_align(unsigned int replay_align, struct io_piece *ipo) in ipo_bytes_align() argument 277 ipo->offset &= ~(replay_align - (uint64_t)1); in ipo_bytes_align() 290 static inline void init_ipo(struct io_piece *ipo) in init_ipo() argument 292 memset(ipo, 0, sizeof(*ipo)); in init_ipo() 293 INIT_FLIST_HEAD(&ipo->trim_list); in init_ipo()
|
D | verify.c | 1301 struct io_piece *ipo = NULL; in get_next_verify() local 1312 ipo = rb_entry(n, struct io_piece, rb_node); in get_next_verify() 1318 if (ipo->flags & IP_F_IN_FLIGHT) in get_next_verify() 1322 assert(ipo->flags & IP_F_ONRB); in get_next_verify() 1323 ipo->flags &= ~IP_F_ONRB; in get_next_verify() 1325 ipo = flist_first_entry(&td->io_hist_list, struct io_piece, list); in get_next_verify() 1331 if (ipo->flags & IP_F_IN_FLIGHT) in get_next_verify() 1334 flist_del(&ipo->list); in get_next_verify() 1335 assert(ipo->flags & IP_F_ONLIST); in get_next_verify() 1336 ipo->flags &= ~IP_F_ONLIST; in get_next_verify() [all …]
|
D | io_u.h | 77 struct io_piece *ipo; member
|
D | io_u.c | 1481 io_u->ipo = NULL; in __get_io_u() 1828 if (io_u->ipo) { in io_completed() 1835 io_u->ipo->flags &= ~IP_F_IN_FLIGHT; in io_completed()
|
/external/llvm/test/Bindings/OCaml/ |
D | ipo.ml | 2 * RUN: %ocamlc -g -w +A -package llvm.ipo -linkpkg %T/ipo_opts.ml -o %t 4 * RUN: %ocamlopt -g -w +A -package llvm.ipo -linkpkg %T/ipo_opts.ml -o %t
|
/external/llvm/bindings/ocaml/transforms/ |
D | CMakeLists.txt | 1 add_subdirectory(ipo)
|
/external/llvm/bindings/ocaml/transforms/ipo/ |
D | CMakeLists.txt | 5 LLVM ipo)
|
/external/llvm/bindings/ocaml/transforms/passmgr_builder/ |
D | CMakeLists.txt | 5 LLVM ipo)
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/transforms/ipo/ |
D | Makefile | 17 UsedComponents := ipo
|
/external/swiftshader/third_party/LLVM/tools/opt/ |
D | Makefile | 12 LINK_COMPONENTS := bitreader bitwriter asmparser instrumentation scalaropts ipo
|
/external/swiftshader/third_party/LLVM/tools/llvm-ld/ |
D | Makefile | 13 LINK_COMPONENTS = ipo scalaropts linker archive bitwriter
|
/external/swiftshader/third_party/LLVM/tools/llvm-extract/ |
D | Makefile | 13 LINK_COMPONENTS := ipo bitreader bitwriter asmparser
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/transforms/ |
D | Makefile | 11 DIRS = scalar ipo
|
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
D | Makefile | 13 LINK_COMPONENTS := asmparser instrumentation scalaropts ipo \
|
/external/llvm/lib/Transforms/IPO/ |
D | LLVMBuild.txt | 22 library_name = ipo
|
/external/swiftshader/third_party/LLVM/tools/lto/ |
D | Makefile | 23 LINK_COMPONENTS := $(TARGETS_TO_BUILD) ipo scalaropts linker bitreader \
|
/external/llvm/tools/llvm-config/ |
D | LibraryDependencies.inc | 55 …{ "ipo", "libLLVMipo.a", 1, { "analysis", "core", "ipa", "instcombine", "scalaropts", "support", "… 60 …{ "lto", "libLLVMLTO.a", 1, { "bitreader", "bitwriter", "core", "ipa", "ipo", "instcombine", "link…
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/ |
D | META.llvm.in | 41 package "ipo" (
|
/external/llvm/bindings/ocaml/llvm/ |
D | META.llvm.in | 40 package "ipo" (
|
/external/libvpx/libvpx/build/make/ |
D | configure.sh | 1203 enabled x86_64 && add_cflags -ipo -static -O3 -no-prec-div
|
/external/mksh/src/ |
D | Build.sh | 1554 ac_flags 1 ipo -xipo 'for cross-module optimisation'
|