/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.special/ |
float_long_double_explicit.pass.cpp | 25 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(), "");
|
long_double_double_explicit.pass.cpp | 25 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(), "");
|
long_double_double_implicit.pass.cpp | 25 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(), "");
|
long_double_float_explicit.pass.cpp | 25 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(), "");
|
long_double_float_implicit.pass.cpp | 25 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(), "");
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
HasAttribute.java | 17 package com.android.dx.cf.iface;
|
Attribute.java | 17 package com.android.dx.cf.iface;
|
FieldList.java | 17 package com.android.dx.cf.iface;
|
MethodList.java | 17 package com.android.dx.cf.iface;
|
/external/clang/test/CodeGen/ |
volatile-complex.c | 10 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...] |
/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttLocalVariableTable.java | 17 package com.android.dx.cf.attrib; 19 import com.android.dx.cf.code.LocalVariableList;
|
AttLocalVariableTypeTable.java | 17 package com.android.dx.cf.attrib; 19 import com.android.dx.cf.code.LocalVariableList;
|
AttDeprecated.java | 17 package com.android.dx.cf.attrib;
|
AttSynthetic.java | 17 package com.android.dx.cf.attrib;
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/ |
tuple.by.type2.fail.cpp | 19 typedef std::complex<float> cf; typedef 20 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
|
tuple.by.type3.fail.cpp | 19 typedef std::complex<float> cf; typedef 20 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
|
tuple.by.type1.fail.cpp | 19 typedef std::complex<float> cf; typedef 21 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/ |
tuple.by.type2.fail.cpp | 19 typedef std::complex<float> cf; typedef 20 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
|
tuple.by.type3.fail.cpp | 19 typedef std::complex<float> cf; typedef 20 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
|
tuple.by.type1.fail.cpp | 19 typedef std::complex<float> cf; typedef 21 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
|
/external/dhcpcd/dhcpcd-hooks/ |
50-yp.conf | 12 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"
|
50-ntp.conf | 24 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="$ntp_conf_dir/$interface" x [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
AttributeFactory.java | 17 package com.android.dx.cf.direct; 19 import com.android.dx.cf.attrib.RawAttribute; 20 import com.android.dx.cf.iface.Attribute; 21 import com.android.dx.cf.iface.ParseException; 22 import com.android.dx.cf.iface.ParseObserver; 61 * @param cf {@code non-null;} class file to parse from 69 public final Attribute parse(DirectClassFile cf, int context, int offset, 71 if (cf == null) { 72 throw new NullPointerException("cf == null"); 82 ByteArray bytes = cf.getBytes() [all...] |
/external/ipsec-tools/src/racoon/ |
genlist.c | 139 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->l2, "Kozy") [all...] |
/external/compiler-rt/lib/lsan/ |
lsan.cc | 29 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"));
|