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

  /frameworks/base/media/java/android/media/audiofx/
Virtualizer.java 69 * Parameter ID to query the virtual speaker angles for a channel mask / device configuration.
172 * Checks if a configuration is supported, and query the virtual speaker angles.
175 * @param angles if non-null: array in which the angles will be written. If null, no angles
183 private boolean getAnglesInt(int inputChannelMask, int deviceType, int[] angles)
193 if ((angles != null) && (angles.length < (nbChannels * 3))) {
194 Log.e(TAG, "Size of array for angles cannot accomodate number of channels in mask ("
197 "Virtualizer: array for channel / angle pairs is too small: is " + angles.lengt
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VirtualizerTest.java 350 int[] angles = new int[3*6]; local
353 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
357 VIRTUALIZATION_MODES[m], angles);
361 //check if the number of angles matched the expected number of channels for
365 int speakerIdentification = angles[k*3];
469 int[] angles = new int[3*6]; local
475 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
479 VIRTUALIZATION_MODES[m], angles);
490 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
494 VIRTUALIZATION_MODES[m], angles);
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
SimplifyAngle_Test.cpp 110 // create angles in a circle
111 SkTDArray<SimplifyAngleTest::Angle> angles;
116 SimplifyAngleTest::Angle* angle = angles.append();
124 angleList.push(&angles[x]);
160 SkTDArray<SimplifyAngleTest::Angle> angles;
164 SimplifyAngleTest::Angle* angle = angles.append();
169 angleList.push(&angles[x]);
184 SkTDArray<SimplifyAngleTest::Angle> angles;
187 SimplifyAngleTest::Angle* angle = angles.append();
ShapeOps.cpp 17 // other code that walks winding in angles
27 SkTDArray<Angle> angles; local
29 if (segment->activeAngle(nextStart, done, angles)) {
30 Angle* last = angles.end() - 1;
40 if (done == angles.count()) {
44 bool sortable = Segment::SortAngles(angles, sorted);
EdgeDemo.cpp 44 int angles[circles]; local
50 angles[c] = (step + c * 6) % 600;
65 SkScalar angle = angles[c] * 3.1415f * 2 / 600;
114 SkScalar angles[stars]; local
136 angles[s] = ((step + s * 47) % (360 * 4)) * 3.1415f / 180 / 4;
148 angles[s], pts[s], locs[s]);
Simplify.cpp 672 // sorting angles
673 // given angles of {dx dy ddx ddy dddx dddy} sort them
    [all...]
  /external/skia/experimental/Intersection/
SimplifyAngle_Test.cpp 110 // create angles in a circle
111 SkTDArray<SimplifyAngleTest::Angle> angles;
116 SimplifyAngleTest::Angle* angle = angles.append();
124 angleList.push(&angles[x]);
160 SkTDArray<SimplifyAngleTest::Angle> angles;
164 SimplifyAngleTest::Angle* angle = angles.append();
169 angleList.push(&angles[x]);
184 SkTDArray<SimplifyAngleTest::Angle> angles;
187 SimplifyAngleTest::Angle* angle = angles.append();
ShapeOps.cpp 17 // other code that walks winding in angles
27 SkTDArray<Angle> angles; local
29 if (segment->activeAngle(nextStart, done, angles)) {
30 Angle* last = angles.end() - 1;
40 if (done == angles.count()) {
44 bool sortable = Segment::SortAngles(angles, sorted);
EdgeDemo.cpp 44 int angles[circles]; local
50 angles[c] = (step + c * 6) % 600;
65 SkScalar angle = angles[c] * 3.1415f * 2 / 600;
114 SkScalar angles[stars]; local
136 angles[s] = ((step + s * 47) % (360 * 4)) * 3.1415f / 180 / 4;
148 angles[s], pts[s], locs[s]);
Simplify.cpp 672 // sorting angles
673 // given angles of {dx dy ddx ddy dddx dddy} sort them
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.c 447 float angles[2]; local
480 angles[i] = acos(cos_a)/M_PI;
483 if (angles[0] + angles[1] > 1.) {
487 angles[0] = 1. - angles[0];
488 angles[1] = 1. - angles[1];
502 float kappa = 2.*KAPPA * sign * offset * angles[i];
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 447 float angles[2]; local
480 angles[i] = acos(cos_a)/M_PI;
483 if (angles[0] + angles[1] > 1.) {
487 angles[0] = 1. - angles[0];
488 angles[1] = 1. - angles[1];
502 float kappa = 2.*KAPPA * sign * offset * angles[i];
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformOperationsTest.cpp 335 float angles[][2] = { local
354 for (size_t j = 0; j < WTF_ARRAY_LENGTH(angles); ++j) {
363 fromOps.operations().append(RotateTransformOperation::create(x, y, z, angles[j][0], TransformOperation::Rotate3D));
364 toOps.operations().append(RotateTransformOperation::create(x, y, z, angles[j][1], TransformOperation::Rotate3D));
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 18 set angles radians
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsDebug.cpp 135 SkTDArray<const SkOpAngle*>(angles);
138 angles.push(next);
143 SK_ALWAYSBREAK(!angles.contains(next));
  /external/eigen/demos/opengl/
quaternion_demo.cpp 59 static const float angles [10] = { local
83 Vector3f newC = c + ( (AngleAxisf(angles[j*2+1], ax0)
84 * AngleAxisf(angles[j*2+0] * (l==1 ? 0.35 : 0.5), ax1)) * ax0)
188 // Euler angles slerp
610 but = new QRadioButton("euler angles");
613 but->setToolTip("use Euler angles to interpolate orientations");
  /external/skia/src/pathops/
SkPathOpsDebug.cpp 134 SkTDArray<const SkOpAngle*>(angles);
137 angles.push(next);
142 SK_ALWAYSBREAK(!angles.contains(next));
  /external/chromium_org/cc/animation/
transform_operations_unittest.cc 1095 TestAngles angles[] = { local
    [all...]
  /external/chromium_org/ui/keyboard/resources/elements/
kb-keyboard.js 178 // TODO (rsadam): Use angles to figure out the direction.

Completed in 1929 milliseconds