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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/include/utils/
SkParsePaint.h 24 "opacity" scalar [0..1]
25 "stroke-width" scalar (0...inf)
26 "text-size" scalar (0..inf)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
machmode.h 74 /* Nonzero if MODE is a scalar integral mode. */
79 /* Nonzero if MODE is a scalar floating point mode. */
88 /* Nonzero if MODE is a scalar fract mode. */
92 /* Nonzero if MODE is a scalar ufract mode. */
96 /* Nonzero if MODE is a scalar fract or ufract mode. */
100 /* Nonzero if MODE is a scalar accum mode. */
104 /* Nonzero if MODE is a scalar uaccum mode. */
108 /* Nonzero if MODE is a scalar accum or uaccum mode. */
112 /* Nonzero if MODE is a scalar fract or accum mode. */
116 /* Nonzero if MODE is a scalar ufract or uaccum mode. *
    [all...]
  /external/skia/src/animator/
SkDrawColor.cpp 233 SkScalar scalar = value.fOperand.fScalar; local
238 alpha = scalar == SK_Scalar1 ? 255 : SkToU8((U8CPU) (scalar * 256));
240 alpha = SkToU8((scalar - (scalar >= SK_ScalarHalf)) >> 8);
246 scalar = SkScalarClampMax(scalar, 255 * SK_Scalar1);
248 SkColorGetG(color), SkToU8((U8CPU) scalar));
251 scalar = SkScalarClampMax(scalar, 255 * SK_Scalar1)
    [all...]
SkOperand.h 30 // SkOperand(SkScalar scalar) : fScalar(scalar) {}
SkScriptDecompile.cpp 163 SkScalar scalar;
164 memcpy(&scalar, opCode, sizeof(scalar));
167 SkDebugf(" scalar: %g", SkScalarToFloat(scalar));
169 SkDebugf(" scalar: %x", scalar);
SkDrawRectangle.cpp 104 SkScalar scalar = value.fOperand.fScalar; local
108 fRect.fBottom = scalar + fRect.fTop;
114 fRect.fRight = scalar + fRect.fLeft;
SkDisplayPost.cpp 140 SkScalar scalar; local
141 meta.findScalar(name, &scalar);
143 SkDebugf("float=\"%g\" ", SkScalarToFloat(scalar));
145 SkDebugf("float=\"%x\" ", scalar);
SkOperandInterpolator.h 38 @param blend A positive scalar specifying how to blend between this and the next key frame.
  /external/ipsec-tools/src/racoon/contrib/
sp.pl 3 die "insufficient arguments" if (scalar(@ARGV) < 2);
7 if (scalar(@ARGV) > 2) {
  /external/speex/libspeex/
kiss_fftr.h 31 input timedata has nfft scalar points
43 output timedata has nfft scalar points
  /external/skia/include/core/
SkScalarCompare.h 24 When scalar==fixed, this is very fast, and when scalar==hardware-float, this
25 is also reasonable, but if scalar==software-float, then each compare can be
  /external/kernel-headers/original/linux/
ktime.h 31 * internal representation of time values in scalar nanoseconds. The
43 * plain scalar nanosecond based representation can be selected by the
63 * ktime_t definitions when using the 64-bit scalar representation:
93 * Add a ktime_t variable and a scalar nanosecond value.
117 /* Convert ktime_t to nanoseconds - NOP in the scalar storage format: */
126 * performance reasons. The pure scalar nsec_t based code was nice and
188 * ktime_add_ns - Add a scalar nanoseconds value to a ktime_t variable
190 * @nsec: the scalar nsec value to add
246 * ktime_to_ns - convert a ktime_t variable to scalar nanoseconds
249 * Returns the scalar nanoseconds representation of k
    [all...]
  /external/skia/src/xml/
