HomeSort by: relevance | last modified time | path
    Searched defs:isprint (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/sys/
ctype_inline.h 54 #define isprint(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_R)) macro
  /src/sys/external/bsd/acpica/dist/include/
acclib.h 181 #define isprint(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP | _ACPI_DI | _ACPI_XS | _ACPI_PU)) macro
  /src/sys/fs/udf/
udf_osta.c 308 static int isprint(int c) { function in typeref:typename:int
414 !isprint(udfName[extIndex +
  /src/sys/lib/libkern/
libkern.h 79 LIBKERN_INLINE int isprint(int) __unused;
209 return (ch != ' ' && isprint(ch));
213 isprint(int ch) function in typeref:typename:LIBKERN_INLINE int
221 return (isprint(ch) && ch != ' ' && !isalnum(ch));
  /src/sys/arch/luna68k/stand/boot/
bmd.c 96 #define isprint(c) ((c) >= 0x20 && (c) < 0x7f) macro
377 if (isprint(c)) {

Completed in 15 milliseconds