Home
last modified time | relevance | path

Searched refs:num_tabs (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/third_party/libpng16/
Dpngdebug.h83 int num_tabs=l; \
84 fprintf(PNG_DEBUG_FILE,"%s" m PNG_STRING_NEWLINE,(num_tabs==1 ? " " : \
85 (num_tabs==2 ? " " : (num_tabs>2 ? " " : "")))); \
91 int num_tabs=l; \
92 fprintf(PNG_DEBUG_FILE,"%s" m PNG_STRING_NEWLINE,(num_tabs==1 ? " " : \
93 (num_tabs==2 ? " " : (num_tabs>2 ? " " : ""))),p1); \
99 int num_tabs=l; \
100 fprintf(PNG_DEBUG_FILE,"%s" m PNG_STRING_NEWLINE,(num_tabs==1 ? " " : \
101 (num_tabs==2 ? " " : (num_tabs>2 ? " " : ""))),p1,p2);\
108 int num_tabs=l; \
[all …]
/external/libpng/
Dpngdebug.h83 int num_tabs=l; \
84 fprintf(PNG_DEBUG_FILE,"%s" m PNG_STRING_NEWLINE,(num_tabs==1 ? " " : \
85 (num_tabs==2 ? " " : (num_tabs>2 ? " " : "")))); \
91 int num_tabs=l; \
92 fprintf(PNG_DEBUG_FILE,"%s" m PNG_STRING_NEWLINE,(num_tabs==1 ? " " : \
93 (num_tabs==2 ? " " : (num_tabs>2 ? " " : ""))),p1); \
99 int num_tabs=l; \
100 fprintf(PNG_DEBUG_FILE,"%s" m PNG_STRING_NEWLINE,(num_tabs==1 ? " " : \
101 (num_tabs==2 ? " " : (num_tabs>2 ? " " : ""))),p1,p2);\
108 int num_tabs=l; \
[all …]
/external/u-boot/tools/dtoc/
Ddtb_platdata.py72 def tab_to(num_tabs, line): argument
83 if len(line) >= num_tabs * 8:
85 return line + '\t' * (num_tabs - len(line) // 8)
/external/mesa3d/src/compiler/nir/
Dnir_print.c35 print_tabs(unsigned num_tabs, FILE *fp) in print_tabs() argument
37 for (unsigned i = 0; i < num_tabs; i++) in print_tabs()