Searched refs:fp (Results 1 - 25 of 1268) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests2.c5 extern fp(int, char*);
10 fp (12, Ext ? Ext : "<none>");
H A D2009-06-01-addrofknr.c18 struct funcptr fp; local
20 fp.func = &func;
21 fp.func = func;
H A Dtbaa-for-vptr.cpp20 void CallFoo(A *a, int (A::*fp)() const) {
22 (a->*fp)();
H A Dc11atomics-ios.c10 void testFloat(_Atomic(float) *fp) {
18 __c11_atomic_init(fp, 1.0f);
28 float f = *fp;
35 *fp = f;
41 void testComplexFloat(_Atomic(_Complex float) *fp) {
54 __c11_atomic_init(fp, 1.0f);
75 _Complex float f = *fp;
90 *fp = f;
97 void testStruct(_Atomic(S) *fp) {
113 __c11_atomic_init(fp, (
[all...]
/external/clang/test/Index/
H A Dwerror.c1 inline int *get_int_ptr(float *fp) { argument
2 return fp;
/external/clang/test/SemaCXX/
H A Dreinterpret-fn-obj-pedantic.cpp6 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/clang/test/Sema/
H A Dpointer-subtract-compat.c9 void f0(void (*fp)(void)) { argument
10 int x = fp - fp; // expected-warning{{arithmetic on pointers to the function type 'void (void)' is a GNU extension}}
H A Dformat-strings-c90.c7 void foo(char **sp, float *fp, int *ip) { argument
12 scanf("%a", fp);
13 scanf("%afoobar", fp);
23 scanf("%as", fp); /* expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
25 scanf("%aS", fp); /* expected-warning{{format specifies type 'wchar_t **' (aka 'int **') but the argument has type 'float *'}}
28 scanf("%a[abc]", fp); /* expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
H A D2007-10-01-BuildArrayRef.c16 const struct foo *fp; local
17 fp = &sfoo;
18 fp[0].bar = 1; // expected-error {{read-only variable is not assignable}}
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dscheck.c22 register const char * fp; local
34 fp = format;
36 while ((*tp++ = c = *fp++) != '\0') {
39 if (*fp == '%') {
40 *tp++ = *fp++;
44 if (*fp == '*')
45 ++fp;
46 while (is_digit(*fp))
47 *tp++ = *fp++;
48 if (*fp
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dscheck.c22 register const char * fp; local
34 fp = format;
36 while ((*tp++ = c = *fp++) != '\0') {
39 if (*fp == '%') {
40 *tp++ = *fp++;
44 if (*fp == '*')
45 ++fp;
46 while (is_digit(*fp))
47 *tp++ = *fp++;
48 if (*fp
[all...]
/external/chromium_org/third_party/icu/source/test/testdata/
H A DNumberFormatTestCases.txt15 fp: "0.####" 0.10005 "0.1" 0.1
16 fp: - 0.10006 "0.1001" 0.1001
18 fp: "#.####" 0.10005 "0.1" 0.1
25 fp: "@@@" 1.234567 "1.23" 1.23
26 fp: - 1234567 "1230000" 1230000
27 fp: - 0.012345 "0.0123" 0.0123
29 fp: "#,@@@" 1234567 "1,230,000" 1230000
32 fp: - 0.99999 "1.000" 1
36 fp: - 123456 "123500" 123500
37 fp
[all...]
/external/icu/icu4c/source/test/testdata/
H A DNumberFormatTestCases.txt15 fp: "0.####" 0.10005 "0.1" 0.1
16 fp: - 0.10006 "0.1001" 0.1001
18 fp: "#.####" 0.10005 "0.1" 0.1
25 fp: "@@@" 1.234567 "1.23" 1.23
26 fp: - 1234567 "1230000" 1230000
27 fp: - 0.012345 "0.0123" 0.0123
29 fp: "#,@@@" 1234567 "1,230,000" 1230000
32 fp: - 0.99999 "1.000" 1
36 fp: - 123456 "123500" 123500
37 fp
[all...]
/external/qemu/util/
H A Dhexdump.c18 void qemu_hexdump(const char *buf, FILE *fp, const char *prefix, size_t size) argument
24 fprintf(fp, "%s: %04x:", prefix, b);
27 fprintf(fp, " ");
29 fprintf(fp, " %02x", (unsigned char)buf[b]);
31 fprintf(fp, "\n");
35 fprintf(fp, "\n");
/external/bison/lib/
H A Dfseterr.h29 # define fseterr(fp) __fseterr (fp)
37 extern void fseterr (FILE *fp);
H A Dfpending.c27 __fpending (FILE *fp) argument
H A Dfopen-safer.c33 FILE *fp = fopen (file, mode); local
35 if (fp)
37 int fd = fileno (fp);
46 fclose (fp);
51 if (fclose (fp) != 0
52 || ! (fp = fdopen (f, mode)))
62 return fp;
/external/clang/test/Parser/
H A Dpointer_promotion.c7 struct foo *fp; local
12 if (cp < fp) {} // expected-warning {{comparison of distinct pointer types ('char *' and 'struct foo *')}}
13 if (fp < bp) {} // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}}
/external/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/oprofile/libutil/
H A Dop_lockfile.c24 FILE * fp; local
27 fp = fopen(file, "r");
28 if (fp == NULL)
31 if (fscanf(fp, "%d", &value) != 1) {
32 fclose(fp);
36 fclose(fp);
44 FILE * fp; local
61 fp = fopen(file, "w");
62 if (!fp)
65 fprintf(fp, "
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp10-0x.cpp5 void (*fp)(int&) = &f; variable
/external/valgrind/main/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/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/chromium_org/third_party/angle/src/compiler/translator/
H A DMMap.h18 fp(NULL),
21 if ((fp = fopen(fileName, "r")) == NULL)
23 char c = getc(fp);
27 c = getc(fp);
31 rewind(fp);
34 c = getc(fp);
37 c = getc(fp);
46 if (fp != NULL)
47 fclose(fp);
52 FILE *fp; member in class:TMMap
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_fragprog.c37 struct nv30_fragprog *fp = nv30->fragprog.program; local
43 if (unlikely(!fp->buffer)) {
44 fp->buffer = pipe_buffer_create(pipe->screen, 0, 0, fp->insn_len * 4);
47 map = pipe_buffer_map(pipe, fp->buffer, PIPE_TRANSFER_WRITE, &transfer);
49 memcpy(map, fp->insn, fp->insn_len * 4);
51 for (i = 0; i < fp->insn_len; i++)
52 *map++ = (fp->insn[i] >> 16) | (fp
65 struct nv30_fragprog *fp = nv30->fragprog.program; local
134 struct nv30_fragprog *fp = CALLOC_STRUCT(nv30_fragprog); local
146 struct nv30_fragprog *fp = hwcso; local
[all...]

Completed in 3466 milliseconds

1234567891011>>