Searched defs:tf (Results 1 - 9 of 9) sorted by relevance

/bionic/tests/
H A Dsys_time_test.cpp47 TemporaryFile tf; local
48 ASSERT_EQ(0, utimes(tf.filename, NULL));
H A Dsys_stat_test.cpp63 TemporaryFile tf; local
64 path = tf.filename;
H A Dsys_mman_test.cpp38 TemporaryFile tf; local
40 void* map = mmap(NULL, 100, PROT_READ, MAP_SHARED, tf.fd, 1);
45 TemporaryFile tf; local
47 void* map = mmap64(NULL, 100, PROT_READ, MAP_SHARED, tf.fd, 1);
57 TemporaryFile tf; local
59 ASSERT_EQ(STR_SSIZE(STRING_MSG), write(tf.fd, STRING_MSG, sizeof(STRING_MSG)));
61 void* map = mmap(NULL, sizeof(STRING_MSG), PROT_READ, MAP_SHARED, tf.fd, 0);
71 TemporaryFile tf; local
73 ASSERT_EQ(STR_SSIZE(INITIAL_MSG), write(tf.fd, INITIAL_MSG, sizeof(INITIAL_MSG)));
74 lseek(tf
98 TemporaryFile tf; local
134 TemporaryFile tf; local
[all...]
H A Dfcntl_test.cpp74 TemporaryFile tf; local
83 EXPECT_EQ(EINVAL, posix_fadvise(tf.fd, 0, 0, -1));
86 EXPECT_EQ(EINVAL, posix_fadvise64(tf.fd, 0, 0, -1));
89 EXPECT_EQ(0, posix_fadvise(tf.fd, 0, 0, POSIX_FADV_NORMAL));
90 EXPECT_EQ(0, posix_fadvise64(tf.fd, 0, 0, POSIX_FADV_NORMAL));
94 TemporaryFile tf; local
100 ASSERT_EQ(-1, fallocate(tf.fd, 0, 0, -1));
104 ASSERT_EQ(-1, fallocate64(tf.fd, 0, 0, -1));
108 ASSERT_EQ(EINVAL, posix_fallocate(tf.fd, 0, -1));
112 ASSERT_EQ(EINVAL, posix_fallocate64(tf
117 TemporaryFile tf; local
164 TemporaryFile tf; local
[all...]
H A Dstdlib_test.cpp166 TemporaryFile tf; local
168 ASSERT_EQ(0, fstat(tf.fd, &sb));
172 GenericTemporaryFile<mkstemp64> tf; local
174 ASSERT_EQ(0, fstat64(tf.fd, &sb));
175 ASSERT_EQ(O_LARGEFILE, fcntl(tf.fd, F_GETFL) & O_LARGEFILE);
H A Dstdio_test.cpp58 TemporaryFile tf; local
60 int rc = dprintf(tf.fd, "hello\n");
63 lseek(tf.fd, SEEK_SET, 0);
64 FILE* tfile = fdopen(tf.fd, "r");
630 TemporaryFile tf; local
631 FILE* fp = fdopen(tf.fd, "w+");
646 fp = fopen(tf.filename, "r");
H A Dunistd_test.cpp141 TemporaryFile tf; local
142 ASSERT_EQ(0, close(tf.fd));
143 ASSERT_EQ(0, truncate(tf.filename, 123));
146 ASSERT_EQ(0, stat(tf.filename, &sb));
151 TemporaryFile tf; local
152 ASSERT_EQ(0, close(tf.fd));
153 ASSERT_EQ(0, truncate64(tf.filename, 123));
156 ASSERT_EQ(0, stat(tf.filename, &sb));
161 TemporaryFile tf; local
162 ASSERT_EQ(0, ftruncate(tf
171 TemporaryFile tf; local
359 TemporaryFile tf; local
[all...]
/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_lgamma_r.c107 tf = -1.21486290535849611461e-01, /* 0xBFBF19B9, 0xBCC38A42 */ variable
108 /* tt = -(tail of tf) */
263 r += (tf + p); break;
H A De_lgammaf_r.c40 tf = -1.2148628384e-01, /* 0xbdf8cdcd */ variable
41 /* tt = -(tail of tf) */
196 r += (tf + p); break;

Completed in 71 milliseconds