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

1 2 3

  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p6.cpp 5 void (*fp2)(int) = [](int x) { };
16 void (*fp2)(int) = [&](int x) { }; // expected-error{{no viable conversion}}
  /external/clang/test/CodeGenCXX/
convert-to-fptr.cpp 14 typedef int (*fp2)(float); typedef
18 operator fp2() { return f2; }
  /external/clang/test/CXX/over/over.over/
p4.cpp 9 float (*fp2)(float) = &f0;
  /external/clang/test/Misc/
message-length.c 16 int (*fp2)(int, float, short, float) = f;
  /external/ltp/testcases/misc/math/float/power/
genpow.c 87 int fp, fp2; local
102 fp2 = open(F_name_pow, O_RDWR | O_CREAT | O_TRUNC, 0777);
103 if (!fp || !fp2) {
106 close(fp2);
111 write(fp2, &tabD_pow[i], sizeof(double));
114 close(fp2);
  /external/autotest/client/site_tests/firmware_TouchMTB/geometry/
two_farthest_clusters.py 52 fp1, fp2 = get_two_farthest_points(points)
59 (cluster1 if p.distance(fp1) <= p.distance(fp2) else cluster2).append(p)
  /external/skia/src/shaders/
SkColorFilterShader.cpp 66 sk_sp<GrFragmentProcessor> fp2(fFilter->asFragmentProcessor(args.fContext,
68 if (!fp2) {
72 sk_sp<GrFragmentProcessor> fpSeries[] = { std::move(fp1), std::move(fp2) };
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 76 float &fp2 = g<X3>(); // Not ambiguous. local
  /external/clang/test/CodeGen/
exprs.c 57 void f0(void (*fp)(void), void (*fp2)(void)) {
58 int x = fp - fp2;
big-atomic-ops.c 136 int* fp2(_Atomic(int*) *p) {
137 // CHECK: @fp2
  /external/clang/test/SemaCXX/
const-cast.cpp 65 f fp2 = const_cast<f>(fp1); // expected-error {{const_cast to 'f' (aka 'int (*)(int)'), which is not a reference, pointer-to-object, or pointer-to-data-member}} local
cxx1y-generic-lambdas.cpp 181 int (*fp2)(int) = [](auto b) -> int { return b; };
188 fp2(3);
202 int (*fp2)(int, char, double) = [](auto ... a) { vfun(a...); return 4; };
213 int (&fp2)(int) = [](auto a) { return a; }; // expected-error{{non-const lvalue}}
617 void (*fp2)(decltype(L), decltype(ts) ...) = L(L, ts...);
639 decltype(L(L, ts...)(L, ts...)) (*fp2)(decltype(L), decltype(ts) ...) = L(L, ts...);
640 fp2 = fp(L, ts...);
641 void (*fp3)(char) = fp2(L, ts...);
attr-unavailable.cpp 17 void (*fp2)(...) = bar; // expected-error{{'bar' is unavailable}}
  /external/icu/icu4c/source/test/intltest/
pptest.cpp 228 FieldPosition fp2(2);
229 if (fp != fp2)
  /bionic/tests/
fcntl_test.cpp 241 FILE* fp2 = fdopen(pipe2[0], "r"); local
242 ASSERT_TRUE(fp2 != NULL);
243 ASSERT_TRUE(fgets(buf2, sizeof(buf2), fp2) != NULL);
244 fclose(fp2);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p1-0x.cpp 69 float *fp2 = second_arg_pair(make_pair(ip, 17), make_pair(fp, 17), local
  /external/clang/test/SemaObjCXX/Inputs/
nullability-pragmas-1.h 77 float *fp2 = ip2; // expected-error{{cannot initialize a variable of type 'float *' with an lvalue of type 'int_ptr_2' (aka 'int *')}} local
  /external/clang/test/SemaTemplate/
instantiate-function-params.cpp 52 FuncPtr<R, A2, &unary_func<R, A2> > fp2; local
member-template-access-expr.cpp 63 float *fp2 = x1.f1<int>(3.14); // expected-warning {{implicit conversion from 'double' to 'int' changes value from 3.14 to 3}} local
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k/
fmoveml.s 47 fmovemx %a0@,%fp2-%fp4
  /external/python/cpython2/PC/VC6/
build_ssl.py 130 with open(f1, 'rb') as fp1, open(f2, 'rb') as fp2:
133 b2 = fp2.read(bufsize)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_posix.py 153 fp2 = open(test_support.TESTFN)
155 posix.dup2(fp1.fileno(), fp2.fileno())
158 fp2.close()
162 fp2 = posix.fdopen(fd, *args)
163 fp2.close()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
filecmp.py 65 with open(f1, 'rb') as fp1, open(f2, 'rb') as fp2:
68 b2 = fp2.read(bufsize)
posixpath.py 161 def sameopenfile(fp1, fp2):
164 s2 = os.fstat(fp2)
  /external/python/cpython2/Lib/
filecmp.py 66 with open(f1, 'rb') as fp1, open(f2, 'rb') as fp2:
69 b2 = fp2.read(bufsize)

Completed in 898 milliseconds

1 2 3