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

  /external/llvm/bindings/ocaml/transforms/ipo/
Makefile 17 UsedComponents := ipo
  /external/llvm/bindings/ocaml/transforms/
Makefile 11 DIRS = scalar ipo
  /external/llvm/tools/bugpoint/
Makefile 12 LINK_COMPONENTS := asmparser instrumentation scalaropts ipo linker bitreader \
  /external/llvm/tools/llvm-extract/
Makefile 12 LINK_COMPONENTS := ipo bitreader bitwriter asmparser irreader
  /external/llvm/tools/llvm-stress/
Makefile 13 LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts ipo
  /external/llvm/tools/opt/
Makefile 12 LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts objcarcopts ipo vectorize all-targets
  /external/clang/examples/clang-interpreter/
Makefile 18 LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ObjectAnimationModifier.java 13 import com.jme3.scene.plugins.blender.animations.Ipo;
36 * @param ipo
48 public ObjectAnimationModifier(Ipo ipo, String objectAnimationName, Long objectOMA, BlenderContext blenderContext) throws BlenderFileException {
52 SpatialTrack track = (SpatialTrack) ipo.calculateTrack(-1, 0, ipo.getLastFrame(), fps, true);
54 Animation animation = new Animation(objectAnimationName, ipo.getLastFrame() / fps);
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/constraints/
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...]
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;
ConstraintDistLimit.java 8 import com.jme3.scene.plugins.blender.animations.Ipo;
33 * the ipo curve of the influence factor
41 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
61 this.distLimit(v, targetLocation, ipo.calculateValue(frame));
77 this.distLimit(ownerLocation, targetLocation, ipo.calculateValue(0));
ConstraintLocLike.java 8 import com.jme3.scene.plugins.blender.animations.Ipo;
37 * the ipo curve of the influence factor
45 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
75 this.locLike(translations[frame], targetTransform.getTranslation(), ipo.calculateValue(frame));
85 this.locLike(ownerLocation, targetTransform.getTranslation(), ipo.calculateValue(0));
ConstraintLocLimit.java 8 import com.jme3.scene.plugins.blender.animations.Ipo;
36 * the ipo curve of the influence factor
44 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
86 this.locLimit(translations[frame], ipo.calculateValue(frame));
95 this.locLimit(ownerLocation, ipo.calculateValue(0));
ConstraintRotLike.java 8 import com.jme3.scene.plugins.blender.animations.Ipo;
36 * the ipo curve of the influence factor
44 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
65 this.rotLike(rotations[frame], angles, targetAngles, ipo.calculateValue(frame));
75 this.rotLike(ownerRotation, ownerRotation.toAngles(null), targetTransform.getRotation().toAngles(null), ipo.calculateValue(0));
ConstraintSizeLike.java 8 import com.jme3.scene.plugins.blender.animations.Ipo;
33 * the ipo curve of the influence factor
41 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
67 this.sizeLike(scales[frame], targetScale, ipo.calculateValue(frame));
76 this.sizeLike(ownerTransform.getScale(), targetTransform.getScale(), ipo.calculateValue(0));
ConstraintSizeLimit.java 8 import com.jme3.scene.plugins.blender.animations.Ipo;
36 * the ipo curve of the influence factor
44 Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
86 this.sizeLimit(scales[frame], ipo.calculateValue(frame));
94 this.sizeLimit(ownerTransform.getScale(), ipo.calculateValue(0));
ConstraintRotLimit.java 10 import com.jme3.scene.plugins.blender.animations.Ipo;
37 * the ipo curve of the influence factor
44 public ConstraintRotLimit(Structure constraintStructure, Long ownerOMA, Ipo influenceIpo, BlenderContext blenderContext) throws BlenderFileException {
93 this.rotLimit(angles, ipo.calculateValue(frame));
103 this.rotLimit(angles, ipo.calculateValue(0));
  /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...]
  /external/clang/tools/driver/
Makefile 33 instrumentation ipo irreader linker selectiondag option
  /external/llvm/tools/lto/
Makefile 12 LINK_COMPONENTS := all-targets ipo scalaropts linker bitreader bitwriter \
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
BlenderContext.java 50 import com.jme3.scene.plugins.blender.animations.Ipo;
104 * A map storing loaded ipos. The key is the ipo's owner old memory address
105 * and the value is the ipo.
107 private Map<Long, Ipo> loadedIpos = new HashMap<Long, Ipo>();
394 * This method adds new ipo curve for the feature.
397 * the OMA of blender feature that owns the ipo
398 * @param ipo
399 * the ipo to be added
401 public void addIpo(Long ownerOMA, Ipo ipo) {
    [all...]
  /external/llvm/utils/
GenLibDeps.pl 108 $libpath =~ s/^ipo/Transforms\/IPO/;
149 $libpath =~ s/^ipo/Transforms\/IPO/;
  /external/libvpx/libvpx/build/make/
configure.sh 1067 enabled x86_64 && add_cflags -ipo -static -O3 -no-prec-div
    [all...]
  /external/mksh/src/
Build.sh 1234 ac_flags 1 ipo -xipo 'for cross-module optimisation'
    [all...]

Completed in 2497 milliseconds