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

1 2 3 4 5 6 7 8 910

  /external/ipsec-tools/src/racoon/contrib/
sp.pl 3 die "insufficient arguments" if (scalar(@ARGV) < 2);
7 if (scalar(@ARGV) > 2) {
  /external/llvm/bindings/ocaml/transforms/
Makefile 11 DIRS = scalar ipo
  /external/valgrind/main/memcheck/tests/x86-linux/
scalar.stderr.exp 15 by 0x........: main (scalar.c:51)
19 by 0x........: main (scalar.c:51)
23 by 0x........: main (scalar.c:51)
27 by 0x........: main (scalar.c:51)
31 by 0x........: main (scalar.c:51)
39 by 0x........: main (scalar.c:55)
43 by 0x........: main (scalar.c:55)
47 by 0x........: main (scalar.c:55)
51 by 0x........: main (scalar.c:55)
59 by 0x........: main (scalar.c:59
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector4f.java 265 * <code>scaleAdd</code> multiplies this vector by a scalar then adds the
268 * @param scalar
273 public Vector4f scaleAdd(float scalar, Vector4f add) {
274 x = x * scalar + add.x;
275 y = y * scalar + add.y;
276 z = z * scalar + add.z;
277 w = w * scalar + add.w;
283 * <code>scaleAdd</code> multiplies the given vector by a scalar then adds
286 * @param scalar
289 * the value to multiply the scalar b
    [all...]
Vector3f.java 253 * <code>scaleAdd</code> multiplies this vector by a scalar then adds the
256 * @param scalar
261 public Vector3f scaleAdd(float scalar, Vector3f add) {
262 x = x * scalar + add.x;
263 y = y * scalar + add.y;
264 z = z * scalar + add.z;
270 * <code>scaleAdd</code> multiplies the given vector by a scalar then adds
273 * @param scalar
276 * the value to multiply the scalar by
280 public Vector3f scaleAdd(float scalar, Vector3f mult, Vector3f add) {
    [all...]
Vector2f.java 341 * <code>mult</code> multiplies this vector by a scalar. The resultant
344 * @param scalar
348 public Vector2f mult(float scalar) {
349 return new Vector2f(x * scalar, y * scalar);
353 * <code>multLocal</code> multiplies this vector by a scalar internally,
356 * @param scalar
360 public Vector2f multLocal(float scalar) {
361 x *= scalar;
362 y *= scalar;
    [all...]
ColorRGBA.java 335 * Multiplies each r/g/b/a of this color by the given scalar and
338 * @param scalar The scalar to multiply.
339 * @return The new ColorRGBA. this*scalar
341 public ColorRGBA mult(float scalar) {
342 return new ColorRGBA(scalar * r, scalar * g, scalar * b, scalar * a);
348 * @param scalar scalar to multiply with
    [all...]
  /external/chromium_org/crypto/
p224.h 42 // ScalarMult computes *out = in*scalar where scalar is a 28-byte, big-endian
44 void CRYPTO_EXPORT ScalarMult(const Point& in, const uint8* scalar, Point* out);
46 // ScalarBaseMult computes *out = g*scalar where g is the base point of the
47 // curve and scalar is a 28-byte, big-endian number.
48 void CRYPTO_EXPORT ScalarBaseMult(const uint8* scalar, Point* out);
  /external/eigen/Eigen/src/plugins/
ArrayCwiseBinaryOps.h 17 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_quotient_op<Scalar>, const Derived, const OtherDerived>
20 return CwiseBinaryOp<internal::scalar_quotient_op<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
32 /** \returns an expression of the coefficient-wise min of \c *this and scalar \a other
36 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_min_op<Scalar>, const Derived, const ConstantReturnType>
37 (min)(const Scalar &other) const
51 /** \returns an expression of the coefficient-wise max of \c *this and scalar \a other
55 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_max_op<Scalar>, const Derived, const ConstantReturnType>
56 (max)(const Scalar &other) const
125 // scalar addition
127 /** \returns an expression of \c *this with each coeff incremented by the constant \a scalar
    [all...]
CommonCwiseUnaryOps.h 15 /** \internal Represents a scalar multiple of an expression */
16 typedef CwiseUnaryOp<internal::scalar_multiple_op<Scalar>, const Derived> ScalarMultipleReturnType;
17 /** \internal Represents a quotient of an expression by a scalar*/
18 typedef CwiseUnaryOp<internal::scalar_quotient1_op<Scalar>, const Derived> ScalarQuotient1ReturnType;
20 typedef typename internal::conditional<NumTraits<Scalar>::IsComplex,
21 const CwiseUnaryOp<internal::scalar_conjugate_op<Scalar>, const Derived>,
25 typedef typename internal::conditional<NumTraits<Scalar>::IsComplex,
26 const CwiseUnaryOp<internal::scalar_real_op<Scalar>, const Derived>,
30 typedef typename internal::conditional<NumTraits<Scalar>::IsComplex,
31 CwiseUnaryView<internal::scalar_real_ref_op<Scalar>, Derived>
    [all...]
  /external/llvm/utils/
profile.pl 27 while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
36 die "-o option requires a filename argument!" if (!scalar(@ARGV));
  /external/chromium_org/third_party/skia/src/animator/
SkDrawColor.cpp 225 SkScalar scalar = value.fOperand.fScalar; local
230 alpha = scalar == SK_Scalar1 ? 255 : SkToU8((U8CPU) (scalar * 256));
232 alpha = SkToU8((scalar - (scalar >= SK_ScalarHalf)) >> 8);
238 scalar = SkScalarClampMax(scalar, 255 * SK_Scalar1);
240 SkColorGetG(color), SkToU8((U8CPU) scalar));
243 scalar = SkScalarClampMax(scalar, 255 * SK_Scalar1)
    [all...]
  /external/skia/src/animator/
SkDrawColor.cpp 225 SkScalar scalar = value.fOperand.fScalar; local
230 alpha = scalar == SK_Scalar1 ? 255 : SkToU8((U8CPU) (scalar * 256));
232 alpha = SkToU8((scalar - (scalar >= SK_ScalarHalf)) >> 8);
238 scalar = SkScalarClampMax(scalar, 255 * SK_Scalar1);
240 SkColorGetG(color), SkToU8((U8CPU) scalar));
243 scalar = SkScalarClampMax(scalar, 255 * SK_Scalar1)
    [all...]
  /external/clang/test/Sema/
vector-cast.c 20 type 't1' and scalar type 'char *'}}
29 type 't1' and scalar type 'char *'}}
  /external/chromium_org/third_party/icu/source/test/compat/
tzone.pl 25 if (scalar(@ARGV) == 5) {
55 if (scalar(@result) > 0) {
  /external/clang/test/CodeGenCXX/
implicit-copy-assign-operator.cpp 25 int scalar; member in struct:D
  /external/icu4c/test/compat/
tzone.pl 25 if (scalar(@ARGV) == 5) {
55 if (scalar(@result) > 0) {
  /external/valgrind/main/cachegrind/
cg_diff.in 131 my $n = max(scalar @$a, scalar @$b);
143 my $n = max(scalar @$a, scalar @$b);
191 my $numEvents = scalar @events;
235 (scalar(@$summaryCC) == @events)
283 my $n = max(scalar @$events1, scalar @$events2);
319 (scalar @x == 2) || die;
  /external/eigen/Eigen/src/Eigen2Support/
Cwise.h 19 CwiseBinaryOp<OP<typename internal::traits<ExpressionType>::Scalar>, ExpressionType, OtherDerived>
24 CwiseUnaryOp<OP<typename internal::traits<ExpressionType>::Scalar>, ExpressionType>
27 * convenient macro to defined the return type of a cwise comparison to a scalar */
29 CwiseBinaryOp<OP<typename internal::traits<ExpressionType>::Scalar>, ExpressionType, \
54 typedef typename internal::traits<ExpressionType>::Scalar Scalar;
57 typedef CwiseUnaryOp<internal::scalar_add_op<Scalar>, ExpressionType> ScalarAddReturnType;
94 const EIGEN_CWISE_UNOP_RETURN_TYPE(internal::scalar_pow_op) pow(const Scalar& exponent) const;
97 operator+(const Scalar& scalar) const
    [all...]
CwiseOperators.h 121 Cwise<ExpressionType>::pow(const Scalar& exponent) const
123 return EIGEN_CWISE_UNOP_RETURN_TYPE(internal::scalar_pow_op)(_expression(), internal::scalar_pow_op<Scalar>(exponent));
208 // comparisons to scalar value
210 /** \deprecated ArrayBase::operator<(Scalar) */
213 Cwise<ExpressionType>::operator<(Scalar s) const
219 /** \deprecated ArrayBase::operator<=(Scalar) */
222 Cwise<ExpressionType>::operator<=(Scalar s) const
228 /** \deprecated ArrayBase::operator>(Scalar) */
231 Cwise<ExpressionType>::operator>(Scalar s) const
237 /** \deprecated ArrayBase::operator>=(Scalar) */
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
Hasher.pm 49 my $l = scalar @chars; #I wish this was in Ruby --- Maks
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
TGALoader.java 178 float scalar = 255f / (FastMath.pow(2, bitsPerColor) - 1); local
183 entry.red = (byte)(int)(getBitsAsByte(cMapData, offset, bitsPerColor) * scalar);
184 entry.green = (byte)(int)(getBitsAsByte(cMapData, offset+bitsPerColor, bitsPerColor) * scalar);
185 entry.blue = (byte)(int)(getBitsAsByte(cMapData, offset+(2*bitsPerColor), bitsPerColor) * scalar);
220 float scalar = 255f/31f; local
227 rawData[rawDataIndex++] = (byte)(int)(getBitsAsByte(data, 1, 5) * scalar);
228 rawData[rawDataIndex++] = (byte)(int)(getBitsAsByte(data, 6, 5) * scalar);
229 rawData[rawDataIndex++] = (byte)(int)(getBitsAsByte(data, 11, 5) * scalar);
363 float scalar = 255f / 31f; local
377 blue = (byte) (int) ( getBitsAsByte( data, 1, 5 ) * scalar );
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_swizzle.h 53 LLVMValueRef scalar);
58 LLVMValueRef scalar);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_swizzle.h 53 LLVMValueRef scalar);
58 LLVMValueRef scalar);
  /external/opencv/cxcore/src/
cxlogic.cpp 106 Mat op Scalar
113 const uchar* scalar, int pix_size ) \
129 int t0 = __op__(((const int*)(src+i))[0], ((const int*)(scalar+i))[0]); \
130 int t1 = __op__(((const int*)(src+i))[1], ((const int*)(scalar+i))[1]); \
134 t0 = __op__(((const int*)(src+i))[2], ((const int*)(scalar+i))[2]); \
147 int t0 = __op__(src[i], scalar[i]); \
148 int t1 = __op__(src[i+1], scalar[i+1]); \
152 t0 = __op__(src[i+2], scalar[i+2]); \
153 t1 = __op__(src[i+3], scalar[i+3]); \
164 int t = __op__(src[i],scalar[i]);
    [all...]

Completed in 648 milliseconds

1 2 3 4 5 6 7 8 910