SkJSDisplayable.cpp 240 SkScalar scalar = 0; local
251 scalar = scriptValue.fOperand.fScalar;
270 scalar = operand.fScalar;
285 if (SkScalarFraction(scalar) == 0)
286 *vp = INT_TO_JSVAL(SkScalarFloor(scalar));
289 *vp = DOUBLE_TO_JSVAL(scalar);
291 *vp = DOUBLE_TO_JSVAL(scalar / 65536.0f );
316 SkScalar scalar = 0; local
331 scalar = SkIntToScalar(JSVAL_TO_INT(value));
335 scalar = (float) *(double*) JSVAL_TO_DOUBLE(value)
    [all...]
  /external/icu4c/test/compat/
tzone.pl 25 if (scalar(@ARGV) == 5) {
55 if (scalar(@result) > 0) {
  /external/proguard/src/proguard/evaluation/value/
ComparisonValue.java 24 * This IntegerValue represents the result of a comparisons of two scalar
36 * Creates a new comparison integer value of the two given scalar values.
ConvertedDoubleValue.java 25 * scalar value.
ConvertedFloatValue.java 25 * scalar value.
ConvertedIntegerValue.java 25 * scalar value.
ConvertedLongValue.java 25 * scalar value.
  /external/openssl/crypto/ec/
ec_mult.c 183 /* Determine the modified width-(w+1) Non-Adjacent Form (wNAF) of 'scalar'.
186 * scalar = \sum_j r[j]*2^j
191 static signed char *compute_wNAF(const BIGNUM *scalar, int w, size_t *ret_len)
200 if (BN_is_zero(scalar))
222 if (BN_is_negative(scalar))
227 len = BN_num_bits(scalar);
230 * BN_num_bits(scalar) + 1) */
237 if (scalar->d == NULL || scalar->top == 0)
242 window_val = scalar->d[0] & mask
    [all...]
ec2_mult.c 209 /* Computes scalar*point and stores the result in r.
215 static int ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
229 if ((scalar == NULL) || BN_is_zero(scalar) || (point == NULL) ||
254 i = scalar->top - 1; j = BN_BITS2 - 1;
256 while (!(scalar->d[i] & mask)) { mask >>= 1; j--; }
269 if (scalar->d[i] & mask)
311 * scalar*group->generator + scalars[0]*points[0] + ... + scalars[num-1]*points[num-1]
312 * gracefully ignoring NULL scalar values.
314 int ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
    [all...]
  /external/skia/src/views/
SkMetaData.cpp 327 SkASSERT(!m1.findScalar("scalar"));
330 SkASSERT(!m1.removeScalar("scalar"));
336 m1.setScalar("scalar", SK_Scalar1 * 42);
345 m1.setScalar("scalar", SK_Scalar1/2);
348 SkASSERT(m1.findScalar("scalar", &s) && s == SK_Scalar1/2);
362 { "scalar", SkMetaData::kScalar_Type, 1 },
390 SkASSERT(m1.removeScalar("scalar"));
396 SkASSERT(!m1.findScalar("scalar"));
  /external/skia/include/animator/
SkAnimator.h 43 /** SkFieldType is the type of field: a scalar, a string, an integer, a boolean, and so on.
223 /** Returns the scalar value of the specified element's attribute[index]
231 /** Returns the scalar value of the specified element's attribute[index]
239 /** Returns the scalar value of the specified element's attribute[index]
243 @return the scalar value to retrieve, or SK_ScalarNaN if unsuccessful
247 /** Returns the scalar value of the specified element's attribute[index]
251 @return the scalar value to retrieve, or SK_ScalarNaN if unsuccessful
335 /** Returns the scalar value of the specified element's attribute
342 /** Returns the scalar value of the specified element's attribute
349 /** Returns the scalar value of the specified element's attribut
    [all...]
  /external/skia/src/effects/
SkEmbossMaskFilter.cpp 31 // ambient should be 0...1 as a scalar
36 // specular should be 0..15.99 as a scalar
  /external/bluetooth/glib/debian/
build 43 print NEWCHANGELOG "$package ($new_version) unstable; urgency=low\n\n * CVS snapshot build at " . scalar localtime() . "\n\n -- $maintainer " . `date -R` . "\n";

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011>>