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

1 2 3

  /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}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p6.cpp 4 int (*fp1)(int) = [](int x) { return x + 1; };
15 int (*fp1)(int) = [=](int x) { return x + 1; }; // expected-error{{no viable conversion}}
  /external/clang/test/CXX/over/over.over/
p4.cpp 8 int (*fp1)(int) = &f0;
19 float (*fp1)(float) = f0;
  /external/clang/test/CodeGenCXX/
convert-to-fptr.cpp 12 typedef int (*fp1)(int); typedef
17 operator fp1() { return f1; }
  /external/skia/src/gpu/effects/
GrMixerEffect.fp 11 in fragmentProcessor? fp1;
17 const std::unique_ptr<GrFragmentProcessor>& fp1) {
19 if (fp1) {
20 flags &= ProcessorOptimizationFlags(fp1.get());
39 @optimizationFlags { OptFlags(fp0, fp1) }
43 half4 in1 = (fp1 != null) ? process(fp1, sk_InColor) : sk_InColor;
GrMixerEffect.h 19 const std::unique_ptr<GrFragmentProcessor>& fp1) {
21 if (fp1) {
22 flags &= ProcessorOptimizationFlags(fp1.get());
40 fp1,
43 new GrMixerEffect(std::move(fp0), std::move(fp1), weight));
52 fp1,
54 : INHERITED(kGrMixerEffect_ClassID, (OptimizationFlags)OptFlags(fp0, fp1))
59 if (fp1) {
61 this->registerChildProcessor(std::move(fp1));
  /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/clang/test/Misc/
message-length.c 14 int (*fp1)(int, float, short, float) = f;
  /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);
  /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/tensorflow/tensorflow/core/platform/
fingerprint.h 65 inline uint64 FingerprintCat64(const uint64 fp1, const uint64 fp2) {
67 uint64 result = fp1 ^ kMul;
  /external/skia/src/shaders/
SkColorFilterShader.cpp 61 auto fp1 = as_SB(fShader)->asFragmentProcessor(args); local
62 if (!fp1) {
68 return fp1;
71 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/PCH/
namespaces.cpp 15 N2::t1 *fp1 = &float_val;
  /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/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/python/cpython3/Lib/
genericpath.py 103 def sameopenfile(fp1, fp2):
105 s1 = os.fstat(fp1)
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 65 int (*fp1)(int, __typeof__(e2)) = f1;
  /external/lz4/examples/
blockStreaming_doubleBuffer.c 115 int compare(FILE* fp0, FILE* fp1)
123 const size_t r1 = read_bin(fp1, b1, sizeof(b1));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
ftpmirror.py 205 fp1 = LoggingFile(fp, 1024, sys.stdout)
207 fp1 = fp
211 fp1.write, 8*1024)
217 if fp1 != fp:
218 fp1.close()
  /external/libxaac/decoder/
ixheaacd_qmf_dec.c 700 WORD16 *fp1; local
745 fp1 = &filter_states[0];
746 fp2 = fp1 + no_synthesis_channels;
750 fp1 = qmf_bank->fp1_syn;
853 sbr_qmf_syn_winadd(fp1, fp2, filter_coeff, &time_out[ch_fac * p1], 2,
861 fptemp = fp1;
862 fp1 = fp2;
    [all...]

Completed in 697 milliseconds

1 2 3