HomeSort by relevance Sort by last modified time
    Searched defs:fp1 (Results 1 - 25 of 26) sorted by null

1 2

  /external/clang/test/FixIt/
fixit-nullability-declspec.cpp 8 _Nullable int (*fp1)(int); // expected-error{{nullability specifier '_Nullable' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the function pointer?}} variable
  /external/clang/test/SemaCXX/
nullability-declspec.cpp 6 _Nullable int (*fp1)(int); // expected-error{{nullability specifier '_Nullable' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the function pointer?}} variable
const-cast.cpp 63 f fp1 = 0; local
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}}
overload-call.cpp 22 float* fp1 = g(iv, iv, 0); local
159 float* fp1 = multiparm(iv, iv, iv); local
  /external/clang/test/CodeGenCXX/
convert-to-fptr.cpp 12 typedef int (*fp1)(int); typedef
17 operator fp1() { return f1; }
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p9-0x.cpp 33 float *fp1 = first_arg<float *, double*, int*>(0, 0, 0); local
42 float *fp1 = first_arg<float *, double*, int*>(0, 0, 0); local
  /external/ltp/testcases/misc/math/float/exp_log/
genfrexp.c 44 int fp, fp1; local
58 fp1 = open(F_name1, O_RDWR | O_CREAT | O_TRUNC, 0777);
59 if (!fp || !fp1) {
62 close(fp1);
67 write(fp1, &tabRI[i], sizeof(int));
71 close(fp1);
genmodf.c 52 int fp, fp1; local
72 fp1 = open(F_name1, O_RDWR | O_CREAT | O_TRUNC, 0777);
73 if (!fp || !fp1) {
76 close(fp1);
81 write(fp1, &tabRI[i], sizeof(double));
85 close(fp1);
  /external/skia/src/shaders/
SkColorFilterShader.cpp 59 auto fp1 = as_SB(fShader)->asFragmentProcessor(args); local
60 if (!fp1) {
66 return fp1;
69 std::unique_ptr<GrFragmentProcessor> fpSeries[] = { std::move(fp1), std::move(fp2) };
  /external/skqp/src/shaders/
SkColorFilterShader.cpp 59 auto fp1 = as_SB(fShader)->asFragmentProcessor(args); local
60 if (!fp1) {
66 return fp1;
69 std::unique_ptr<GrFragmentProcessor> fpSeries[] = { std::move(fp1), std::move(fp2) };
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p1-0x.cpp 68 float *fp1 = second_arg_pair(make_pair(ip, 17), make_pair(fp, 17)); local
  /external/ltp/testcases/misc/math/float/power/
genfmod.c 96 int fp, fp1; local
110 fp1 = open(F_name1, O_RDWR | O_CREAT | O_TRUNC, 0777);
111 if (!fp || !fp1) {
114 close(fp1);
119 write(fp1, &tabD1[i], sizeof(double));
122 close(fp1);
  /prebuilts/go/darwin-x86/test/
blank.go 152 fp = fp1
155 func fp1(x, y int) { func
157 println("invalid fp1 call:", x, y)
158 panic("bad fp1")
  /prebuilts/go/linux-x86/test/
blank.go 152 fp = fp1
155 func fp1(x, y int) { func
157 println("invalid fp1 call:", x, y)
158 panic("bad fp1")
  /bionic/tests/
fcntl_test.cpp 237 FILE* fp1 = fdopen(pipe1[0], "r"); local
238 ASSERT_TRUE(fp1 != NULL);
239 ASSERT_TRUE(fgets(buf1, sizeof(buf1), fp1) != NULL);
240 fclose(fp1);
  /external/clang/test/SemaTemplate/
instantiate-function-params.cpp 51 FuncPtr<R, A1, &unary_func<R, A1> > fp1; local
member-template-access-expr.cpp 62 float *fp1 = x1.f1<>(17); local
  /external/ltp/testcases/kernel/syscalls/copy_file_range/
copy_file_range01.c 67 FILE *fp1, *fp2; local
71 fp1 = SAFE_FOPEN(fname1, "r");
72 if (off1 && fseek(fp1, *off1, SEEK_SET))
80 ch1 = getc(fp1);
85 SAFE_FCLOSE(fp1);
  /external/libxaac/decoder/armv7/
ixheaacd_qmf_dec_armv7.c 100 WORD16 *fp1, *fp2, *tmp; local
147 fp1 = qmf_bank->anal_filter_states;
153 fp1 = qmf_bank->fp1_anal;
163 ixheaacd_sbr_qmfanal32_winadds(fp1, fp2, filter_1, filter_2,
167 ixheaacd_sbr_qmfanal32_winadds_eld(fp1, fp2, filter_1, filter_2,
179 tmp = fp1;
180 fp1 = fp2;
224 qmf_bank->fp1_anal = fp1;
  /external/libxaac/decoder/
ixheaacd_qmf_dec.c 698 WORD16 *fp1; local
743 fp1 = &filter_states[0];
744 fp2 = fp1 + no_synthesis_channels;
748 fp1 = qmf_bank->fp1_syn;
851 sbr_qmf_syn_winadd(fp1, fp2, filter_coeff, &time_out[ch_fac * p1], 2,
859 fptemp = fp1;
860 fp1 = fp2;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberRegressionTests.java 107 FieldPosition fp1 = new FieldPosition(0); local
110 logln(" format(d) = '" + df.format(d, sBuf1, fp1) + "'");
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberRegressionTests.java 104 FieldPosition fp1 = new FieldPosition(0); local
107 logln(" format(d) = '" + df.format(d, sBuf1, fp1) + "'");
    [all...]
  /external/libxaac/decoder/armv8/
ixheaacd_qmf_dec_armv8.c 343 WORD16 *fp1, *fp2, *tmp; local
390 fp1 = qmf_bank->anal_filter_states;
396 fp1 = qmf_bank->fp1_anal;
406 ixheaacd_sbr_qmfanal32_winadds(fp1, fp2, filter_1, filter_2,
412 ixheaacd_sbr_qmfanal32_winadd_eld(fp1, fp2, filter_1, filter_2,
423 tmp = fp1;
424 fp1 = fp2;
468 qmf_bank->fp1_anal = fp1;
    [all...]
  /external/libxaac/decoder/generic/
ixheaacd_qmf_dec_generic.c 580 WORD16 *fp1, *fp2, *tmp; local
627 fp1 = qmf_bank->anal_filter_states;
633 fp1 = qmf_bank->fp1_anal;
643 ixheaacd_sbr_qmfanal32_winadd(fp1, fp2, filter_1, filter_2,
646 ixheaacd_sbr_qmfanal32_winadd_eld(fp1, fp2, filter_1, filter_2,
657 tmp = fp1;
658 fp1 = fp2;
702 qmf_bank->fp1_anal = fp1;
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/saxon/Saxon-HE/9.8.0-5/
Saxon-HE-9.8.0-5.jar 

Completed in 862 milliseconds

1 2