/dalvik/vm/mterp/x86/ |
OP_REM_FLOAT.S | 5 flds (rFP,%ecx,4) # vCC to fp stack 6 flds (rFP,%eax,4) # vCC to fp stack
|
OP_REM_FLOAT_2ADDR.S | 5 flds (rFP,rINST,4) # vBB to fp stack 7 flds (rFP,%ecx,4) # vAA to fp stack
|
/device/generic/mips/ |
BoardConfig.mk | 10 TARGET_ARCH_VARIANT := mips32-fp
|
/external/bison/lib/ |
fopen.c | 78 FILE *fp; local 97 fp = fdopen (fd, mode); 98 if (fp == NULL) 104 return fp;
|
/external/blktrace/btt/ |
latency.c | 31 FILE *fp = NULL; local 41 if ((fp = my_fopen(oname, "w")) == NULL) 44 add_file(fp, strdup(oname)); 47 return fp;
|
unplug_hist.c | 67 FILE *fp; local 74 if ((fp = my_fopen(oname, "w")) != NULL) { 78 fprintf(fp, "%d %d\n", i, hbp->hist[i]); 79 fclose(fp);
|
/external/chromium_org/third_party/icu/source/i18n/ |
fpositer.cpp | 90 UBool FieldPositionIterator::next(FieldPosition& fp) { 95 fp.setField(data->elementAti(pos++)); 96 fp.setBeginIndex(data->elementAti(pos++)); 97 fp.setEndIndex(data->elementAti(pos++));
|
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
dsa_prn.c | 65 int DSA_print_fp(FILE *fp, const DSA *x, int off) 75 BIO_set_fp(b,fp,BIO_NOCLOSE); 81 int DSAparams_print_fp(FILE *fp, const DSA *x) 91 BIO_set_fp(b,fp,BIO_NOCLOSE);
|
/external/chromium_org/third_party/openssl/openssl/crypto/err/ |
err_prn.c | 90 static int print_fp(const char *str, size_t len, void *fp) 95 BIO_set_fp(&bio,fp,BIO_NOCLOSE); 99 void ERR_print_errors_fp(FILE *fp) 101 ERR_print_errors_cb(print_fp, fp);
|
/external/clang/test/Analysis/ |
func.c | 13 void g(void (*fp)(void));
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/ |
p3.cpp | 12 const float * const volatile fp = ap; local
|
/external/clang/test/CodeGenCXX/ |
global-llvm-constant.cpp | 13 int (*fp)(int, int); member in struct:X
|
mangle-unnameable-conversions.cpp | 13 char (S::*fp)() = S(); // CHECK: @_ZNK1ScvMT0_FT_vEIcS_EEv(
|
/external/clang/test/Sema/ |
pointer-addition.c | 5 void (*fp)(int) = 0;
|
/external/e2fsprogs/intl/ |
localealias.c | 97 # define FEOF(fp) feof_unlocked (fp) 98 # define FGETS(buf, n, fp) fgets_unlocked (buf, n, fp) 100 # define FEOF(fp) feof (fp) 101 # define FGETS(buf, n, fp) fgets (buf, n, fp) 219 FILE *fp; local 233 fp = fopen (relocate (full_fname), "r") [all...] |
/external/iproute2/misc/ |
ssfilter.h | 19 int ssfilter_parse(struct ssfilter **f, int argc, char **argv, FILE *fp);
|
/external/openssl/crypto/dsa/ |
dsa_prn.c | 65 int DSA_print_fp(FILE *fp, const DSA *x, int off) 75 BIO_set_fp(b,fp,BIO_NOCLOSE); 81 int DSAparams_print_fp(FILE *fp, const DSA *x) 91 BIO_set_fp(b,fp,BIO_NOCLOSE);
|
/external/openssl/crypto/err/ |
err_prn.c | 90 static int print_fp(const char *str, size_t len, void *fp) 95 BIO_set_fp(&bio,fp,BIO_NOCLOSE); 99 void ERR_print_errors_fp(FILE *fp) 101 ERR_print_errors_cb(print_fp, fp);
|
/external/sepolicy/tools/ |
checkfc.c | 41 FILE *fp; local 67 fp = fopen(sepolicyFile, "r"); 68 if (!fp) { 72 if (sepol_set_policydb_from_file(fp) < 0) {
|
/external/valgrind/main/tests/ |
os_test.c | 37 FILE *fp = fopen("/proc/sys/kernel/osrelease", "r"); 38 if (fp == NULL || fscanf(fp, "%d.%d.%d", &a1, &a2, &a3) != 3) return False; 39 fclose(fp);
|
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/ |
mlos_linux.c | 133 FILE *fp = fopen(filename, "r"); local 134 return fp; 140 * @param fp handle to file to close. 143 void inv_fclose(FILE *fp) 145 fclose(fp);
|
/hardware/invensense/60xx/mlsdk/platform/linux/ |
mlos_linux.c | 146 FILE *fp = fopen(filename,"r"); local 147 return fp; 153 * @param fp handle to file to close. 156 void inv_fclose(FILE *fp) 158 fclose(fp);
|
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/ |
mlos_linux.c | 133 FILE *fp = fopen(filename, "r"); local 134 return fp; 140 * @param fp handle to file to close. 143 void inv_fclose(FILE *fp) 145 fclose(fp);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
parser.py | 57 def parse(self, fp, headersonly=False): 69 data = fp.read(8192) 89 def parse(self, fp, headersonly=True): 90 return Parser.parse(self, fp, True)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
parser.py | 57 def parse(self, fp, headersonly=False): 69 data = fp.read(8192) 89 def parse(self, fp, headersonly=True): 90 return Parser.parse(self, fp, True)
|