Home
last modified time | relevance | path

Searched refs:F (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/include/
Dnsswitch.h119 #define NS_FILES_CB(F,C) { NSSRC_FILES, F, __UNCONST(C) }, argument
120 #define NS_COMPAT_CB(F,C) { NSSRC_COMPAT, F, __UNCONST(C) }, argument
123 # define NS_DNS_CB(F,C) { NSSRC_DNS, F, __UNCONST(C) }, argument
125 # define NS_DNS_CB(F,C) argument
129 # define NS_NIS_CB(F,C) { NSSRC_NIS, F, __UNCONST(C) }, argument
131 # define NS_NIS_CB(F,C) argument
/bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
Db_log.c367 double F, f, g, q, u, u2, v, zero = 0.0, one = 1.0;
389 F = (1.0/N) * j + 1; /* F*128 is an integer in [128, 512] */
390 f = g - F;
393 g = 1/(2*F+f);
410 u2 = (2.0*(f - F*u1) - u1*f) * g;
436 double F, f, g, q, u, v, u2; local
450 F = (1.0/N) * j + 1;
451 f = g - F;
453 g = 1/(2*F+f);
461 u2 = (2.0*(f - F*u1) - u1*f) * g;
/bionic/libc/private/
DScopeGuard.h23 template<typename F>
26 ScopeGuard(F f) : f_(f), active_(true) {} in ScopeGuard()
42 F f_;
/bionic/linker/
Dlinked_list.h102 template<typename F>
103 void for_each(F action) const { in for_each()
110 template<typename F>
111 bool visit(F action) const { in visit()
120 template<typename F>
121 void remove_if(F predicate) { in remove_if()
139 template<typename F>
140 T* find_if(F predicate) const { in find_if()
Dlinker.cpp412 template<typename F>
413 static bool for_each_verdef(const soinfo* si, F functor) { in for_each_verdef()
893 template<typename F>
894 static bool walk_dependencies_tree(soinfo* root_soinfos[], size_t root_soinfos_size, F action) { in walk_dependencies_tree()
1235 template<typename F>
1236 static void for_each_dt_needed(const soinfo* si, F action) { in for_each_dt_needed()
/bionic/libc/bionic/
Dpthread_atfork.cpp50 template<typename F>
51 void walk_forward(F f) { in walk_forward()
57 template<typename F>
58 void walk_backwards(F f) { in walk_backwards()
76 template<typename F>
77 void remove_if(F predicate) { in remove_if()
/bionic/libc/upstream-dlmalloc/
Dmalloc.c3589 mchunkptr F = B;\
3594 F = B->fd;\
3599 F->bk = P;\
3600 P->fd = F;\
3606 mchunkptr F = P->fd;\
3610 assert(P != F);\
3612 if (RTCHECK(F == smallbin_at(M,I) || (ok_address(M, F) && F->bk == P))) { \
3613 if (B == F) {\
3618 F->bk = B;\
3619 B->fd = F;\
[all …]