Searched defs:cf (Results 1 - 25 of 118) sorted by relevance

12345

/external/libcxx/test/std/numerics/complex.number/complex.special/
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_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 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_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/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/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/
H A Dtuple.by.type1.fail.cpp21 typedef std::complex<float> cf; typedef
23 assert (( std::get<cf>(t1) == cf {1,2} )); // no such type
H A Dtuple.by.type2.fail.cpp21 typedef std::complex<float> cf; typedef
22 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
H A Dtuple.by.type3.fail.cpp21 typedef std::complex<float> cf; typedef
22 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
H A Dtuple.by.type.pass.cpp21 typedef std::complex<float> cf; typedef
23 auto t1 = std::tuple<int, std::string, cf> { 42, "Hi", { 1,2 }};
26 assert ( std::get<cf>(t1).real() == 1 ); // find at the end
27 assert ( std::get<cf>(t1).imag() == 2 );
31 auto t2 = std::tuple<int, std::string, int, cf> { 42, "Hi", 23, { 1,2 }};
34 assert (( std::get<cf>(t2) == cf{ 1,2 } ));
/external/libcxx/test/std/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
H A Dpairs.by.type2.fail.cpp18 typedef std::complex<float> cf; typedef
H A Dpairs.by.type.pass.cpp19 typedef std::complex<float> cf; typedef
21 auto t1 = std::make_pair<int, cf> ( 42, { 1,2 } );
23 assert ( std::get<cf>(t1).real() == 1 );
24 assert ( std::get<cf>(t1).imag() == 2 );
/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...]
H A Dr700_asm.c26 void r700_bytecode_cf_vtx_build(uint32_t *bytecode, const struct r600_bytecode_cf *cf) argument
28 unsigned count = (cf->ndw / 4) - 1;
29 *bytecode++ = S_SQ_CF_WORD0_ADDR(cf->addr >> 1);
30 *bytecode++ = cf->inst |
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
H A Dmask.pass.cpp28 const CF& cf = std::use_facet<CF>(l); local
39 assert( cf.is(CF::upper, 'A'));
41 assert(!cf.is(CF::lower, 'A'));
43 assert( cf.is(CF::alpha, 'A'));
46 assert(!cf.is(CF::upper, 'a'));
48 assert( cf.is(CF::lower, 'a'));
50 assert( cf.is(CF::alpha, 'a'));
/external/clang/test/CodeGen/
H A Dvolatile-complex.c10 volatile _Complex float cf; variable
17 // CHECK: load volatile float, float* getelementptr inbounds ({ float, float }, { float, float }* @cf, i32 0, i32 0), align 4
18 // CHECK-NEXT: load volatile float, float* getelementptr inbounds ({ float, float }, { float, float }* @cf, i32 0, i32 1), align 4
19 (void)(cf);
20 // CHECK-NEXT: [[R:%.*]] = load volatile float, float* getelementptr inbounds ({ float, float }, { float, float }* @cf, i32 0, i32 0), align 4
21 // CHECK-NEXT: [[I:%.*]] = load volatile float, float* getelementptr inbounds ({ float, float }, { float, float }* @cf, i32 0, i32 1), align 4
22 // CHECK-NEXT: store volatile float [[R]], float* getelementptr inbounds ({ float, float }, { float, float }* @cf, i32 0, i32 0), align 4
23 // CHECK-NEXT: store volatile float [[I]], float* getelementptr inbounds ({ float, float }, { float, float }* @cf, i32 0, i32 1), align 4
24 (void)(cf=cf);
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.h45 inline void OverrideCommonFlags(const CommonFlags &cf) { argument
46 common_flags_dont_use.CopyFrom(cf);
51 CommonFlags *cf = &common_flags_dont_use);
52 void RegisterIncludeFlags(FlagParser *parser, CommonFlags *cf);
/external/dexmaker/src/dx/java/com/android/dx/cf/code/
H A DMerger.java17 package com.android.dx.cf.code;
/external/javassist/src/main/javassist/bytecode/
H A DClassFilePrinter.java31 public static void print(ClassFile cf) { argument
32 print(cf, new PrintWriter(System.out, true));
38 public static void print(ClassFile cf, PrintWriter out) { argument
46 = AccessFlag.toModifier(cf.getAccessFlags()
48 out.println("major: " + cf.major + ", minor: " + cf.minor
49 + " modifiers: " + Integer.toHexString(cf.getAccessFlags()));
51 + cf.getName() + " extends " + cf.getSuperclass());
53 String[] infs = cf
[all...]
/external/libcxx/test/std/utilities/function.objects/func.memfn/
H A Dmember_data.pass.cpp35 const F& cf = f; local
36 assert(cf(ap) == f(ap));
H A Dmember_function.pass.cpp34 const F& cf = f; local
35 assert(cf(ap) == 'a');
48 const F& cf = f; local
49 assert(cf(ap, 2) == 'b');
62 const F& cf = f; local
63 assert(cf(ap, 2, 3.5) == 'c');
/external/skia/src/core/
H A DSkPaintPriv.cpp16 SkColorFilter* cf = paint.getColorFilter(); local
17 return cf && !(cf->getFlags() & SkColorFilter::kAlphaUnchanged_Flag);
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
H A Dlist_ports_osx.py29 cf = ctypes.cdll.LoadLibrary(ctypes.util.find_library('CoreFoundation')) variable
32 kCFAllocatorDefault = ctypes.c_void_p.in_dll(cf, "kCFAllocatorDefault")
58 cf.CFStringCreateWithCString.argtypes = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_int32]
59 cf.CFStringCreateWithCString.restype = ctypes.c_void_p
61 cf.CFStringGetCStringPtr.argtypes = [ctypes.c_void_p, ctypes.c_uint32]
62 cf.CFStringGetCStringPtr.restype = ctypes.c_char_p
64 cf.CFNumberGetValue.argtypes = [ctypes.c_void_p, ctypes.c_uint32, ctypes.c_void_p]
65 cf.CFNumberGetValue.restype = ctypes.c_void_p
74 key = cf.CFStringCreateWithCString(
90 output = cf
[all...]

Completed in 5613 milliseconds

12345