Searched refs:pad (Results 1 - 2 of 2) sorted by relevance

/ndk/sources/android/support/src/stdio/
H A Dvfprintf.c196 static void pad(FILE *f, char c, int w, int l, int fl) function
198 char pad[256]; local
201 memset(pad, c, l>sizeof pad ? sizeof pad : l);
202 for (; l >= sizeof pad; l -= sizeof pad)
203 out(f, pad, sizeof pad);
204 out(f, pad,
[all...]
/ndk/sources/host-tools/make-3.81/tests/
H A Dtest_driver.pl374 local($pad);
378 $pad = " " x ( ($width - length ($string) + 1) / 2);
379 print "$pad$string";

Completed in 214 milliseconds