Searched refs:cf (Results 1 - 25 of 285) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dimplicit-cast.c3 static char *test1(int cf) { argument
4 return cf ? "abc" : 0;
6 static char *test2(int cf) { argument
7 return cf ? 0 : "abc";
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Deg_asm.c30 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf) argument
32 unsigned id = cf->id;
34 switch (cf->inst) {
40 if (cf->eg_alu_extended) {
46 S_SQ_CF_ALU_WORD0_EXT_KCACHE_BANK2(cf->kcache[2].bank) |
47 S_SQ_CF_ALU_WORD0_EXT_KCACHE_BANK3(cf->kcache[3].bank) |
48 S_SQ_CF_ALU_WORD0_EXT_KCACHE_MODE2(cf->kcache[2].mode);
50 S_SQ_CF_ALU_WORD1_EXT_KCACHE_MODE3(cf->kcache[3].mode) |
51 S_SQ_CF_ALU_WORD1_EXT_KCACHE_ADDR2(cf->kcache[2].addr) |
52 S_SQ_CF_ALU_WORD1_EXT_KCACHE_ADDR3(cf
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Deg_asm.c30 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf) argument
32 unsigned id = cf->id;
34 switch (cf->inst) {
40 if (cf->eg_alu_extended) {
46 S_SQ_CF_ALU_WORD0_EXT_KCACHE_BANK2(cf->kcache[2].bank) |
47 S_SQ_CF_ALU_WORD0_EXT_KCACHE_BANK3(cf->kcache[3].bank) |
48 S_SQ_CF_ALU_WORD0_EXT_KCACHE_MODE2(cf->kcache[2].mode);
50 S_SQ_CF_ALU_WORD1_EXT_KCACHE_MODE3(cf->kcache[3].mode) |
51 S_SQ_CF_ALU_WORD1_EXT_KCACHE_ADDR2(cf->kcache[2].addr) |
52 S_SQ_CF_ALU_WORD1_EXT_KCACHE_ADDR3(cf
[all...]
/external/chromium_org/ui/gfx/
H A Dfont_unittest.cc61 Font cf("Arial", 16);
62 NativeFont native = cf.GetNativeFont();
64 EXPECT_EQ(cf.GetStyle(), Font::NORMAL);
65 EXPECT_EQ(cf.GetFontSize(), 16);
66 EXPECT_EQ(cf.GetFontName(), "Arial");
68 base::StringToLowerASCII(cf.GetActualFontNameForTesting()));
73 Font cf("Arial", 16);
74 Font bold(cf.Derive(0, Font::BOLD));
79 base::StringToLowerASCII(cf.GetActualFontNameForTesting()));
84 Font cf("Aria
[all...]
/external/libcxx/test/numerics/complex.number/complex.special/
H A Ddouble_long_double_implicit.fail.cpp24 std::complex<double> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
H A Dfloat_double_implicit.fail.cpp24 std::complex<float> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
H A Dfloat_long_double_implicit.fail.cpp24 std::complex<float> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
H A Ddouble_float_explicit.pass.cpp25 std::complex<double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Ddouble_float_implicit.pass.cpp25 std::complex<double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Ddouble_long_double_explicit.pass.cpp25 std::complex<double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dfloat_double_explicit.pass.cpp25 std::complex<float> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<float> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dfloat_long_double_explicit.pass.cpp25 std::complex<float> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<float> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dlong_double_double_explicit.pass.cpp25 std::complex<long double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<long double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dlong_double_double_implicit.pass.cpp25 std::complex<long double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<long double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dlong_double_float_explicit.pass.cpp25 std::complex<long double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<long double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dlong_double_float_implicit.pass.cpp25 std::complex<long double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<long double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
/external/libcxx/test/utilities/utility/pairs/pair.astuple/
H A Dpairs.by.type1.fail.cpp18 typedef std::complex<float> cf; typedef
20 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
/external/clang/test/CodeGen/
H A Dvolatile-complex.c10 volatile _Complex float cf; variable
17 // CHECK: load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 0), align 4
18 // CHECK-NEXT: load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 1), align 4
19 (void)(cf);
20 // CHECK-NEXT: [[R:%.*]] = load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 0), align 4
21 // CHECK-NEXT: [[I:%.*]] = load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 1), align 4
22 // CHECK-NEXT: store volatile float [[R]], float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 0), align 4
23 // CHECK-NEXT: store volatile float [[I]], float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 1), align 4
24 (void)(cf=cf);
[all...]
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
H A Dtuple.by.type2.fail.cpp19 typedef std::complex<float> cf; typedef
20 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
H A Dtuple.by.type3.fail.cpp19 typedef std::complex<float> cf; typedef
20 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
H A Dtuple.by.type1.fail.cpp19 typedef std::complex<float> cf; typedef
21 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
/external/dhcpcd/dhcpcd-hooks/
H A D50-yp.conf12 local cf=/etc/yp.conf."$interface" prefix= x= pid=
13 rm -f "$cf"
14 echo "$signature" > "$cf"
20 echo "domain $new_nis_domain broadcast" >> "$cf"
26 echo "$prefix$x" >> "$cf"
29 cat "$cf" > /etc/yp.conf
30 rm -f "$cf"
H A D50-ntp.conf24 local cf="$state_dir/ntp.conf.$interface"
47 [ -e "$cf" ] && rm -f "$cf"
51 cp "$ntp_conf" "$cf"
55 "$ntp_conf" > "$cf"
59 echo "$signature_base${header:+ $from }$header" >> "$cf"
60 printf "$search$servers" >> "$cf"
61 echo "$signature_base_end${header:+ $from }$header" >> "$cf"
67 if change_file "$ntp_conf" "$cf"; then
74 local cf
[all...]
/external/ipsec-tools/src/racoon/
H A Dgenlist.c139 struct conf *cf;
143 cf = calloc(sizeof(struct conf), 1);
144 cf->l1 = genlist_init();
145 cf->l2 = genlist_init();
147 genlist_insert(cf->l1, "Ahoj");
148 genlist_insert(cf->l1, "Cau");
149 genlist_insert(cf->l1, "Nazdar");
150 genlist_insert(cf->l1, "Te buch");
152 genlist_append(cf->l2, "Curak");
153 genlist_append(cf
[all...]
/external/compiler-rt/lib/lsan/
H A Dlsan.cc29 CommonFlags *cf = common_flags(); local
30 SetCommonFlagsDefaults(cf);
31 cf->external_symbolizer_path = GetEnv("LSAN_SYMBOLIZER_PATH");
32 cf->malloc_context_size = 30;
33 cf->detect_leaks = true;
35 ParseCommonFlagsFromString(cf, GetEnv("LSAN_OPTIONS"));

Completed in 1272 milliseconds

1234567891011>>