HomeSort by relevance Sort by last modified time
    Searched refs:f4 (Results 26 - 50 of 415) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/rs/java/tests/HelloComputeNDK/libhellocomputendk/
mono.rs 23 float4 f4 = rsUnpackColor8888(*v_in);
25 float3 mono = dot(f4.rgb, gMonoMult);
  /external/chromium_org/ui/base/models/
tree_node_iterator_unittest.cc 31 TestNode* f4 = new TestNode(); local
32 f3->Add(f4, 0);
33 f4->Add(new TestNode(), 0);
46 ASSERT_EQ(f4, iterator.Next());
49 ASSERT_EQ(f4->GetChild(0), iterator.Next());
65 TestNode* f4 = new TestNode(4); local
66 f3->Add(f4, 0);
67 f4->Add(new TestNode(5), 0);
  /external/clang/test/CodeGen/
struct-passing.c 14 void __attribute__((const)) f4(T1 a);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
23 // CHECK: declare void @f4({{.*}} byval align 4)
microsoft-call-conv.c 8 void __fastcall f4(void) { function
9 // CHECK-LABEL: define x86_fastcallcc void @f4()
28 void (__fastcall *pf4)(void) = f4;
33 f4(); f5(); f6();
34 // CHECK: call x86_fastcallcc void @f4()
functions.c 39 void f4() {} function
40 void f5() { f4(42); } //expected-warning {{too many arguments}}
c-strings.c 14 // ITANIUM: @f4.x = internal global %struct.s { i8* getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0) }
15 // MSABI: @f4.x = internal global %struct.s { i8* getelementptr inbounds ([6 x i8]* @"\01??_C@_05CJBACGMB@hello?$AA@", i32 0, i32 0) }
57 // CHECK-LABEL: define void @f4()
58 void f4() { function
63 // CHECK: call void @gaz({{.*}} @f4.x
mangle-windows.c 13 void __fastcall f4(char a) {} function
14 // CHECK: define x86_fastcallcc void @"\01@f4@4"
  /developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/rs/
saturation.rs 30 float4 f4 = rsUnpackColor8888(in);
31 float3 result = dot(f4.rgb, gMonoMult);
32 result = mix( result, f4.rgb, saturationValue );
  /developers/samples/android/renderScript/BasicRenderScript/Application/src/main/rs/
saturation.rs 30 float4 f4 = rsUnpackColor8888(in);
31 float3 result = dot(f4.rgb, gMonoMult);
32 result = mix( result, f4.rgb, saturationValue );
  /development/samples/browseable/BasicRenderScript/src/rs/
saturation.rs 30 float4 f4 = rsUnpackColor8888(in);
31 float3 result = dot(f4.rgb, gMonoMult);
32 result = mix( result, f4.rgb, saturationValue );
  /external/eigen/unsupported/test/
alignedvector3.cpp 23 FastType f1(r1), f2(r2), f3(r3), f4(r4), f5(r5), f6(r6);
27 VERIFY_IS_APPROX(f4,r4);
29 VERIFY_IS_APPROX(f4+f1,r4+r1);
30 VERIFY_IS_APPROX(f4-f1,r4-r1);
31 VERIFY_IS_APPROX(f4+f1-f2,r4+r1-r2);
32 VERIFY_IS_APPROX(f4+=f3,r4+=r3);
33 VERIFY_IS_APPROX(f4-=f5,r4-=r5);
34 VERIFY_IS_APPROX(f4-=f5+f1,r4-=r5+r1);
38 VERIFY_IS_APPROX(m1*f4,m1*r4);
39 VERIFY_IS_APPROX(f4.transpose()*m1,r4.transpose()*m1)
    [all...]
  /bootable/recovery/
verifier_test.sh 85 expect_succeed otasigned_f4.zip -f4
87 expect_succeed otasigned_f4_sha256.zip -f4 -sha256
91 expect_succeed otasigned.zip -f4 -e3
92 expect_succeed otasigned_f4.zip -ec -f4
94 expect_succeed otasigned_f4_sha256.zip -ec -sha256 -e3 -f4 -sha256
95 expect_succeed otasigned_ecdsa_sha256.zip -f4 -sha256 -e3 -ec -sha256
98 expect_fail otasigned.zip -f4
104 expect_fail otasigned_f4.zip -f4 -sha256
106 expect_fail otasigned_f4_sha256.zip -f4
  /external/llvm/test/MC/Mips/
micromips-fpu-instructions.s 12 # CHECK-EL: add.s $f4, $f6, $f8 # encoding: [0x06,0x55,0x30,0x20]
13 # CHECK-EL: add.d $f4, $f6, $f8 # encoding: [0x06,0x55,0x30,0x21]
14 # CHECK-EL: div.s $f4, $f6, $f8 # encoding: [0x06,0x55,0xf0,0x20]
15 # CHECK-EL: div.d $f4, $f6, $f8 # encoding: [0x06,0x55,0xf0,0x21]
16 # CHECK-EL: mul.s $f4, $f6, $f8 # encoding: [0x06,0x55,0xb0,0x20]
17 # CHECK-EL: mul.d $f4, $f6, $f8 # encoding: [0x06,0x55,0xb0,0x21]
18 # CHECK-EL: sub.s $f4, $f6, $f8 # encoding: [0x06,0x55,0x70,0x20]
19 # CHECK-EL: sub.d $f4, $f6, $f8 # encoding: [0x06,0x55,0x70,0x21]
56 # CHECK-EL: movz.s $f4, $f6, $7 # encoding: [0xe6,0x54,0x78,0x20]
57 # CHECK-EL: movz.d $f4, $f6, $7 # encoding: [0xe6,0x54,0x78,0x21
    [all...]
  /external/clang/test/Sema/
attr-noreturn.c 25 void f4() __attribute__((noreturn));
26 void f4() { function
27 return; // expected-error {{function 'f4' declared 'noreturn' should not return}}
builtin-object-size.c 24 void f4(const char *fmt, ...) { function
floating-point-compare.c 15 int f4(float x) { function
attr-availability-ios.c 7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=2.1,obsoleted=3.0))); // expected-note{{explicitly marked unavailable}}
18 f4(0); // expected-error{{f4' is unavailable: obsoleted in iOS 3.0}}
attr-availability-macosx.c 7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=3.0))); // expected-note{{explicitly marked unavailable}}
15 f4(0); // expected-error{{f4' is unavailable: obsoleted in OS X 10.5}}
warn-unused-function.c 15 inline static void f4();
16 void f4() { } // expected-warning{{unused}} function
  /external/oprofile/libutil++/tests/
