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

  /external/fio/
trim.c 16 struct io_piece *ipo; local
27 ipo = flist_first_entry(&td->trim_list, struct io_piece, trim_list);
28 remove_trim_entry(td, ipo);
30 io_u->offset = ipo->offset;
31 io_u->buflen = ipo->len;
32 io_u->file = ipo->file;
39 if (ipo->flags & IP_F_ONLIST)
40 flist_del(&ipo->list);
42 assert(ipo->flags & IP_F_ONRB);
43 rb_erase(&ipo->rb_node, &td->io_hist_tree)
    [all...]
blktrace.c 119 struct io_piece *ipo; local
121 ipo = calloc(1, sizeof(*ipo));
122 init_ipo(ipo);
124 ipo->ddir = DDIR_INVAL;
125 ipo->fileno = fileno;
126 ipo->file_action = action;
127 flist_add_tail(&ipo->list, &td->io_log_list);
178 * Store blk_io_trace data in an ipo for later retrieval.
184 struct io_piece *ipo = malloc(sizeof(*ipo)) local
230 struct io_piece *ipo = malloc(sizeof(*ipo)); local
    [all...]
ioengine.h 74 struct io_piece *ipo; member in struct:io_u
iolog.c 25 void queue_io_piece(struct thread_data *td, struct io_piece *ipo)
27 flist_add_tail(&ipo->list, &td->io_log_list);
28 td->total_io_size += ipo->len;
95 static int ipo_special(struct thread_data *td, struct io_piece *ipo)
101 * Not a special ipo
103 if (ipo->ddir != DDIR_INVAL)
106 f = td->files[ipo->fileno];
108 switch (ipo->file_action) {
122 log_err("fio: bad file action %d\n", ipo->file_action);
131 struct io_piece *ipo; local
178 struct io_piece *ipo; local
204 struct io_piece *ipo, *__ipo; local
292 struct io_piece *ipo = io_u->ipo; local
309 struct io_piece *ipo = io_u->ipo; local
351 struct io_piece *ipo; local
    [all...]
verify.c 1063 struct io_piece *ipo = NULL; local
1074 ipo = rb_entry(n, struct io_piece, rb_node);
1080 if (ipo->flags & IP_F_IN_FLIGHT)
1084 assert(ipo->flags & IP_F_ONRB);
1085 ipo->flags &= ~IP_F_ONRB;
1087 ipo = flist_first_entry(&td->io_hist_list, struct io_piece, list);
1093 if (ipo->flags & IP_F_IN_FLIGHT)
1096 flist_del(&ipo->list);
1097 assert(ipo->flags & IP_F_ONLIST);
1098 ipo->flags &= ~IP_F_ONLIST
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Constraint.java 11 import com.jme3.scene.plugins.blender.animations.Ipo;
31 /** The ipo object defining influence. */
32 protected final Ipo ipo; field in class:Constraint
44 * the ipo curve of the influence factor
52 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
74 this.ipo = influenceIpo;
ConstraintHelper.java 12 import com.jme3.scene.plugins.blender.animations.Ipo;
81 Map<String, Map<String, Ipo>> constraintsIpos = new HashMap<String, Map<String, Ipo>>();
89 Map<String, Ipo> ipos = new HashMap<String, Ipo>();
93 Pointer pIpo = (Pointer) constraintChannel.getFieldValue("ipo");
96 Ipo ipo = ipoHelper.fromIpoStructure(pIpo.fetchData(blenderContext.getInputStream()).get(0), blenderContext); local
97 ipos.put(constraintName, ipo);
119 Map<String, Ipo> ipoMap = constraintsIpos.get(name);
120 Ipo ipo = ipoMap==null ? null : ipoMap.get(constraintName); local
140 Ipo ipo = objectConstraintsIpos!=null ? objectConstraintsIpos.get(constraintName) : null; local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ModifierHelper.java 42 import com.jme3.scene.plugins.blender.animations.Ipo;
106 // either described by action or by ipo of the object)
146 Pointer pChannelIpo = (Pointer) actionChannels.get(0).getFieldValue("ipo");
148 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext); local
149 result = new ObjectAnimationModifier(ipo, action.getName(), objectStructure.getOldMemoryAddress(), blenderContext);
155 Pointer pIpo = (Pointer) objectStructure.getFieldValue("ipo");
158 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext); local
159 result = new ObjectAnimationModifier(ipo, objectStructure.getName(), objectStructure.getOldMemoryAddress(), blenderContext);
188 Ipo ipo = ipoHelper.fromAction(actionStructure, blenderContext); local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 203 Ipo ipo = new Ipo(bezierCurves, fixUpAxis); local
204 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false));
234 Pointer p = (Pointer) bActionChannel.getFieldValue("ipo");
237 Ipo ipo = ipoHelper.fromIpoStructure(ipoStructure, blenderContext); local
238 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false));
    [all...]

Completed in 200 milliseconds