/external/v8/src/arm/ |
frames-arm.cc | 38 Address ExitFrame::ComputeStackPointer(Address fp) { 39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
|
/external/v8/src/ia32/ |
frames-ia32.cc | 38 Address ExitFrame::ComputeStackPointer(Address fp) { 39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
|
/external/v8/src/mips/ |
frames-mips.cc | 40 Address ExitFrame::ComputeStackPointer(Address fp) { 41 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
|
/external/v8/src/x64/ |
frames-x64.cc | 38 Address ExitFrame::ComputeStackPointer(Address fp) { 39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
|
/bionic/libc/stdio/ |
fvwrite.c | 48 __sfvwrite(FILE *fp, struct __suio *uio) 60 if (cantwrite(fp)) { 66 #define COPY(n) (void)memcpy((void *)fp->_p, (void *)p, (size_t)(n)) 79 if (fp->_flags & __SNBF) { 86 w = (*fp->_write)(fp->_cookie, p, len); 88 w = (*fp->_write)(fp->_cookie, p, MIN(len, BUFSIZ2)); 95 } else if ((fp->_flags & __SLBF) == 0) { 109 if ((fp->_flags & (__SALC | __SSTR)) = [all...] |
setbuffer.c | 37 setbuffer(FILE *fp, char *buf, int size) 40 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, size); 47 setlinebuf(FILE *fp) 50 return (setvbuf(fp, (char *)NULL, _IOLBF, (size_t)0));
|
fputs.c | 43 fputs(const char *s, FILE *fp) 53 FLOCKFILE(fp); 54 _SET_ORIENTATION(fp, -1); 55 ret = __sfvwrite(fp, &uio); 56 FUNLOCKFILE(fp);
|
fgets.c | 45 fgets(char *buf, int n, FILE *fp) 54 FLOCKFILE(fp); 55 _SET_ORIENTATION(fp, -1); 62 if (fp->_r <= 0) { 63 if (__srefill(fp)) { 66 FUNLOCKFILE(fp); 72 len = fp->_r; 73 p = fp->_p; 86 fp->_r -= len; 87 fp->_p = t [all...] |
stdio.c | 46 FILE *fp = cookie; local 49 ret = read(fp->_file, buf, n); 52 fp->_offset += ret; 54 fp->_flags &= ~__SOFF; /* paranoia */ 61 FILE *fp = cookie; local 63 if (fp->_flags & __SAPP) 64 (void) lseek(fp->_file, (off_t)0, SEEK_END); 65 fp->_flags &= ~__SOFF; /* in case FAPPEND mode is set */ 66 return (write(fp->_file, buf, n)); 72 FILE *fp = cookie local [all...] |
/external/oprofile/libutil/ |
op_lockfile.c | 24 FILE * fp; local 27 fp = fopen(file, "r"); 28 if (fp == NULL) 31 if (fscanf(fp, "%d", &value) != 1) { 32 fclose(fp); 36 fclose(fp); 44 FILE * fp; local 61 fp = fopen(file, "w"); 62 if (!fp) 65 fprintf(fp, "%d", getpid()) [all...] |
op_fileio.h | 55 * @param fp file pointer 61 void op_close_file(FILE * fp); 65 * @param fp file pointer 72 void op_write_file(FILE * fp, void const * buf, size_t size); 76 * @param fp file pointer 84 void op_write_u32(FILE * fp, u32 val); 88 * @param fp file pointer 96 void op_write_u64(FILE * fp, u64 val); 100 * @param fp file pointer 106 void op_write_u8(FILE * fp, u8 val) [all...] |
/bionic/tests/ |
stdio_test.cpp | 26 FILE* fp = tmpfile(); local 27 ASSERT_TRUE(fp != NULL); 29 int fd = fileno(fp); 37 rc = fprintf(fp, "hello\n"); 40 rewind(fp); 43 char* s = fgets(buf, sizeof(buf), fp); 47 fclose(fp); 51 FILE* fp = tmpfile(); local 52 ASSERT_TRUE(fp != NULL); 55 int rc = fprintf(fp, "%s", line_written) 86 FILE* fp = tmpfile(); local 109 FILE* fp = tmpfile(); local 151 FILE* fp = tmpfile(); local 186 FILE* fp = popen("cat \/proc\/version", "r"); local [all...] |
/external/bison/lib/ |
fpending.c | 25 bytes on the stream, FP, that is open for writing. */ 27 __fpending (FILE *fp)
|
fopen-safer.c | 33 FILE *fp = fopen (file, mode); local 35 if (fp) 37 int fd = fileno (fp); 46 fclose (fp); 51 if (fclose (fp) != 0 52 || ! (fp = fdopen (f, mode))) 62 return fp;
|
fseterr.c | 27 fseterr (FILE *fp) 33 fp->_flags |= _IO_ERR_SEEN; 37 fp->_flags |= _IOERR; 39 fp->_flags |= _IOERR; 43 fp->__modeflags |= __FLAG_ERROR; 45 fp->_Mode |= 0x200 /* _MERR */; 47 fp->__error = 1; 49 if (fp->state != 0 /* CLOSED */) 50 fp->state = 5 /* ERR */; 54 Not activated on any system, because there is no way to repair FP whe [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p10-0x.cpp | 5 void (*fp)(int&) = &f; variable
|
/external/clang/test/CodeGen/ |
c11atomics-ios.c | 10 void testFloat(_Atomic(float) *fp) { 11 // CHECK: [[FP:%.*]] = alloca float* 14 // CHECK-NEXT: store float* {{%.*}}, float** [[FP]] 16 // CHECK-NEXT: [[T0:%.*]] = load float** [[FP]] 18 __c11_atomic_init(fp, 1.0f); 23 // CHECK-NEXT: [[T0:%.*]] = load float** [[FP]] 28 float f = *fp; 31 // CHECK-NEXT: [[T1:%.*]] = load float** [[FP]], align 4 35 *fp = f; 41 void testComplexFloat(_Atomic(_Complex float) *fp) { [all...] |
c11atomics.c | 139 void testFloat(_Atomic(float) *fp) { 140 // CHECK: [[FP:%.*]] = alloca float* 145 // CHECK-NEXT: store float* {{%.*}}, float** [[FP]] 147 // CHECK-NEXT: [[T0:%.*]] = load float** [[FP]] 149 __c11_atomic_init(fp, 1.0f); 154 // CHECK-NEXT: [[T0:%.*]] = load float** [[FP]] 160 float f = *fp; 163 // CHECK-NEXT: [[T1:%.*]] = load float** [[FP]], align 4 168 *fp = f; 174 void testComplexFloat(_Atomic(_Complex float) *fp) { [all...] |
/external/valgrind/main/memcheck/tests/ |
fprw.c | 12 float* fp = malloc(sizeof(float)); local 17 *fp += ( f > 0.1 ? 20.0 : 21.0 ); 19 free(fp); 21 *fp += 30.0;
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
MMap.h | 18 fp(NULL), 21 if ((fp = fopen(fileName, "r")) == NULL) 23 char c = getc(fp); 27 c = getc(fp); 31 rewind(fp); 34 c = getc(fp); 37 c = getc(fp); 46 if (fp != NULL) 47 fclose(fp); 52 FILE *fp; member in class:TMMap [all...] |
/external/ppp/pppd/plugins/rp-pppoe/ |
debug.c | 28 * fp -- file to dump to 34 * Dumps buffer to fp in an easy-to-read format 37 dumpHex(FILE *fp, unsigned char const *buf, int len) 42 if (!fp) return; 46 fprintf(fp, "(PAP Authentication Frame -- Contents not dumped)\n"); 53 fprintf(fp, "%02x ", (unsigned) buf[i]); 55 fprintf(fp, " "); 58 fprintf(fp, " "); 62 fprintf(fp, "%c", buf[i]); 64 fprintf(fp, ".") [all...] |
/sdk/emulator/opengl/host/tools/emugen/ |
ApiGen.cpp | 47 void ApiGen::printHeader(FILE *fp) const 49 fprintf(fp, "// Generated Code - DO NOT EDIT !!\n"); 50 fprintf(fp, "// generated by 'emugen'\n"); 55 FILE *fp = fopen(filename.c_str(), "wt"); local 56 if (fp == NULL) { 60 printHeader(fp); 64 fprintf(fp, "#ifndef __%s_%s_proc_t_h\n", basename, sideString(side)); 65 fprintf(fp, "#define __%s_%s_proc_t_h\n", basename, sideString(side)); 66 fprintf(fp, "\n\n"); 67 fprintf(fp, "\n#include \"%s_types.h\"\n",basename) 99 FILE *fp = fopen(filename.c_str(), "wt"); local 131 FILE *fp = fopen(filename.c_str(), "wt"); local 199 FILE *fp = fopen(filename.c_str(), "wt"); local 270 FILE *fp = fopen(filename.c_str(), "wt"); local 290 FILE *fp = fopen(filename.c_str(), "wt"); local 309 FILE *fp = fopen(filename.c_str(), "wt"); local 451 FILE *fp = fopen(filename.c_str(), "wt"); local 684 FILE *fp = fopen(filename.c_str(), "wt"); local 716 FILE *fp = fopen(filename.c_str(), "wt"); local 749 FILE *fp = fopen(filename.c_str(), "wt"); local 979 FILE *fp = fopen(attribFilename.c_str(), "rt"); local [all...] |
/external/blktrace/btt/ |
q2d.c | 69 void q2d_display_header(FILE *fp) 71 fprintf(fp, "%5s ", "<.005"); 72 fprintf(fp, "%5s ", "<.010"); 73 fprintf(fp, "%5s ", "<.025"); 74 fprintf(fp, "%5s ", "<.050"); 75 fprintf(fp, "%5s ", "<.075"); 76 fprintf(fp, "%5s ", "<.100"); 77 fprintf(fp, "%5s ", "<.250"); 78 fprintf(fp, "%5s ", "<.500"); 79 fprintf(fp, "%5s ", "< 1.0") [all...] |
/frameworks/wilhelm/tools/mphtogen/ |
mphtogen.c | 27 FILE *fp = fopen(filename, "w"); local 28 assert(NULL != fp); 29 fputs("// This file is automagically generated by mphtogen, do not edit\n", fp); 34 fputc(',', fp); 38 fputc('\n', fp); 41 fprintf(fp, "%3d", MPH_to[i]); 45 fputc('\n', fp); 47 fclose(fp);
|
/external/libsepol/tests/ |
debug.h | 26 extern void print_ebitmap(ebitmap_t * bitmap, FILE * fp); 27 extern void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp);
|