HomeSort by relevance Sort by last modified time
    Searched refs:fp (Results 376 - 400 of 2100) sorted by null

<<11121314151617181920>>

  /dalvik/vm/mterp/portable/
stubdefs.cpp 17 * InterpSave's pc and fp must be valid when breaking out to a
24 self->interpSave.curFrame = fp;
41 dvmCheckBefore(pc, fp, self); \
  /dalvik/vm/mterp/x86/
binflop.S 4 * For: add-fp, sub-fp, mul-fp, div-fp
9 $load (rFP,%eax,4) # vCC to fp stack
binflop2addr.S 4 * For: add-fp, sub-fp, mul-fp, div-fp
10 $load (rFP,%ecx,4) # vAA to fp stack
  /external/chromium_org/third_party/icu/source/test/intltest/
pptest.cpp 107 FieldPosition fp( 7 );
109 if (fp.getField() == 7) {
110 logln("FP constructor(int) and getField tested.");
112 errln("*** FP constructor(int) or getField");
115 FieldPosition fpc(fp);
117 logln("FP Constructor(FP&) passed");
119 errln("*** FP Constructor(FP&)");
124 errln("*** FP getField or heap constr.")
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_prn.c 65 int RSA_print_fp(FILE *fp, const RSA *x, int off)
75 BIO_set_fp(b,fp,BIO_NOCLOSE);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
basic.cpp 25 void test_f2(int *ip, float *fp) {
28 f2(ip, fp); // expected-error{{no matching function}}
  /external/clang/test/Misc/
macro-backtrace.c 17 void f(int *ip, float *fp) {
18 if (M12(ip, fp)) { }
22 // CHECK-LIMIT: if (M12(ip, fp)) { }
  /external/clang/test/Sema/
attr-unavailable-message.c 18 void (*fp)() = &bar; // expected-error {{'bar' is unavailable}}
31 void (*fp)() = &bar;
  /external/icu4c/test/intltest/
pptest.cpp 107 FieldPosition fp( 7 );
109 if (fp.getField() == 7) {
110 logln("FP constructor(int) and getField tested.");
112 errln("*** FP constructor(int) or getField");
115 FieldPosition fpc(fp);
117 logln("FP Constructor(FP&) passed");
119 errln("*** FP Constructor(FP&)");
124 errln("*** FP getField or heap constr.")
    [all...]
  /external/kernel-headers/original/linux/
filter.h 160 static inline unsigned int sk_filter_len(const struct sk_filter *fp)
162 return fp->len * sizeof(struct sock_filter) + sizeof(*fp);
170 extern void sk_unattached_filter_destroy(struct sk_filter *fp);
176 extern void bpf_jit_compile(struct sk_filter *fp);
177 extern void bpf_jit_free(struct sk_filter *fp);
180 static inline void bpf_jit_compile(struct sk_filter *fp)
183 static inline void bpf_jit_free(struct sk_filter *fp)
  /external/openssl/crypto/rsa/
rsa_prn.c 65 int RSA_print_fp(FILE *fp, const RSA *x, int off)
75 BIO_set_fp(b,fp,BIO_NOCLOSE);
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 77 FILE *fp = fopen(QTAGUID_IFACE_STATS, "r"); local
78 if (fp == NULL) {
87 while (fgets(buffer, sizeof(buffer), fp) != NULL) {
114 if (fclose(fp) != 0) {
121 FILE *fp = fopen(QTAGUID_UID_STATS, "r"); local
122 if (fp == NULL) {
131 while (fgets(buffer, sizeof(buffer), fp) != NULL) {
144 if (fclose(fp) != 0) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.assign/
copy_assign.pass.cpp 49 void (*fp)() = f;
50 test(fp);
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 537 FetchProfile fp = new FetchProfile(); local
538 fp.add(FetchProfile.Item.FLAGS);
539 fp.add(FetchProfile.Item.ENVELOPE);
540 mFolder.fetch(messages, fp, null);
585 FetchProfile fp = new FetchProfile(); local
586 fp.add(FetchProfile.Item.FLAGS);
587 fp.add(FetchProfile.Item.ENVELOPE);
588 mFolder.fetch(messages, fp, null);
632 FetchProfile fp = new FetchProfile(); local
633 fp.add(FetchProfile.Item.FLAGS)
794 FetchProfile fp = new FetchProfile(); local
834 FetchProfile fp = new FetchProfile(); local
    [all...]
  /packages/inputmethods/PinyinIME/jni/include/
ngram.h 73 bool save_ngram(FILE *fp);
74 bool load_ngram(FILE *fp);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
sortperf.py 24 fp = open(fn, "rb")
30 fp = open(fn, "wb")
31 marshal.dump(result, fp)
32 fp.close()
33 fp = None
35 if fp:
43 result = marshal.load(fp)
44 fp.close()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
sortperf.py 24 fp = open(fn, "rb")
30 fp = open(fn, "wb")
31 marshal.dump(result, fp)
32 fp.close()
33 fp = None
35 if fp:
43 result = marshal.load(fp)
44 fp.close()
  /sdk/eclipse/scripts/
collect_sources_for_sdk.py 113 fp = os.path.join(srcdir, f)
114 if f.endswith(".java") and os.path.isfile(fp):
115 pkg = checkJavaFile(fp)
118 copy(p, fp, f, pkg)
122 elif os.path.isdir(fp):
123 parseSrcDir(p, fp)
148 def copy(p, fp, f, pkg):
151 _cp(p, fp, os.path.join(dstdir, f))
  /system/core/debuggerd/
backtrace.c 41 FILE* fp; local
44 if ((fp = fopen(path, "r"))) {
45 procname = fgets(procnamebuf, sizeof(procnamebuf), fp);
46 fclose(fp);
70 FILE* fp; local
73 if ((fp = fopen(path, "r"))) {
74 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
75 fclose(fp);
  /build/target/board/generic_mips/
BoardConfig.mk 27 TARGET_ARCH_VARIANT := mips32r2-fp
  /dalvik/vm/mterp/armv5te/
OP_IPUT_QUICK.S 6 GET_VREG(r3, r2) @ r3<- fp[B], the object pointer
12 GET_VREG(r0, r2) @ r0<- fp[A]
unopWide.S 13 add r3, rFP, r3, lsl #2 @ r3<- &fp[B]
14 add r9, rFP, r9, lsl #2 @ r9<- &fp[A]
  /dalvik/vm/mterp/armv6t2/
OP_IPUT_QUICK.S 7 GET_VREG(r3, r2) @ r3<- fp[B], the object pointer
11 GET_VREG(r0, r2) @ r0<- fp[A]
unopWide.S 12 add r3, rFP, r3, lsl #2 @ r3<- &fp[B]
13 add r9, rFP, r9, lsl #2 @ r9<- &fp[A]
  /dalvik/vm/mterp/c/
OP_INVOKE_OBJECT_INIT_RANGE.cpp 8 if (!checkForNullExportPC(obj, fp, pc))

Completed in 243 milliseconds

<<11121314151617181920>>