Lines Matching defs:printmode
1300 * input : printmode, which may be one of AUP_BINARY,
1309 convert_char_to_string(char printmode, char c, char *p)
1319 if (printmode == AUP_BINARY)
1321 else if (printmode == AUP_OCTAL)
1323 else if (printmode == AUP_DECIMAL)
1325 else if (printmode == AUP_HEX)
1327 else if (printmode == AUP_STRING)
1336 * input : printmode, which may be one of AUP_BINARY,
1344 convert_short_to_string(char printmode, short c, char *p)
1354 if (printmode == AUP_BINARY)
1356 else if (printmode == AUP_OCTAL)
1358 else if (printmode == AUP_DECIMAL)
1360 else if (printmode == AUP_HEX)
1362 else if (printmode == AUP_STRING)
1371 * input : printmode, which may be one of AUP_BINARY,
1379 convert_int32_to_string(char printmode, int32_t c, char *p)
1381 if (printmode == AUP_BINARY)
1383 else if (printmode == AUP_OCTAL)
1385 else if (printmode == AUP_DECIMAL)
1387 else if (printmode == AUP_HEX)
1389 else if (printmode == AUP_STRING)
1398 * input : printmode, which may be one of AUP_BINARY,
1406 convert_int64_to_string(char printmode, int64_t c, char *p)
1408 if (printmode == AUP_BINARY)
1410 else if (printmode == AUP_OCTAL)
1412 else if (printmode == AUP_DECIMAL)
1414 else if (printmode == AUP_HEX)
1416 else if (printmode == AUP_STRING)