HomeSort by relevance Sort by last modified time
    Searched defs:fp (Results 1 - 25 of 1387) 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/
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;
GrProcessorAnalysis.cpp 29 const GrFragmentProcessor* fp = processors[i]; local
31 fp->hasConstantOutputForConstantInput(fLastKnownOutputColor, &fLastKnownOutputColor)) {
40 if (fIsOpaque && !fp->preservesOpaqueInput()) {
43 if (fCompatibleWithCoverageAsAlpha && !fp->compatibleWithCoverageAsAlpha()) {
46 if (fp->usesLocalCoords()) {
  /external/skqp/src/gpu/
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/syslinux/com32/lib/sys/
fstat.c 40 struct file_info *fp = &__file_info[fd]; local
42 if (fd >= NFILES || !fp->iop) {
47 if (fp->iop->flags & __DEV_FILE) {
48 if (fp->i.fd.size == (uint32_t) - 1) {
55 buf->st_size = fp->i.fd.size;
isatty.c 44 struct file_info *fp = &__file_info[fd]; local
46 if (fd >= NFILES || !fp->iop) {
52 return (fp->iop->flags & __DEV_TTY);
read.c 43 struct file_info *fp = &__file_info[fd]; local
45 if (fd >= NFILES || !fp->iop) {
50 return fp->iop->read(fp, buf, count);
screensize.c 7 struct file_info *fp = &__file_info[fd]; local
9 if (fd >= NFILES || !fp->iop) {
14 *rows = fp->o.rows;
15 *cols = fp->o.cols;
write.c 43 struct file_info *fp = &__file_info[fd]; local
45 if (fd >= NFILES || !fp->oop) {
50 return fp->oop->write(fp, buf, count);
  /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-netbsd/lib/libc/string/
memccpy.c 53 const unsigned char *fp = f; local
56 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/minijail/
parse_seccomp_policy.cc 26 struct sock_fprog fp; local
27 int res = compile_filter(argv[1], f, &fp, 0, 0);
31 dump_bpf_prog(&fp);
33 free(fp.filter);
  /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);

Completed in 1402 milliseconds

1 2 3 4 5 6 7 8 91011>>