Home
last modified time | relevance | path

Searched refs:fast (Results 1 – 9 of 9) sorted by relevance

/bionic/libc/stdio/
Dscanf_common.h106 static int w_to_flag(int size, bool fast) { in w_to_flag() argument
109 if (size == 16) return fast ? fast_size : SHORT; in w_to_flag()
110 if (size == 32) return fast ? fast_size : 0; in w_to_flag()
112 __fortify_fatal("%%w%s%d is unsupported", fast ? "f" : "", size); in w_to_flag()
Dprintf_common.h533 bool fast = false; in __find_arguments() local
536 fast = true; in __find_arguments()
546 if (n != 8 && fast) { in __find_arguments()
842 static int w_to_flag(int size, bool fast) { in w_to_flag()
845 if (size == 16) return fast ? fast_size : SHORTINT; in w_to_flag()
846 if (size == 32) return fast ? fast_size : 0; in w_to_flag()
848 __fortify_fatal("%%w%s%d is unsupported", fast ? "f" : "", size); in w_to_flag()
Dvfwscanf.cpp225 bool fast = false; in __vfwscanf() local
228 fast = true; in __vfwscanf()
235 flags |= w_to_flag(size, fast); in __vfwscanf()
Dvfprintf.cpp544 bool fast = false; in FUNCTION_NAME() local
547 fast = true; in FUNCTION_NAME()
554 flags |= helpers::w_to_flag(n, fast); in FUNCTION_NAME()
Dvfwprintf.cpp522 bool fast = false; in FUNCTION_NAME() local
525 fast = true; in FUNCTION_NAME()
532 flags |= helpers::w_to_flag(n, fast); in FUNCTION_NAME()
Dvfscanf.cpp180 bool fast = false; in __svfscanf() local
183 fast = true; in __svfscanf()
190 flags |= w_to_flag(size, fast); in __svfscanf()
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dengine.c116 …walk(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst, bool fast);
879 sopno stopst, bool fast) in walk() argument
903 if (fast) in walk()
927 if (fast && EQ(st, fresh)) in walk()
987 if (fast) in walk()
997 if (fast) in walk()
1009 if (fast) { in walk()
/bionic/docs/
Delf-tls.md287 * To keep the fast path fast, the resolver inlines the fast path of `__tls_get_addr`.
/bionic/libc/
DAndroid.bp1594 // in this case to make unwinds as fast as possible.