| /src/lib/libedit/ |
| tokenizer.c | 38 static char sccsid[] = "@(#)tokenizer.c 8.1 (Berkeley) 6/4/93"; 70 #define Char char 77 #define Char wchar_t 86 Char *ifs; /* In field separator */ 88 const Char **argv; /* Argument list */ 89 Char *wptr, *wmax; /* Space and limit on the word buffer */ 90 Char *wstart; /* Beginning of next word */ 91 Char *wspace; /* Space of word buffer */ 121 FUN(tok,init)(const Char *ifs [all...] |
| history.c | 38 static char sccsid[] = "@(#)history.c 8.1 (Berkeley) 6/4/93"; 54 static const char hist_cookie[] = "_HiStOrY_V2_\n"; 61 #define Char char 79 #define Char wchar_t 96 typedef int (*history_efun_t)(void *, TYPE(HistEvent) *, const Char *); 133 Char *str; 142 static int history_load(TYPE(History) *, const char *); 143 static int history_save(TYPE(History) *, const char *); 148 const Char *); [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CodeGenTBAA.h | 140 llvm::MDNode *Char; 146 /// getChar - This is the mdnode for "char", which is special, and any types
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/ |
| RustDemangle.h | 33 Char, 98 uint64_t parseOptionalBase62Number(char Tag); 103 void print(char C) { 126 char look() const { 133 char consume() { 142 bool consumeIf(char Prefix) {
|
| MicrosoftDemangleNodes.h | 88 Char, 110 Char, 607 CharKind Char = CharKind::Char;
|
| /src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| TGLexer.cpp | 37 const char *Word; 75 tgtok::TokKind TGLexer::ReturnError(const char *Loc, const Twine &Msg) { 107 char CurChar = *CurPtr++; 110 return (unsigned char)CurChar; 131 ++CurPtr; // Eat the two char newline sequence. 270 const char *StrStart = CurPtr; 326 const char *VarNameStart = CurPtr++; 337 const char *IdentStart = TokStart; 466 const char *NumStart = CurPtr; 489 const char *NumStart = CurPtr [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/ |
| MILexer.cpp | 33 const char *Ptr = nullptr; 34 const char *End = nullptr; 46 char peek(int I = 0) const { return End - Ptr <= I ? 0 : Ptr[I]; } 93 static bool isNewlineChar(char C) { return C == '\n' || C == '\r'; } 120 static bool isIdentifierChar(char C) { 135 char Char = C.peek(); 136 if (Char == '\\') { 149 Str += Char; 426 static bool isRegisterChar(char C) [all...] |
| /src/external/bsd/bzip2/dist/ |
| bzip2recover.c | 56 typedef unsigned char UChar; 57 typedef char Char; 58 typedef unsigned char Bool; 65 Char inFileName[BZ_MAX_FILENAME]; 66 Char outFileName[BZ_MAX_FILENAME]; 67 Char progName[BZ_MAX_FILENAME]; 81 Char mode; 95 static Bool endsInBz2 ( Char* name ); 276 static Bool endsInBz2 ( Char* name [all...] |
| bzip2.c | 163 typedef char Char; 164 typedef unsigned char Bool; 165 typedef unsigned char UChar; 207 Char inName [FILE_NAME_LEN]; 208 Char outName[FILE_NAME_LEN]; 209 Char tmpName[FILE_NAME_LEN]; 210 Char *progName; 211 Char progNameReally[FILE_NAME_LEN]; 215 static void panic ( const Char* ) NORETURN [all...] |
| bzlib_private.h | 43 typedef char Char; 44 typedef unsigned char Bool; 45 typedef unsigned char UChar;
|
| /src/lib/libc/gen/ |
| glob.c | 38 static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; 135 typedef unsigned short Char; 139 #define M_QUOTE (Char)0x80 140 #define M_PROTECT (Char)0x40 141 #define M_MASK (Char)0xff 142 #define M_ASCII (Char)0x7f 144 typedef char Char; 149 #define CHAR(c) ((Char)((c)&M_ASCII) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| glob.c | 122 typedef u_short Char; 131 typedef char Char; 136 #define CHAR(c) ((Char)((c)&M_ASCII)) 137 #define META(c) ((Char)((c)|M_QUOTE)) 148 static void g_Ctoc (const Char *, char *); 149 static int g_lstat (Char *, struct stat *, glob_t *); 150 static DIR *g_opendir (Char *, glob_t *) [all...] |
| /src/lib/libc/gdtoa/ |
| gdtoaimp.h | 218 #define Char char 220 #define Char void 224 extern Char *MALLOC ANSI((size_t)); 586 extern char *dtoa_result; 588 extern unsigned char hexdig[]; 605 extern char *dtoa ANSI((double d, int mode, int ndigits, 606 int *decpt, int *sign, char **rve)); 607 extern char *g__fmt ANSI((char*, char*, char*, int, ULong, size_t)) [all...] |
| /src/external/gpl2/groff/dist/src/libs/libdriver/ |
| input.cpp | 127 - The many usages of type `int' are differentiated by using `Char', 289 class Char { 292 Char(void) : data('\0') {} 293 Char(const int c) : data(c) {} 294 bool operator==(char c) const { return (data == c) ? true : false; } 296 bool operator==(const Char c) const 298 bool operator!=(char c) const { return !(*this == c); } 300 bool operator!=(const Char c) const { return !(*this == c); } 302 operator unsigned char() const { return (unsigned char) data; [all...] |
| /src/bin/csh/ |
| csh.h | 66 typedef short Char; 70 typedef char Char; 84 #include "char.h" 131 extern Char *arginp; /* Argument input for sh -c and internal `xx` */ 132 extern Char *ffile; /* Name of shell file for $0 */ 135 extern char *seterr; /* Error message from scanner/parser */ 136 extern Char *shtemp; /* Temp name for << shell files in /tmp */ 149 extern Char *doldol; /* Character pid for $$ */ 189 extern Char *gointr; /* Label for an onintr transfer * [all...] |
| /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/ |
| bzlib_private.h | 43 typedef char Char; 44 typedef unsigned char Bool; 45 typedef unsigned char UChar;
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| Lexer.cpp | 79 void Lexer::InitLexer(const char *BufStart, const char *BufPtr, 80 const char *BufEnd) { 150 const char *BufStart, const char *BufPtr, const char *BufEnd) 203 const char *StrData = SM.getCharacterData(SpellingLoc); 233 template <typename T> static void StringifyImpl(T &Str, char Quote) { 260 char Quote = Charify ? '\'' : '"'; 265 void Lexer::Stringify(SmallVectorImpl<char> &Str) { StringifyImpl(Str, '"'); [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/ |
| PDBTypes.h | 338 Char = 2, 465 char *String; 587 Value.String = new char[strlen(Other.Value.String) + 1];
|
| /src/external/gpl2/mkhybrid/dist/libhfs_iso/ |
| internal.h | 37 (((char *) (bm))[(num) >> 3] & (0x80 >> ((num) & 0x07))) 39 (((char *) (bm))[(num) >> 3] |= (0x80 >> ((num) & 0x07))) 41 (((char *) (bm))[(num) >> 3] &= ~(0x80 >> ((num) & 0x07))) 43 typedef unsigned char block[HFS_BLOCKSZ]; 45 typedef signed char Char; 46 typedef unsigned char UChar; 47 typedef signed char SignedByte; 52 typedef char Str15[16]; 53 typedef char Str31[32] [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| SelectionDAGBuilder.cpp | 313 const char *AsmError = ", possible invalid constraint for vector type"; 5731 const char *FunctionName) { 6810 if (const char *FunctionName = TLI.getClearCacheBuiltinName()) 7667 const Value *Char = I.getArgOperand(1); 7673 getValue(Src), getValue(Char), getValue(Length), 8547 const char *RegName = TRI.getName(Reg);
|