path_filter_tests.cpp 47 path_filter f4("foo", "foo");
48 check(f4, "foo", false);
49 check(f4, "foo1", false);
50 check(f4, "foo/foo", false);
string_filter_tests.cpp 40 string_filter f4("ok,ok2,", "");
41 check(f4, "ok", true);
42 check(f4, "ok2", true);
43 check(f4, "no", false);
  /external/valgrind/main/none/tests/mips32/
MoveIns.stdout.exp 6 mfc1 $t5, $f4 :: fs 1.875000, rt 0x3ff00000
34 mtc1 $t5, $f4 :: fs 1.875000, rt 0x3ff00000
62 mov.s $f3, $f4 :: fs 1384.599976, rt 0x44ad1333
63 mov.s $f4, $f5 :: fs -7.294568, rt 0xc0e96d19
89 mov.d $f2, $f4 ::fs -6445705852632282607665545216.000000, rt 0x4e6e6b28
90 mov.d $f2, $f4 ::fs 0.000000, rt 0x44db0000
91 mov.d $f4, $f6 ::fs -102014360350703794652958156923702465265664.000000, rt 0x322bcc77
92 mov.d $f4, $f6 ::fs 11600980417357008896.000000, rt 0xc732da7a
131 movf.s $f4, $f6, $fcc0 :: out: 456.248962, cc: 1
132 movf.s $f4, $f6, $fcc0 :: out: 456.248962, cc:
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-variadic-templates.cpp 49 template<typename ...Types> tuple<Types...> f4() {} function
51 template tuple<int, float, double> f4();
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh990323-2.cpp 45 void f4() function
92 f4();
eh990323-4.cpp 45 void f4() function
93 f4();

Completed in 572 milliseconds

12 3 4 5 6 7 8 91011>>