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

  /external/chromium_org/chrome/browser/history/
select_favicon_frames_unittest.cc 22 vector<ui::ScaleFactor> scales; local
23 scales.push_back(ui::SCALE_FACTOR_100P);
24 scales.push_back(ui::SCALE_FACTOR_200P);
25 return scales;
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 58 private CompactVector3Array scales; field in class:BoneTrack
85 * @param scales the scale of the bone for each frame
87 public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) {
89 this.setKeyframes(times, translations, rotations, scales);
116 * returns the array of scales for this track
120 return scales == null ? null : scales.toObjectArray();
162 * Set the translations, rotations and scales for this bone track
166 * @param scales the scale of the bone for each frame
168 public void setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) {
275 Vector3f[] scales = new Vector3f[tablesLength]; local
    [all...]
SpatialTrack.java 32 * Scales of the track.
34 private CompactVector3Array scales; field in class:SpatialTrack
53 * @param scales
57 Quaternion[] rotations, Vector3f[] scales) {
58 setKeyframes(times, translations, rotations, scales);
84 if (scales != null) {
85 scales.get(0, tempS);
92 if (scales != null) {
93 scales.get(lastFrame, tempS);
110 if (scales != null) {
    [all...]
AnimationFactory.java 138 * scales array for this animation
140 protected Vector3f[] scales; field in class:AnimationFactory
172 scales = new Vector3f[totalFrames];
392 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales);
437 scales[j] = FastMath.interpolateLinear(val, (Vector3f) keyFrames[i], (Vector3f) keyFrames[key]);
455 scales[j] = ((Vector3f) keyFrames[i]).clone();
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 76 private ArrayList<Vector3f> scales = new ArrayList<Vector3f>(); field in class:SkeletonLoader
188 scales.add(scale);
190 scales.add(new Vector3f(1,1,1));
206 Vector3f[] scalesArray = scales.toArray(new Vector3f[scales.size()]);
217 scales.clear();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintSizeLike.java 64 Vector3f[] scales = track.getScales(); local
65 int maxFrames = scales.length;
67 this.sizeLike(scales[frame], targetScale, ipo.calculateValue(frame));
69 track.setKeyframes(track.getTimes(), track.getTranslations(), track.getRotations(), scales); local
ConstraintSizeLimit.java 83 Vector3f[] scales = track.getScales(); local
84 int maxFrames = scales.length;
86 this.sizeLimit(scales[frame], ipo.calculateValue(frame));
88 track.setKeyframes(track.getTimes(), track.getTranslations(), track.getRotations(), scales); local
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestSpatialAnim.java 60 Vector3f[] scales = new Vector3f[totalFrames]; local
67 scales[i] = Vector3f.UNIT_XYZ;
69 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales);
  /external/jpeg/
jddctmgr.c 278 static const unsigned short scales[DCTSIZE2] = { local
293 ifmtbl[j] = (qtbl->quantval[i] * scales[i] + 2) >> 2;
  /external/qemu/distrib/jpeg-6b/
jddctmgr.c 238 static const unsigned short scales[DCTSIZE2] = { local
253 ifmtbl[j] = (qtbl->quantval[i] * scales[i] + 2) >> 2;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 157 LLVMValueRef scales[4]; local
201 scales[i] = LLVMConstNull(LLVMFloatTypeInContext(gallivm->context));
216 scales[i] = lp_build_const_float(gallivm, 1.0 / mask);
220 scales[i] = lp_build_const_float(gallivm, 1.0);
246 scaled = LLVMBuildFMul(builder, casted, LLVMConstVector(scales, 4), "");
273 LLVMValueRef scales[4]; local
307 scales[i] = LLVMGetUndef(LLVMFloatTypeInContext(gallivm->context));
318 scales[i] = lp_build_const_float(gallivm, mask);
322 scales[i] = lp_build_const_float(gallivm, 1.0);
329 scaled = LLVMBuildFMul(builder, unswizzled, LLVMConstVector(scales, 4), "")
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
CalculationBone.java 27 private Vector3f[] scales; field in class:CalculationBone
38 this.scales = new Vector3f[boneFramesCount];
42 Arrays.fill(this.scales, 0, boneFramesCount, this.startScale);
58 this.scales = track.getScales();
107 if (scales != null) {
108 scales[frame].set(this.getLocalScale());
115 track.setKeyframes(track.getTimes(), translations, rotations, scales); local
118 bone.setUserTransforms(translations[0], rotations[0], scales[0]);
Ipo.java 139 Vector3f[] scales = new Vector3f[framesAmount + 1]; local
226 scales[index] = new Vector3f(scale[0], scale[1], scale[2]);
229 calculatedTrack = new SpatialTrack(times, translations, rotations, scales);
231 calculatedTrack = new BoneTrack(targetIndex, times, translations, rotations, scales);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 157 LLVMValueRef scales[4]; local
201 scales[i] = LLVMConstNull(LLVMFloatTypeInContext(gallivm->context));
216 scales[i] = lp_build_const_float(gallivm, 1.0 / mask);
220 scales[i] = lp_build_const_float(gallivm, 1.0);
246 scaled = LLVMBuildFMul(builder, casted, LLVMConstVector(scales, 4), "");
273 LLVMValueRef scales[4]; local
307 scales[i] = LLVMGetUndef(LLVMFloatTypeInContext(gallivm->context));
318 scales[i] = lp_build_const_float(gallivm, mask);
322 scales[i] = lp_build_const_float(gallivm, 1.0);
329 scaled = LLVMBuildFMul(builder, unswizzled, LLVMConstVector(scales, 4), "")
    [all...]
  /external/chromium_org/ash/display/
display_manager.cc 55 // List of value UI Scale values. Scales for 2x are equivalent to 640,
179 std::vector<float> scales = GetScalesForDisplay(info); local
180 for (size_t i = 0; i < scales.size(); ++i) {
181 if (ScaleComparator(scales[i])(scale)) {
182 if (up && i != scales.size() - 1)
183 return scales[i + 1];
185 return scales[i - 1];
186 return scales[i];
310 std::vector<float> scales = GetScalesForDisplay(info);
312 if (std::find_if(scales.begin(), scales.end(), comparator) =
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 456 milliseconds