Searched defs:fp (Results 226 - 250 of 704) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/
H A Dsampler.h25 RegisterState() : pc(NULL), sp(NULL), fp(NULL) {}
28 Address fp; // Frame pointer. member in struct:v8::internal::RegisterState
/external/chromium_org/v8/src/x64/
H A Dframes-x64.h106 return Memory::Object_at(fp() + offset);
110 inline void StackHandler::SetFp(Address slot, Address fp) { argument
115 Memory::Address_at(slot) = fp;
/external/chromium_org/v8/test/cctest/
H A Dtest-log-stack-tracer.cc89 int32_t low_bits = reinterpret_cast<int32_t>(calling_frame->fp());
92 uint64_t fp = reinterpret_cast<uint64_t>(calling_frame->fp()); local
93 int32_t low_bits = static_cast<int32_t>(fp & 0xffffffff);
94 int32_t high_bits = static_cast<int32_t>(fp >> 32);
124 " fp = new FPGrabber();"
125 " %s(fp.low_bits, fp.high_bits);"
237 Address fp; local
239 fp
[all...]
/external/clang/test/CodeGen/
H A Dexprs.c57 void f0(void (*fp)(void), void (*fp2)(void)) { argument
58 int x = fp - fp2;
73 void (*fp)(void) = f2;
75 ++fp;
76 fp++;
77 --fp;
78 fp--;
79 return (unsigned) fp;
142 // Make sure negate of fp uses -0.0 for proper -0 handling.
/external/clang/test/Sema/
H A Dformat-strings-scanf.c96 void test_alloc_extension(char **sp, wchar_t **lsp, float *fp) { argument
114 scanf("%ms", fp); // expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
115 scanf("%mS", fp); // expected-warning-re{{format specifies type 'wchar_t **' (aka '{{[^']+}}') but the argument has type 'float *'}}
116 scanf("%mc", fp); // expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
117 scanf("%mC", fp); // expected-warning-re{{format specifies type 'wchar_t **' (aka '{{[^']+}}') but the argument has type 'float *'}}
118 scanf("%m[abc]", fp); // expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
/external/clang/test/SemaCXX/
H A Dconst-cast.cpp36 f fp = 0; local
38 f *fpp = const_cast<f*>(&fp);
/external/clang/test/SemaTemplate/
H A Ddependent-base-classes.cpp78 type *foo(float *fp) { return fp; } argument
H A Dvirtual-member-functions.cpp48 virtual T *f(float *fp);
52 T *HasOutOfLineKey<T>::f(float *fp) { argument
53 return fp; // expected-error{{cannot initialize return object of type 'int *' with an lvalue of type 'float *'}}
/external/e2fsprogs/intl/
H A Dlocalcharset.c118 FILE *fp; local
138 if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL)
153 c = getc (fp);
162 c = getc (fp);
168 ungetc (c, fp);
169 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
192 fclose (fp);
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dlmpar.h21 Scalar fp; local
64 fp = dxnorm - delta;
65 if (fp <= Scalar(0.1) * delta) {
88 parl = fp / delta / temp / temp;
121 temp = fp;
122 fp = dxnorm - delta;
127 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
142 parc = fp / delta / temp / temp;
145 if (fp >
179 Scalar fp; local
[all...]
/external/giflib/
H A Dgifalloc.c87 FILE * fp)
94 (void)fprintf(fp, "%3d: %02x %02x %02x ", i + j,
99 (void)fprintf(fp, "\n");
86 DumpColorMap(ColorMapObject *Object, FILE * fp) argument
/external/gtest/test/
H A Dgtest-filepath_test.cc596 FilePath fp; local
597 EXPECT_EQ("", fp.string());
601 const FilePath fp("spicy");
602 EXPECT_EQ("spicy", fp.string());
604 const FilePath fp_copy(fp);
609 const FilePath fp(std::string("cider"));
610 EXPECT_EQ("cider", fp.string());
/external/icu/icu4c/source/extra/uconv/
H A Duwmsg.c120 /* Format a message and print it's output to fp */
121 U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... ) argument
153 uprint(result, resultLength, fp, &err);
155 uprint(msg,msgLen, fp, &err);
173 uprint(msg,msgLen, fp, &err);
177 uprint(result, resultLength, fp, &err);
/external/iproute2/ip/
H A Dipaddrlabel.c59 FILE *fp = (FILE*)arg; local
75 fprintf(fp, "Deleted ");
78 fprintf(fp, "prefix %s/%u ",
87 fprintf(fp, "dev %s ", ll_index_to_name(ifal->ifal_index));
92 fprintf(fp, "label %d ", label);
95 fprintf(fp, "\n");
96 fflush(fp);
H A Diplink_vlan.c160 static void vlan_print_flags(FILE *fp, __u32 flags) argument
162 fprintf(fp, "<");
165 fprintf(fp, #f "%s", flags ? "," : ""); \
172 fprintf(fp, "%x", flags);
173 fprintf(fp, "> ");
H A Dipmroute.c56 FILE *fp = fopen("/proc/net/ip_mr_vif", "r"); local
58 if (!fp)
61 if (!fgets(buf, sizeof(buf), fp)) {
62 fclose(fp);
65 while (fgets(buf, sizeof(buf), fp)) {
77 fclose(fp);
83 FILE *fp = fopen("/proc/net/ip_mr_cache", "r"); local
85 if (!fp)
88 if (!fgets(buf, sizeof(buf), fp)) {
89 fclose(fp);
[all...]
/external/iproute2/tc/
H A Dtc_core.c186 FILE *fp; local
191 fp = fopen("/proc/net/psched", "r");
192 if (fp == NULL)
195 if (fscanf(fp, "%08x%08x%08x", &t2us, &us2t, &clock_res) != 3) {
196 fclose(fp);
199 fclose(fp);
H A Dtc_filter.c188 FILE *fp = (FILE*)arg; local
214 fprintf(fp, "deleted ");
216 fprintf(fp, "filter ");
218 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex));
222 fprintf(fp, "root ");
225 fprintf(fp, "parent %s ", abuf);
234 fprintf(fp, "protocol %s ",
240 fprintf(fp, "pref %u ", prio);
243 fprintf(fp, "%s ", rta_getattr_str(tb[TCA_KIND]));
247 q->print_fopt(q, fp, t
[all...]
H A Dtc_qdisc.c201 FILE *fp = (FILE*)arg; local
230 fprintf(fp, "deleted ");
232 fprintf(fp, "qdisc %s %x: ", rta_getattr_str(tb[TCA_KIND]), t->tcm_handle>>16);
234 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex));
236 fprintf(fp, "root ");
239 fprintf(fp, "parent %s ", abuf);
242 fprintf(fp, "refcnt %d ", t->tcm_info);
253 q->print_qopt(q, fp, tb[TCA_OPTIONS]);
255 fprintf(fp, "[cannot parse qdisc parameters]");
257 fprintf(fp, "\
[all...]
/external/ipsec-tools/src/racoon/
H A Dsession.c124 FILE *fp; local
165 fp = fopen(pid_file, "w");
166 if (fp) {
167 if (fchmod(fileno(fp),
170 fclose(fp);
173 fprintf(fp, "%ld\n", (long)racoon_pid);
174 fclose(fp);
/external/libcxxabi/src/Unwind/
H A DCompactUnwinder.hpp679 uint64_t fp = registers.getFP(); local
680 // fp points to old fp
681 registers.setFP(addressSpace.get64(fp));
682 // old sp is fp less saved fp and lr
683 registers.setSP(fp + 16);
685 registers.setIP(addressSpace.get64(fp + 8));
/external/libedit/src/
H A Deln.c233 FILE *fp = va_arg(ap, FILE *); local
234 ret = el_wset(el, op, what, fp);
/external/libopus/celt/
H A Dmdct.c190 const kiss_fft_scalar * OPUS_RESTRICT fp = f2; local
198 yr = S_MUL(fp[1],t[(N4-i)<<shift]) + S_MUL(fp[0],t[i<<shift]);
199 yi = S_MUL(fp[0],t[(N4-i)<<shift]) - S_MUL(fp[1],t[i<<shift]);
203 fp += 2;
/external/libpcap/
H A Dpcap-can-linux.c295 can_setfilter_linux(pcap_t *p, struct bpf_program *fp) argument
H A Dpcap-enet.c52 readloop(int cnt, int if_fd, struct bpf_program *fp, printfunc printit) argument
62 register struct bpf_insn *fcode = fp->bf_insns;

Completed in 4299 milliseconds

1234567891011>>