/dalvik/vm/mterp/armv5te/ |
OP_MOVE_FROM16.S | 7 GET_VREG(r2, r1) @ r2<- fp[BBBB] 9 SET_VREG(r2, r0) @ fp[AA]<- r2
|
OP_MOVE_WIDE.S | 7 add r3, rFP, r3, lsl #2 @ r3<- &fp[B] 8 add r2, rFP, r2, lsl #2 @ r2<- &fp[A] 9 ldmia r3, {r0-r1} @ r0/r1<- fp[B] 11 stmia r2, {r0-r1} @ fp[A]<- r0/r1
|
/dalvik/vm/mterp/mips/ |
OP_LONG_TO_INT.S | 8 GET_VREG(a2, a1) # a2 <- fp[B] 10 SET_VREG_GOTO(a2, a0, t0) # fp[A] <- a2
|
OP_MOVE.S | 7 GET_VREG(a2, a1) # a2 <- fp[B] 9 SET_VREG_GOTO(a2, a0, t0) # fp[A] <- a2
|
OP_MOVE_16.S | 7 GET_VREG(a2, a1) # a2 <- fp[BBBB] 9 SET_VREG_GOTO(a2, a0, t0) # fp[AAAA] <- a2 and jump
|
OP_MOVE_FROM16.S | 7 GET_VREG(a2, a1) # a2 <- fp[BBBB] 9 SET_VREG_GOTO(a2, a0, t0) # fp[AA] <- a2
|
/dalvik/vm/mterp/x86/ |
OP_MOVE.S | 10 SET_VREG rINST %eax # fp[A]<-fp[B]
|
/external/bison/lib/ |
fprintf.c | 32 /* Print formatted output to the stream FP. 36 fprintf (FILE *fp, const char *format, ...) 51 fseterr (fp); 55 if (fwrite (output, 1, len, fp) < len) 72 fseterr (fp);
|
vfprintf.c | 32 /* Print formatted output to the stream FP. 36 vfprintf (FILE *fp, const char *format, va_list args) 48 fseterr (fp); 52 if (fwrite (output, 1, len, fp) < len) 69 fseterr (fp);
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p13.cpp | 61 typedef void (*fp)(); typedef in namespace:rdar8018262 64 typedef void (*fp)(); typedef in namespace:rdar8018262::N 67 using N::fp; 69 fp fp_1;
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p9-linkage.cpp | 54 void test_f0(int *ip, float *fp) { 58 f0(fp); 61 void test_f1(int *ip, float *fp) { 65 f1(fp);
|
p9.cpp | 51 void test_f0(int *ip, float *fp) { 53 f0(fp); // expected-note{{instantiation}} 56 void test_f1(int *ip, float *fp) { 58 f1(fp); // expected-note{{instantiation}}
|
/external/dhcpcd/compat/ |
getline.h | 35 FILE * __restrict fp);
|
/external/icu4c/extra/uconv/unicode/ |
uwmsg.h | 24 U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... );
|
/external/srec/srec/crec/ |
comp_stats.c | 68 void dump_comp_stats(COMP_STATS *cs, PFile* fp) 75 pfprintf(fp, "***WARNING: clock overrun!\n"); 81 pfprintf(fp, "Total Time %5.2f Seconds\n", cs->total_time); 83 print_cs_clock(&cs->front_end, cs->total_time, fp, "Front end", "Frames"); 84 print_cs_clock(&cs->overall_search, cs->total_time, fp, "Total Search", "Frames"); 85 print_cs_clock(&cs->models, cs->total_time, fp, " Models", "Models"); 86 print_cs_clock(&cs->internal_hmm, cs->total_time, fp, " Internal HMM", "HMMs"); 87 print_cs_clock(&cs->fsm_to_hmm, cs->total_time, fp, " FSM to HMM", "FSM_Nodes"); 88 print_cs_clock(&cs->prune, cs->total_time, fp, " Prune", "HMM States"); 89 print_cs_clock(&cs->hmm_to_fsm, cs->total_time, fp, " HMM to FSM", "HMMS") [all...] |
/external/srec/srec/ca/ |
syn_srec.c | 104 PFile* fp = NULL; local 116 fp = pfopen ( filename, L("rb") ); 117 /* CHKLOG(rc, PFileSystemCreatePFile(filename, isLittleEndian, &fp)); 118 CHKLOG(rc, PFileOpen(fp, L("rb")));*/ 120 if ( fp == NULL ) 123 result = FST_LoadContextFromImage(&hSyntax->synx, fp); 124 pfclose(fp); 127 if (fp) 128 pfclose (fp); 135 PFile* fp; local 184 PFile* fp; local [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
p1-0x.cpp | 35 void test_simple_deduction(int *ip, float *fp, double *dp) { 37 int *ip2 = first_arg(ip, fp); 38 int *ip3 = first_arg(ip, fp, dp); 48 void test_simple_ref_deduction(int *ip, float *fp, double *dp) { 50 int *ip2 = first_arg_ref(ip, fp); 51 int *ip3 = first_arg_ref(ip, fp, dp); 63 void test_pair_deduction(int *ip, float *fp, double *dp) { 65 int *ip2 = first_arg_pair(make_pair(ip, 17), make_pair(fp, 17)); 66 int *ip3 = first_arg_pair(make_pair(ip, 17), make_pair(fp, 17), 68 float *fp1 = second_arg_pair(make_pair(ip, 17), make_pair(fp, 17)) [all...] |
/bionic/libc/upstream-netbsd/libc/string/ |
memccpy.c | 53 const unsigned char *fp = f; local 56 if ((*tp++ = *fp++) == uc)
|
/external/clang/test/FixIt/ |
dereference-addressof.c | 9 void fp(float *aPtr) {} // expected-note{{passing argument to parameter 'aPtr' here}} function 17 fp(*bPtr); // expected-error{{passing 'float' to parameter of incompatible type 'float *'; remove *}}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.access/ |
conversion.pass.cpp | 37 void (*fp)() = f; 38 test(fp);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.const/ |
copy_ctor.pass.cpp | 37 void (*fp)() = f; 38 test(fp);
|
type_ctor.pass.cpp | 36 void (*fp)() = f; 37 test(fp);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/ |
invoke.fail.cpp | 36 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);
|
invoke_int_0.pass.cpp | 46 int (*fp)() = f_int_0; 47 std::reference_wrapper<int (*)()> r1(fp);
|
/external/chromium_org/third_party/openssl/openssl/crypto/x509/ |
x_all.c | 137 X509 *d2i_X509_fp(FILE *fp, X509 **x509) 139 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(X509), fp, x509); 142 int i2d_X509_fp(FILE *fp, X509 *x509) 144 return ASN1_item_i2d_fp(ASN1_ITEM_rptr(X509), fp, x509); 159 X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **crl) 161 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(X509_CRL), fp, crl); 164 int i2d_X509_CRL_fp(FILE *fp, X509_CRL *crl) 166 return ASN1_item_i2d_fp(ASN1_ITEM_rptr(X509_CRL), fp, crl); 181 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7) 183 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(PKCS7), fp, p7) [all...] |