Lines Matching defs:format

61 #define	PTR_HEX		0	/* emit hex pointer format char */
62 #define LONG_DEC 1 /* emit decimal long format char */
63 #define LONG_OCT 2 /* emit octal unsigned long format char */
64 #define ULONG_DEC 3 /* emit decimal unsigned long format char */
65 #define ULONG_HEX 4 /* emit hexadecimal long format char */
66 #define ULONG_OCT 5 /* emit octal unsigned long format char */
68 #define FMT_ENTRIES 6 /* number of adbgen format specifier strings */
70 #define PRINT 6 /* print member name with format */
90 char format[STRLEN]; /* adb format spec */
92 char *ptr_hex_fmt; /* adb format character for pointer in hex */
93 char *long_dec_fmt; /* adb format character for long in decimal */
94 char *ulong_dec_fmt; /* adb format character for ulong in decimal */
95 char *ulong_hex_fmt; /* adb format character for ulong in hex */
96 char *long_oct_fmt; /* adb format character for long in octal */
97 char *ulong_oct_fmt; /* adb format character for ulong in octal */
188 * with breaks for {} format specifications.
195 printf("void format(char *name, size_t size, char *fmt);\n");
326 * The second part, if present, is put into "format".
359 cp = format;
364 * requests of the form {member, {format string}}
488 * Emit call to "format" subroutine
495 * Split the format string into <number><format character string>
496 * This is for format strings that contain format specifier requests
498 * with a format character instead.
500 for (cp = format, i = 0; *cp >= '0' && *cp <= '9' && *cp != '\0';
514 sprintf(arg[2], "\"%s\"", format);
516 emit_call("format", 3);
542 sprintf(arg[2], "\"%s\"", format); /* adb register name */
574 sprintf(arg[1], "(%s)", format);