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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
LightingColorFilter.java 28 * pinning the result for each component to [0..255]. The alpha components of the mul and add arguments
31 public LightingColorFilter(int mul, int add) {
32 native_instance = native_CreateLightingFilter(mul, add);
33 nativeColorFilter = nCreateLightingFilter(native_instance, mul, add);
36 private static native int native_CreateLightingFilter(int mul, int add);
37 private static native int nCreateLightingFilter(int nativeFilter, int mul, int add);
  /dalvik/vm/compiler/template/mips/
TEMPLATE_MUL_LONG.S 19 /* mul-long vAA, vBB, vCC */
20 mul rRESULT1,rARG3,rARG0 # v1= a3a0
24 mul t0,rARG2,rARG1 # t0= a2a1
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
LightingColorFilter_Delegate.java 58 /*package*/ static int native_CreateLightingFilter(int mul, int add) {
64 /*package*/ static int nCreateLightingFilter(int nativeFilter, int mul, int add) {
  /external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
T.g 50 expr: mul ('+' mul)*
53 mul : atom ('*' atom)*
  /external/valgrind/main/memcheck/tests/
wrap3.c 13 int mul ( int x, int y ) { return x * y; } function
17 if (n == 0) return 1; else return mul(n, fact2(n-1));
21 if (n == 0) return 1; else return mul(n, fact1(n-1));
wrap4.c 17 int mul ( int x, int y ) { return x * y; } function
21 if (n == 0) return 1; else return mul(n, fact2(n-1));
25 if (n == 0) return 1; else return mul(n, fact1(n-1));
wrap2.c 9 int mul ( int x, int y ) { return x * y; } function
13 if (n == 0) return 1; else return mul(n, fact(n-1));
wrap5.c 37 int mul ( int x, int y ) { return x * y; } function
42 if (n == 0) return 1; else return mul(n, fact2(n-1));
47 if (n == 0) return 1; else return mul(n, fact1(n-1));
  /external/skia/src/effects/
SkColorFilters.cpp 237 SkLightingColorFilter(SkColor mul, SkColor add) : fMul(mul), fAdd(add) {}
285 SkLightingColorFilter_JustAdd(SkColor mul, SkColor add)
286 : INHERITED(mul, add) {}
320 SkLightingColorFilter_JustMul(SkColor mul, SkColor add)
321 : INHERITED(mul, add) {}
354 SkLightingColorFilter_SingleMul(SkColor mul, SkColor add)
355 : INHERITED(mul, add) {
359 SkASSERT(SkColorGetR(mul) == SkColorGetG(mul));
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MUL_LONG.S 21 /* mul-long vAA, vBB, vCC */
22 mul ip, r2, r1 @ ip<- ZxW
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
via-parser.rb 44 expr: mul ('+' mul)*
47 mul : atom ('*' atom)*
  /external/skia/legacy/src/effects/
SkColorFilters.cpp 300 SkLightingColorFilter(SkColor mul, SkColor add) : fMul(mul), fAdd(add) {}
354 SkLightingColorFilter_JustAdd(SkColor mul, SkColor add)
355 : INHERITED(mul, add) {}
393 SkLightingColorFilter_JustMul(SkColor mul, SkColor add)
394 : INHERITED(mul, add) {}
431 SkLightingColorFilter_SingleMul(SkColor mul, SkColor add)
432 : INHERITED(mul, add) {
436 SkASSERT(SkColorGetR(mul) == SkColorGetG(mul));
    [all...]
SkAvoidXfermode.cpp 93 static int scale_dist_14(int dist, uint32_t mul, uint32_t sub)
95 int tmp = dist * mul - sub;
111 uint32_t mul = fDistMul; local
131 d = scale_dist_14(d, mul, sub);
162 uint32_t mul = fDistMul; local
182 d = scale_dist_14(d, mul, sub);
203 uint32_t mul = fDistMul; local
223 d = scale_dist_14(d, mul, sub);
  /dalvik/vm/mterp/mips/
OP_MUL_LONG_2ADDR.S 5 /* mul-long/2addr vA, vB */
15 mul v1, a3, a0 # v1= a3a0
19 mul t2, a2, a1 # t2= a2a1
  /frameworks/base/core/jni/android/graphics/
ColorFilter.cpp 57 jint mul, jint add) {
59 return new SkiaLightingFilter(skFilter, mul, add);
94 static SkColorFilter* CreateLightingFilter(JNIEnv* env, jobject, jint mul, jint add) {
95 return SkColorFilter::CreateLightingFilter(mul, add);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/mul_float/d/
T_mul_float_5.d 16 mul-float v0, v5, v7
T_mul_float_6.d 16 mul-float v0, v6, v7
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/mul_float_2addr/d/
T_mul_float_2addr_1.d 16 mul-float/2addr v6, v7
T_mul_float_2addr_5.d 16 mul-float/2addr v5, v7
T_mul_float_2addr_6.d 16 mul-float/2addr v6, v7
  /external/openssl/crypto/bn/asm/x86/
mul.pl 34 &mul($w); # *a * w
62 &mul($w); # *a * w
mul_add.pl 40 &mul($w); # *a * w
68 &mul($w); # *a * w
sqr.pl 28 &mul("eax"); # *a * *a
49 &mul("eax"); # *a * *a
  /external/skia/include/views/
SkTextBox.h 23 of text. Spacing consists of two scalars: mul and add, and the spacing
24 between lines is computed as: spacing = paint.getTextSize() * mul + add
53 void getSpacing(SkScalar* mul, SkScalar* add) const;
54 void setSpacing(SkScalar mul, SkScalar add);
  /external/skia/legacy/include/utils/
SkTextBox.h 23 of text. Spacing consists of two scalars: mul and add, and the spacing
24 between lines is computed as: spacing = paint.getTextSize() * mul + add
53 void getSpacing(SkScalar* mul, SkScalar* add) const;
54 void setSpacing(SkScalar mul, SkScalar add);

Completed in 514 milliseconds

1 2 3 4 5 6 7 8 91011>>