/external/chromium_org/v8/src/ |
frames-inl.h | 166 return Memory::Object_at(fp() + offset); 171 return Memory::Address_at(fp() + StandardFrameConstants::kCallerFPOffset); 176 return Memory::Address_at(ComputePCAddress(fp())); 180 inline Address StandardFrame::ComputePCAddress(Address fp) { 181 return fp + StandardFrameConstants::kCallerPCOffset; 185 inline Address StandardFrame::ComputeConstantPoolAddress(Address fp) { 186 return fp + StandardFrameConstants::kConstantPoolOffset; 190 inline bool StandardFrame::IsArgumentsAdaptorFrame(Address fp) { 192 Memory::Object_at(fp + StandardFrameConstants::kContextOffset); 197 inline bool StandardFrame::IsConstructFrame(Address fp) { [all...] |
/external/libsepol/src/ |
genusers.c | 37 FILE *fp; local 46 fp = fopen(path, "r"); 47 if (fp == NULL) 56 while(fgets(buffer, 255, fp) != NULL) { 58 __fsetlocking(fp, FSETLOCKING_BYCALLER); 59 while ((nread = getline(&buffer, &len, fp)) > 0) { 98 fclose(fp); 108 fclose(fp); 121 fclose(fp); 177 fclose(fp); [all...] |
/dalvik/tools/dmtracedump/ |
CreateTestTrace.c | 326 void write2LE(FILE* fp, unsigned short val) 328 putc(val & 0xff, fp); 329 putc(val >> 8, fp); 332 void write4LE(FILE* fp, unsigned int val) 334 putc(val & 0xff, fp); 335 putc((val >> 8) & 0xff, fp); 336 putc((val >> 16) & 0xff, fp); 337 putc((val >> 24) & 0xff, fp); 340 void write8LE(FILE* fp, unsigned long long val) 342 putc(val & 0xff, fp); 436 FILE *fp = fopen(traceFileName, "w"); local [all...] |
/external/openssl/apps/ |
openssl.c | 230 FUNCTION f,*fp; local 370 fp=lh_FUNCTION_retrieve(prog,&f); 371 if (fp != NULL) 374 ret=fp->func(Argc,Argv); 468 FUNCTION f,*fp; local 474 fp=lh_FUNCTION_retrieve(prog,&f); 475 if (fp == NULL) 481 fp = &f; 487 fp = &f; 490 if (fp != NULL [all...] |
/external/e2fsprogs/ext2ed/ |
init.c | 108 FILE *fp; local 113 if ( (fp=fopen (file_name,"rt"))==NULL) { 118 while (!feof (fp)) { 119 fgets (current_line,500,fp); 120 if (feof (fp)) break; 127 fgets (current_line,500,fp); 128 if (feof (fp)) break; 130 if (feof (fp)) break; 132 fgets (current_line,500,fp); 136 fgets (current_line,500,fp); 488 FILE *fp; local 609 FILE *fp; local [all...] |
/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/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/e2fsprogs/tests/scripts/ |
resize_test | 55 echo $FSCK -fp $TMPFILE >> $LOG 2>&1 56 if ! $FSCK -fp $TMPFILE >> $LOG 2>&1 80 echo $FSCK -fp $TMPFILE >> $LOG 2>&1 81 if ! $FSCK -fp $TMPFILE >> $LOG 2>&1 105 echo $FSCK -fp $TMPFILE >> $LOG 2>&1 106 if ! $FSCK -fp $TMPFILE >> $LOG 2>&1 130 echo $FSCK -fp $TMPFILE >> $LOG 2>&1 131 if ! $FSCK -fp $TMPFILE >> $LOG 2>&1
|
/external/icu/icu4c/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/libcxx/test/utilities/function.objects/refwrap/refwrap.assign/ |
copy_assign.pass.cpp | 49 void (*fp)() = f; 50 test(fp);
|
/external/llvm/test/MC/ARM/ |
eh-directive-unwind_raw.s | 29 @ .save {fp, lr} 30 stmfd sp!, {fp, lr} 31 @ .setfp fp, sp, #4 32 add fp, sp, #4 36 sub fp, sp, #4 37 ldmfd sp!, {fp, lr} 53 .setfp fp, sp, #32 85 @ CHECK: 0x84 0x80 ; pop {fp, lr}
|
/external/llvm/test/MC/Mips/mips32r2/ |
abiflags.s | 8 # CHECK-ASM: .module fp=32 9 # CHECK-ASM: .set fp=64 34 .module fp=32 35 .set fp=64
|
/external/llvm/test/MC/Mips/ |
mips_abi_flags_xx_set.s | 8 # CHECK-ASM: .module fp=xx 9 # CHECK-ASM: .set fp=64 34 .module fp=xx 35 .set fp=64
|
/external/llvm/test/MC/Mips/msa/ |
abiflags.s | 8 # CHECK-ASM: .module fp=32 9 # CHECK-ASM: .set fp=64 34 .module fp=32 35 .set fp=64
|
/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);
|
/bionic/libc/bionic/ |
debug_mapinfo.cpp | 74 FILE* fp = fopen(data, "r"); local 75 if (fp != NULL) { 76 while (fgets(data, sizeof(data), fp) != NULL) { 83 fclose(fp);
|
/bionic/tests/ |
sys_stat_test.cpp | 27 FILE* fp = tmpfile(); local 28 ASSERT_TRUE(fp != NULL); 30 int fd = fileno(fp); 45 fclose(fp);
|
/external/chromium_org/base/memory/ |
shared_memory_posix.cc | 131 ScopedFILE fp; local 143 fp.reset(CreateAndOpenTemporaryFileInDir(directory, &path)); 145 if (fp) { 151 fp.reset(); 214 fp.reset(fdopen(fd, "a+")); 217 if (fp && fix_size) { 220 if (fstat(fileno(fp.get()), &stat) != 0) 224 if (HANDLE_EINTR(ftruncate(fileno(fp.get()), options.size)) != 0) 229 if (fp == NULL) { 246 return PrepareMapFile(fp.Pass(), readonly_fd.Pass()) [all...] |
/external/chromium_org/components/storage_monitor/ |
mtab_watcher_linux.cc | 61 FILE* fp = setmntent(mtab_path_.value().c_str(), "r"); local 62 if (!fp) 71 while (getmntent_r(fp, &entry, buf, sizeof(buf))) { 81 endmntent(fp);
|
/external/chromium_org/mojo/embedder/ |
platform_channel_pair_posix_unittest.cc | 145 base::ScopedFILE fp( 147 ASSERT_TRUE(fp); 148 ASSERT_EQ(j, fwrite(std::string(j, '0' + i).data(), 1, j, fp.get())); 150 test::PlatformHandleFromFILE(fp.Pass()).release()); 176 base::ScopedFILE fp(test::FILEFromPlatformHandle( 179 ASSERT_TRUE(fp); 180 rewind(fp.get()); 182 size_t bytes_read = fread(read_buf, 1, sizeof(read_buf), fp.get()); 203 base::ScopedFILE fp( 205 ASSERT_TRUE(fp); [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
fpositer.h | 97 UBool next(FieldPosition& fp);
|
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/ |
mkvwriter.hpp | 23 explicit MkvWriter(FILE* fp);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_test_main.c | 47 dump_type(FILE *fp, 50 fprintf(fp, "%s%s%u%sx%u", 284 dump_vec(FILE *fp, struct lp_type type, const void *src) 289 fprintf(fp, " "); 303 fprintf(fp, "%f", value); 331 fprintf(fp, format, value); 358 fprintf(fp, format, value); 368 FILE *fp = NULL; local 380 fp = fopen(argv[++i], "wt"); 396 if(fp) { [all...] |