Searched defs:fp (Results 26 - 50 of 659) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.invoke/
H A Dinvoke.fail.cpp36 int A_int_1::*fp = &A_int_1::data_; member in class:A_int_1
37 std::reference_wrapper<int A_int_1::*> r1(fp);
/external/ltrace/testsuite/ltrace.minor/
H A Dcount-record.c21 FILE* fp; local
26 fp = fopen ("system_calls.tmp", "w");
27 if (fp == NULL)
33 fwrite(s, sizeof(s), 1, fp);
34 fseek (fp, 0, SEEK_CUR);
35 fread(buffer, sizeof(s), 1, fp);
36 fclose(fp);
/external/selinux/libsepol/utils/
H A Dchkcon.c19 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/valgrind/memcheck/tests/
H A Dfprw.c12 float* fp = malloc(sizeof(float)); local
17 *fp += ( f > 0.1 ? 20.0 : 21.0 );
19 free(fp);
21 *fp += 30.0;
/external/bison/lib/
H A Dfopen.c78 FILE *fp; local
97 fp = fdopen (fd, mode);
98 if (fp == NULL)
104 return fp;
H A Dfprintf.c36 fprintf (FILE *fp, const char *format, ...) argument
51 fseterr (fp);
55 if (fwrite (output, 1, len, fp) < len)
72 fseterr (fp);
H A Dvfprintf.c36 vfprintf (FILE *fp, const char *format, va_list args) argument
48 fseterr (fp);
52 if (fwrite (output, 1, len, fp) < len)
69 fseterr (fp);
H A Dgetdelim.c23 optimizes away the lineptr == NULL || n == NULL || fp == NULL tests below. */
39 # define getc_maybe_unlocked(fp) getc(fp)
45 # define getc_maybe_unlocked(fp) getc(fp)
47 # define getc_maybe_unlocked(fp) getc_unlocked(fp)
57 getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp) argument
62 if (lineptr == NULL || n == NULL || fp == NULL)
68 flockfile (fp);
[all...]
/external/c-ares/
H A Dares__read_line.c33 int ares__read_line(FILE *fp, char **buf, size_t *bufsize) argument
51 if (!fgets(*buf + offset, bytestoread, fp))
52 return (offset != 0) ? 0 : (ferror(fp)) ? ARES_EFILE : ARES_EOF;
/external/clang/test/CXX/except/except.handle/
H A Dp16.cpp18 float *fp = 0; local
19 ptr = fp; // expected-error{{assigning to 'int *' from incompatible type 'float *'}}
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1inst.cpp14 void test_f(X0<float, int> xfi, X0<void, int> xvi, float *fp, void *vp, int i) { argument
15 xfi.f(fp, i);
/external/compiler-rt/test/msan/
H A Dgetline.cc23 FILE *fp = fopen(argv[1], "r"); local
24 assert(fp);
28 int n = getline(&line, &len, fp);
32 n = getline(&line, &len, fp);
37 fclose(fp);
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dopen_memstream.cc32 FILE *fp = open_memstream(&buf, &buf_len); local
33 fprintf(fp, "hello");
35 fflush(fp);
45 fprintf(fp, "%s", p);
49 fflush(fp);
56 fclose(fp);
/external/dhcpcd-6.8.2/compat/
H A Dgetline.c42 FILE * __restrict fp)
56 if (feof(fp))
68 if (fgets(p, BUFSIZ, fp) == NULL)
41 getline(char ** __restrict buf, size_t * __restrict buflen, FILE * __restrict fp) argument
/external/elfutils/tests/
H A Darsymtest.c31 FILE *fp; local
48 fp = fopen (argv[2], "w");
49 if (fp == NULL)
114 fprintf (fp, "%s in %s\n", arsym[narsym].as_name, arhdr->ar_name);
133 fclose (fp);
/external/google-breakpad/src/client/linux/dump_writer_common/
H A Ducontext_reader.cc52 const struct _libc_fpstate* fp) {
77 out->float_save.control_word = fp->cw;
78 out->float_save.status_word = fp->sw;
79 out->float_save.tag_word = fp->tag;
80 out->float_save.error_offset = fp->ipoff;
81 out->float_save.error_selector = fp->cssel;
82 out->float_save.data_offset = fp->dataoff;
83 out->float_save.data_selector = fp->datasel;
86 my_memcpy(out->float_save.register_area, fp->_st, 10 * 8);
51 FillCPUContext(RawContextCPU *out, const ucontext *uc, const struct _libc_fpstate* fp) argument
/external/icu/icu4c/source/i18n/
H A Dufieldpositer.cpp44 FieldPosition fp; local
46 if (((FieldPositionIterator*)fpositer)->next(fp)) {
47 field = fp.getField();
49 *beginIndex = fp.getBeginIndex();
52 *endIndex = fp.getEndIndex();
/external/libcxx/test/std/depr/depr.c.headers/
H A Dwchar_h.pass.cpp41 ::FILE* fp = 0; local
49 static_assert((std::is_same<decltype(fwprintf(fp, L"")), int>::value), "");
50 static_assert((std::is_same<decltype(fwscanf(fp, L"")), int>::value), "");
53 static_assert((std::is_same<decltype(vfwprintf(fp, L"", va)), int>::value), "");
54 static_assert((std::is_same<decltype(vfwscanf(fp, L"", va)), int>::value), "");
61 static_assert((std::is_same<decltype(fgetwc(fp)), wint_t>::value), "");
62 static_assert((std::is_same<decltype(fgetws(ws, 0, fp)), wchar_t*>::value), "");
63 static_assert((std::is_same<decltype(fputwc(L' ', fp)), wint_t>::value), "");
64 static_assert((std::is_same<decltype(fputws(L"", fp)), int>::value), "");
65 static_assert((std::is_same<decltype(fwide(fp,
[all...]
/external/libcxx/test/std/localization/locales/locale.global.templates/
H A Duse_facet.pass.cpp42 const my_facet* fp = 0; local
47 fp = &f;
48 assert(fp->im_alive);
/external/libcxx/test/std/strings/c.strings/
H A Dcwchar.pass.cpp37 ::FILE* fp = 0; local
45 static_assert((std::is_same<decltype(std::fwprintf(fp, L"")), int>::value), "");
46 static_assert((std::is_same<decltype(std::fwscanf(fp, L"")), int>::value), "");
49 static_assert((std::is_same<decltype(std::vfwprintf(fp, L"", va)), int>::value), "");
50 static_assert((std::is_same<decltype(std::vfwscanf(fp, L"", va)), int>::value), "");
53 static_assert((std::is_same<decltype(std::fgetwc(fp)), std::wint_t>::value), "");
54 static_assert((std::is_same<decltype(std::fgetws(ws, 0, fp)), wchar_t*>::value), "");
55 static_assert((std::is_same<decltype(std::fputwc(L' ', fp)), std::wint_t>::value), "");
56 static_assert((std::is_same<decltype(std::fputws(L"", fp)), int>::value), "");
57 static_assert((std::is_same<decltype(std::fwide(fp,
[all...]
/external/libpcap/
H A Detherent.c97 pcap_next_etherent(FILE *fp) argument
106 c = skip_space(fp);
113 c = skip_line(fp);
120 c = getc(fp);
124 c = getc(fp);
129 c = getc(fp);
136 c = skip_line(fp);
139 c = skip_space(fp);
146 c = skip_line(fp);
156 c = getc(fp);
[all...]
/external/selinux/libsepol/tests/
H A Ddebug.c27 void print_ebitmap(ebitmap_t * bitmap, FILE * fp) argument
31 fprintf(fp, "%d", ebitmap_get_bit(bitmap, i));
33 fprintf(fp, "\n");
37 void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp) argument
44 fprintf(fp, "%s ", p->p_bool_val_to_name[cur->bool - 1]);
47 fprintf(fp, "! ");
50 fprintf(fp, "|| ");
53 fprintf(fp, "&& ");
56 fprintf(fp, "^ ");
59 fprintf(fp, "
[all...]
/external/strace/linux/sparc/
H A Darch_sigreturn.c4 long fp = sparc_regs.u_regs[U_REG_FP] + sizeof(struct sparc_stackf); local
13 if (umove(tcp, fp, &frame) < 0) {
14 tprintf("{mask=%#lx}", fp);
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Daudio_loop.cc23 FILE* fp = fopen(file_name.c_str(), "rb"); local
24 if (!fp) return false;
29 max_loop_length_samples, fp);
30 fclose(fp);
/external/autotest/client/tests/monotonic_time/src/
H A Dlogging.c20 void set_log_file(FILE *fp) argument
22 log_fp = fp;

Completed in 719 milliseconds

1234567891011>>