/external/fio/ |
D | iolog.c | 25 void queue_io_piece(struct thread_data *td, struct io_piece *ipo) in queue_io_piece() argument 27 flist_add_tail(&ipo->list, &td->io_log_list); in queue_io_piece() 28 td->total_io_size += ipo->len; in queue_io_piece() 95 static int ipo_special(struct thread_data *td, struct io_piece *ipo) in ipo_special() argument 103 if (ipo->ddir != DDIR_INVAL) in ipo_special() 106 f = td->files[ipo->fileno]; in ipo_special() 108 switch (ipo->file_action) { in ipo_special() 122 log_err("fio: bad file action %d\n", ipo->file_action); in ipo_special() 131 struct io_piece *ipo; in read_iolog_get() local 137 ipo = flist_first_entry(&td->io_log_list, struct io_piece, list); in read_iolog_get() [all …]
|
D | blktrace.c | 119 struct io_piece *ipo; in trace_add_open_close_event() local 121 ipo = calloc(1, sizeof(*ipo)); in trace_add_open_close_event() 122 init_ipo(ipo); in trace_add_open_close_event() 124 ipo->ddir = DDIR_INVAL; in trace_add_open_close_event() 125 ipo->fileno = fileno; in trace_add_open_close_event() 126 ipo->file_action = action; in trace_add_open_close_event() 127 flist_add_tail(&ipo->list, &td->io_log_list); in trace_add_open_close_event() 184 struct io_piece *ipo = malloc(sizeof(*ipo)); in store_ipo() local 186 init_ipo(ipo); in store_ipo() 191 ipo->offset = offset * 512; in store_ipo() [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 | 226 static inline void init_ipo(struct io_piece *ipo) in init_ipo() argument 228 memset(ipo, 0, sizeof(*ipo)); in init_ipo() 229 INIT_FLIST_HEAD(&ipo->trim_list); in init_ipo()
|
D | verify.c | 1063 struct io_piece *ipo = NULL; in get_next_verify() local 1074 ipo = rb_entry(n, struct io_piece, rb_node); in get_next_verify() 1080 if (ipo->flags & IP_F_IN_FLIGHT) in get_next_verify() 1084 assert(ipo->flags & IP_F_ONRB); in get_next_verify() 1085 ipo->flags &= ~IP_F_ONRB; in get_next_verify() 1087 ipo = flist_first_entry(&td->io_hist_list, struct io_piece, list); in get_next_verify() 1093 if (ipo->flags & IP_F_IN_FLIGHT) in get_next_verify() 1096 flist_del(&ipo->list); in get_next_verify() 1097 assert(ipo->flags & IP_F_ONLIST); in get_next_verify() 1098 ipo->flags &= ~IP_F_ONLIST; in get_next_verify() [all …]
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
D | ConstraintHelper.java | 96 …Ipo ipo = ipoHelper.fromIpoStructure(pIpo.fetchData(blenderContext.getInputStream()).get(0), blend… in loadConstraints() local 97 ipos.put(constraintName, ipo); in loadConstraints() 120 Ipo ipo = ipoMap==null ? null : ipoMap.get(constraintName); in loadConstraints() local 121 if (ipo == null) { in loadConstraints() 123 ipo = ipoHelper.fromValue(enforce); in loadConstraints() 125 constraintsList.add(this.createConstraint(constraint, boneOMA, ipo, blenderContext)); in loadConstraints() 140 Ipo ipo = objectConstraintsIpos!=null ? objectConstraintsIpos.get(constraintName) : null; in loadConstraints() local 141 if (ipo == null) { in loadConstraints() 143 ipo = ipoHelper.fromValue(enforce); in loadConstraints() 145 …constraintsList.add(this.createConstraint(constraint, objectStructure.getOldMemoryAddress(), ipo, … in loadConstraints()
|
D | ConstraintRotLike.java | 65 this.rotLike(rotations[frame], angles, targetAngles, ipo.calculateValue(frame)); in bakeConstraint() 75 …ownerRotation.toAngles(null), targetTransform.getRotation().toAngles(null), ipo.calculateValue(0)); in bakeConstraint()
|
D | ConstraintSizeLike.java | 67 this.sizeLike(scales[frame], targetScale, ipo.calculateValue(frame)); in bakeConstraint() 76 this.sizeLike(ownerTransform.getScale(), targetTransform.getScale(), ipo.calculateValue(0)); in bakeConstraint()
|
D | Constraint.java | 32 protected final Ipo ipo; field in Constraint 74 this.ipo = influenceIpo; in Constraint()
|
D | ConstraintLocLike.java | 75 this.locLike(translations[frame], targetTransform.getTranslation(), ipo.calculateValue(frame)); in bakeConstraint() 85 this.locLike(ownerLocation, targetTransform.getTranslation(), ipo.calculateValue(0)); in bakeConstraint()
|
D | ConstraintDistLimit.java | 61 this.distLimit(v, targetLocation, ipo.calculateValue(frame)); in bakeConstraint() 77 this.distLimit(ownerLocation, targetLocation, ipo.calculateValue(0)); in bakeConstraint()
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
D | ModifierHelper.java | 148 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext); in readAnimationModifier249() local 149 …result = new ObjectAnimationModifier(ipo, action.getName(), objectStructure.getOldMemoryAddress(),… in readAnimationModifier249() 158 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext); in readAnimationModifier249() local 159 …result = new ObjectAnimationModifier(ipo, objectStructure.getName(), objectStructure.getOldMemoryA… in readAnimationModifier249() 188 Ipo ipo = ipoHelper.fromAction(actionStructure, blenderContext); in readAnimationModifier250() local 189 …result = new ObjectAnimationModifier(ipo, actionStructure.getName(), objectStructure.getOldMemoryA… in readAnimationModifier250()
|
D | ObjectAnimationModifier.java | 48 …public ObjectAnimationModifier(Ipo ipo, String objectAnimationName, Long objectOMA, BlenderContext… in ObjectAnimationModifier() argument 52 SpatialTrack track = (SpatialTrack) ipo.calculateTrack(-1, 0, ipo.getLastFrame(), fps, true); in ObjectAnimationModifier() 54 Animation animation = new Animation(objectAnimationName, ipo.getLastFrame() / fps); in ObjectAnimationModifier()
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
D | ArmatureHelper.java | 203 Ipo ipo = new Ipo(bezierCurves, fixUpAxis); in getTracks250() local 204 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false)); in getTracks250() 237 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext); in getTracks249() local 238 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false)); in getTracks249()
|
/external/llvm/test/Bindings/OCaml/ |
D | ipo.ml | 2 * RUN: %ocamlc -g -warn-error A -package llvm.ipo -linkpkg %T/ipo_opts.ml -o %t 4 * RUN: %ocamlopt -g -warn-error A -package llvm.ipo -linkpkg %T/ipo_opts.ml -o %t
|
/external/llvm/bindings/ocaml/transforms/passmgr_builder/ |
D | CMakeLists.txt | 5 LLVM ipo)
|
D | Makefile | 16 UsedComponents := ipo
|
/external/llvm/bindings/ocaml/transforms/ |
D | CMakeLists.txt | 1 add_subdirectory(ipo)
|
D | Makefile | 11 DIRS = ipo passmgr_builder scalar_opts utils vectorize
|
/external/llvm/bindings/ocaml/transforms/ipo/ |
D | Makefile | 16 UsedComponents := ipo
|
D | CMakeLists.txt | 5 LLVM ipo)
|
/external/llvm/tools/llvm-extract/ |
D | Makefile | 12 LINK_COMPONENTS := ipo bitreader bitwriter asmparser irreader
|
/external/llvm/tools/llvm-stress/ |
D | Makefile | 13 LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts ipo
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
D | Makefile | 12 LINK_COMPONENTS := core ipo mcjit orcjit native support
|