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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p10-0x.cpp 5 void (*fp)(int&) = &f; variable
  /external/compiler-rt/test/asan/TestCases/Posix/
freopen.cc 10 FILE *fp = fopen("/dev/null", "w"); local
11 assert(fp);
12 freopen(NULL, "a", fp);
13 fclose(fp);
  /external/llvm/test/MC/ARM/
directive-arch_extension-fp.s 12 .arch_extension fp
13 @ CHECK-V7: error: architectural extension 'fp' is not allowed for the current base architecture
14 @ CHECK-V7-NEXT: .arch_extension fp
17 .type fp,%function
18 fp: label
149 @ CHECK-V7: error: architectural extension 'fp' is not allowed for the current base architecture
  /external/skia/src/gpu/
GrProcessorAnalysis.cpp 26 const GrFragmentProcessor* fp = processors[i]; local
28 fp->hasConstantOutputForConstantInput(fLastKnownOutputColor, &fLastKnownOutputColor)) {
37 if (fIsOpaque && !fp->preservesOpaqueInput()) {
40 if (fCompatibleWithCoverageAsAlpha && !fp->compatibleWithCoverageAsAlpha()) {
43 if (fp->usesLocalCoords()) {
GrProcessorUnitTest.cpp 15 std::unique_ptr<GrFragmentProcessor> fp; local
17 fp = GrFragmentProcessorTestFactory::Make(data);
18 SkASSERT(fp);
19 } while (fp->numChildProcessors() != 0);
20 return fp;
  /external/skqp/src/gpu/
GrProcessorAnalysis.cpp 26 const GrFragmentProcessor* fp = processors[i]; local
28 fp->hasConstantOutputForConstantInput(fLastKnownOutputColor, &fLastKnownOutputColor)) {
37 if (fIsOpaque && !fp->preservesOpaqueInput()) {
40 if (fCompatibleWithCoverageAsAlpha && !fp->compatibleWithCoverageAsAlpha()) {
43 if (fp->usesLocalCoords()) {
GrProcessorUnitTest.cpp 15 std::unique_ptr<GrFragmentProcessor> fp; local
17 fp = GrFragmentProcessorTestFactory::Make(data);
18 SkASSERT(fp);
19 } while (fp->numChildProcessors() != 0);
20 return fp;
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
directive-arch_extension-fp.s 12 .arch_extension fp
13 @ CHECK-V7: error: architectural extension 'fp' is not allowed for the current base architecture
14 @ CHECK-V7-NEXT: .arch_extension fp
17 .type fp,%function
18 fp: label
149 @ CHECK-V7: error: architectural extension 'fp' is not allowed for the current base architecture
  /external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
frontend_io.c 28 FILE* fp = fopen(header, "w"); local
29 if (!fp) {
33 fprintf(fp, "#ifndef FRONTEND_STATE_MEMMAP_H_\n");
34 fprintf(fp, "#define FRONTEND_STATE_MEMMAP_H_\n");
35 fprintf(fp, "\n");
36 fprintf(fp, "#include \"frontend.h\"\n");
37 fprintf(fp, "\n");
38 fprintf(fp, "struct FrontendState* GetFrontendStateMemmap();\n");
39 fprintf(fp, "\n");
40 fprintf(fp, "#endif // FRONTEND_STATE_MEMMAP_H_\n")
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FieldPackerTest.java 46 FieldPacker fp = new FieldPacker(1024); local
47 fp.addBoolean(true);
48 fp.addF32(0.1f);
49 fp.addF32(new Float3());
50 fp.addF32(new Float4());
51 fp.addF32(new Float2());
52 fp.addF64(0.2);
53 fp.addF64(new Double2());
54 fp.addF64(new Double3());
55 fp.addF64(new Double4())
96 FieldPacker fp = new FieldPacker(256); local
118 FieldPacker fp = new FieldPacker(256); local
138 FieldPacker fp = new FieldPacker(256); local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/string/
memccpy.c 40 const unsigned char *fp = f; local
43 if ((*tp++ = *fp++) == uc)
  /bionic/tests/headers/posix/
stdio_h.c 73 FILE* fp; local
74 fp = stderr;
75 fp = stdin;
76 fp = stdout;
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
funopen.c 57 FILE *fp; local
72 if ((fp = __sfp()) == NULL)
74 fp->_flags = flags;
75 fp->_file = -1;
76 fp->_cookie = __UNCONST(cookie);
77 fp->_read = readfn;
78 fp->_write = writefn;
79 fp->_seek = seekfn;
80 fp->_close = closefn;
81 return (fp);
    [all...]
getchar.c 59 FILE *fp = stdin; local
62 FLOCKFILE(fp);
63 r = __sgetc(fp);
64 FUNLOCKFILE(fp);
putchar.c 62 FILE *fp = stdout; local
65 FLOCKFILE(fp);
66 r = __sputc(c, fp);
67 FUNLOCKFILE(fp);
  /external/clang/test/CodeGen/
2009-06-01-addrofknr.c 18 struct funcptr fp; local
20 fp.func = &func;
21 fp.func = func;
  /external/clang/test/CodeGenCXX/
attr-cleanup.cpp 9 void *fp __attribute__((cleanup(N::free))); local
  /external/clang/test/SemaCXX/
reinterpret-fn-obj-pedantic.cpp 6 fnptr fp = 0; local
7 void *vp = reinterpret_cast<void*>(fp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
  /external/honggfuzz/examples/badcode/targets/
badcode1.c 6 FILE * fp; local
9 if((fp = fopen(filename, "r")) == NULL) {
14 while(!feof(fp)) {
15 if(fgets(str, 128, fp)) {
20 fclose(fp);
  /external/perf_data_converter/src/quipper/
file_utils.h 23 FILE* fp = fopen(filename.c_str(), "wb"); local
24 if (!fp) return false;
29 contents.size(), fp),
32 fclose(fp);
  /external/python/cpython2/Doc/includes/
email-simple.py 9 fp = open(textfile, 'rb') variable
11 msg = MIMEText(fp.read())
12 fp.close()
  /external/selinux/libsepol/utils/
chkcon.c 19 FILE *fp; local
24 fp = fopen(argv[1], "r");
25 if (!fp) {
30 if (sepol_set_policydb_from_file(fp) < 0) {
35 fclose(fp);
  /external/skia/src/compute/hs/cl/intel/gen8/u32/
hs_intel_gen8_u32.c 91 FILE * fp = fopen("hs_target.bin","wb"); local
93 fwrite(&HS_TARGET_NAME.config,1,sizeof(HS_TARGET_NAME.config),fp);
103 fwrite(HS_TARGET_NAME.program,1,progsize,fp);
105 fclose(fp);
  /external/skia/src/compute/hs/cl/intel/gen8/u64/
hs_intel_gen8_u64.c 91 FILE * fp = fopen("hs_target.bin","wb"); local
93 fwrite(&HS_TARGET_NAME.config,1,sizeof(HS_TARGET_NAME.config),fp);
103 fwrite(HS_TARGET_NAME.program,1,progsize,fp);
105 fclose(fp);
  /external/skqp/src/compute/hs/cl/intel/gen8/u32/
hs_intel_gen8_u32.c 91 FILE * fp = fopen("hs_target.bin","wb"); local
93 fwrite(&HS_TARGET_NAME.config,1,sizeof(HS_TARGET_NAME.config),fp);
103 fwrite(HS_TARGET_NAME.program,1,progsize,fp);
105 fclose(fp);

Completed in 705 milliseconds

1 2 3 4 5 6 7 8 91011>>