Searched refs:fp (Results 1 - 25 of 693) 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.c17 struct funcptr fp; local
19 fp.func = &func;
20 fp.func = func;
/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 {{ assignment of read-only member}}
/external/icu4c/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/icu4c/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/libppp/src/
H A Dfsm.c129 struct fsm *fp = (struct fsm *)v; local
131 log_Printf(fp->LogLevel, "%s: Stopped timer expired\n", fp->link->name);
132 if (fp->OpenTimer.state == TIMER_RUNNING) {
134 fp->link->name, fp->name);
135 timer_Stop(&fp->OpenTimer);
137 if (fp->state == ST_STOPPED)
138 fsm2initial(fp);
142 fsm_Init(struct fsm *fp, cons argument
169 NewState(struct fsm *fp, int new) argument
188 fsm_Output(struct fsm *fp, u_int code, u_int id, u_char *ptr, unsigned count, int mtype) argument
229 struct fsm *fp = (struct fsm *)v; local
255 fsm_Open(struct fsm *fp) argument
293 fsm_Up(struct fsm *fp) argument
314 fsm_Down(struct fsm *fp) argument
346 fsm_Close(struct fsm *fp) argument
383 FsmSendConfigReq(struct fsm *fp) argument
398 FsmSendTerminateReq(struct fsm *fp) argument
412 struct fsm *fp = (struct fsm *)v; local
454 FsmInitRestartCounter(struct fsm *fp, int what) argument
466 FsmRecvConfigReq(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
576 (*fp->parent->LayerUp)(fp->parent->object, fp); local
609 FsmRecvConfigAck(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
652 (*fp->parent->LayerUp)(fp->parent->object, fp); local
672 FsmRecvConfigNak(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
738 FsmRecvTermReq(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
774 FsmRecvTermAck(struct fsm *fp, struct fsmheader *lhp __unused, struct mbuf *bp) argument
802 FsmRecvConfigRej(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
877 FsmRecvProtoRej(struct fsm *fp, struct fsmheader *lhp __unused, struct mbuf *bp) argument
949 FsmRecvEchoReq(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
977 FsmRecvEchoRep(struct fsm *fp, struct fsmheader *lhp __unused, struct mbuf *bp) argument
993 FsmRecvIdent(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
1022 FsmRecvResetReq(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
1037 FsmRecvResetAck(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp) argument
1044 fsm_Input(struct fsm *fp, struct mbuf *bp) argument
1098 fsm_NullRecvResetReq(struct fsm *fp) argument
1106 fsm_NullRecvResetAck(struct fsm *fp, u_char id __unused) argument
1113 fsm_Reopen(struct fsm *fp) argument
1125 fsm2initial(struct fsm *fp) argument
[all...]
/external/chromium/testing/gmock/scripts/generator/cpp/
H A Dutils.py33 fp = open(filename)
35 return fp.read()
37 fp.close()
/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/v8/src/arm/
H A Dframes-arm.cc38 Address ExitFrame::ComputeStackPointer(Address fp) { argument
39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
/external/v8/src/ia32/
H A Dframes-ia32.cc38 Address ExitFrame::ComputeStackPointer(Address fp) { argument
39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
/external/v8/src/mips/
H A Dframes-mips.cc40 Address ExitFrame::ComputeStackPointer(Address fp) { argument
41 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
/external/v8/src/x64/
H A Dframes-x64.cc38 Address ExitFrame::ComputeStackPointer(Address fp) { argument
39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
/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...]
H A Dop_fileio.h55 * @param fp file pointer
61 void op_close_file(FILE * fp);
65 * @param fp file pointer
72 void op_write_file(FILE * fp, void const * buf, size_t size);
76 * @param fp file pointer
84 void op_write_u32(FILE * fp, u32 val);
88 * @param fp file pointer
96 void op_write_u64(FILE * fp, u64 val);
100 * @param fp file pointer
106 void op_write_u8(FILE * fp, u
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp10-0x.cpp4 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/bison/lib/
H A Dfopen-safer.c39 FILE *fp = fopen (file, mode); local
41 if (fp)
43 int fd = fileno (fp);
52 fclose (fp);
57 if (fclose (fp) != 0
58 || ! (fp = fdopen (f, mode)))
68 return fp;
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
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/ppp/pppd/plugins/rp-pppoe/
H A Ddebug.c28 * fp -- file to dump to
34 * Dumps buffer to fp in an easy-to-read format
37 dumpHex(FILE *fp, unsigned char const *buf, int len) argument
42 if (!fp) return;
46 fprintf(fp, "(PAP Authentication Frame -- Contents not dumped)\n");
53 fprintf(fp, "%02x ", (unsigned) buf[i]);
55 fprintf(fp, " ");
58 fprintf(fp, " ");
62 fprintf(fp, "%c", buf[i]);
64 fprintf(fp, "
86 dumpPacket(FILE *fp, PPPoEPacket *packet, char const *dir) argument
[all...]
/external/blktrace/btt/
H A Dq2d.c69 void q2d_display_header(FILE *fp) argument
71 fprintf(fp, "%5s ", "<.005");
72 fprintf(fp, "%5s ", "<.010");
73 fprintf(fp, "%5s ", "<.025");
74 fprintf(fp, "%5s ", "<.050");
75 fprintf(fp, "%5s ", "<.075");
76 fprintf(fp, "%5s ", "<.100");
77 fprintf(fp, "%5s ", "<.250");
78 fprintf(fp, "%5s ", "<.500");
79 fprintf(fp, "
83 q2d_display_dashes(FILE *fp) argument
92 q2d_display(FILE *fp, void *priv) argument
[all...]

Completed in 2106 milliseconds

1234567891011>>