Searched refs:fast (Results 1 – 9 of 9) sorted by relevance
/bionic/libc/stdio/ |
D | scanf_common.h | 106 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()
|
D | printf_common.h | 533 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()
|
D | vfwscanf.cpp | 225 bool fast = false; in __vfwscanf() local 228 fast = true; in __vfwscanf() 235 flags |= w_to_flag(size, fast); in __vfwscanf()
|
D | vfprintf.cpp | 544 bool fast = false; in FUNCTION_NAME() local 547 fast = true; in FUNCTION_NAME() 554 flags |= helpers::w_to_flag(n, fast); in FUNCTION_NAME()
|
D | vfwprintf.cpp | 522 bool fast = false; in FUNCTION_NAME() local 525 fast = true; in FUNCTION_NAME() 532 flags |= helpers::w_to_flag(n, fast); in FUNCTION_NAME()
|
D | vfscanf.cpp | 180 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/ |
D | engine.c | 116 …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/ |
D | elf-tls.md | 287 * To keep the fast path fast, the resolver inlines the fast path of `__tls_get_addr`.
|
/bionic/libc/ |
D | Android.bp | 1594 // in this case to make unwinds as fast as possible.
|