HomeSort by relevance Sort by last modified time
    Searched refs:atable (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
atom.h 53 extern AtomTable *atable;
55 int InitAtomTable(AtomTable *atable, int htsize);
56 void FreeAtomTable(AtomTable *atable);
57 int AddAtom(AtomTable *atable, const char *s);
58 void PrintAtomTable(AtomTable *atable);
59 int LookUpAddString(AtomTable *atable, const char *s);
60 const char *GetAtomString(AtomTable *atable, int atom);
61 int GetReversedAtom(AtomTable *atable, int atom);
62 char* GetStringOfAtom(AtomTable *atable, int atom);
atom.c 310 AtomTable *atable = &latable; variable
312 static int AddAtomFixed(AtomTable *atable, const char *s, int atom);
319 static int GrowAtomTable(AtomTable *atable, int size)
323 if (atable->size < size) {
324 if (atable->amap) {
325 newmap = realloc(atable->amap, sizeof(int)*size);
326 newrev = realloc(atable->arev, sizeof(int)*size);
330 atable->size = 0;
335 atable->amap = newmap;
337 atable->amap = newrev
    [all...]
preprocess.h 49 int InitAtomTable(AtomTable *atable, int htsize);
51 char* GetStringOfAtom(AtomTable *atable, int atom);
cpp.c 97 bindAtom = LookUpAddString(atable, "bind");
98 constAtom = LookUpAddString(atable, "const");
99 defaultAtom = LookUpAddString(atable, "default");
100 defineAtom = LookUpAddString(atable, "define");
101 definedAtom = LookUpAddString(atable, "defined");
102 elifAtom = LookUpAddString(atable, "elif");
103 elseAtom = LookUpAddString(atable, "else");
104 endifAtom = LookUpAddString(atable, "endif");
105 ifAtom = LookUpAddString(atable, "if");
106 ifdefAtom = LookUpAddString(atable, "ifdef")
    [all...]
cppstruct.c 115 if (!InitAtomTable(atable, 0))
142 FreeAtomTable(atable);
symbols.c 185 frev = GetReversedAtom(atable, fSymb->name);
187 lrev = GetReversedAtom(atable, lSymb->name);
189 CPPErrorToInfoLog("GetAtomString(atable, fSymb->name)");
246 ratom = GetReversedAtom(atable, atom);
251 rname = GetReversedAtom(atable, lSymb->name);
tokens.c 219 s = GetAtomString(atable, yylvalpp->sc_ident);
285 yylvalpp->sc_ident = LookUpAddString(atable, symbol_name);
294 yylvalpp->sc_ident = LookUpAddString(atable, string_val);
412 sprintf(str, "%s ", GetAtomString(atable, yylvalpp->sc_ident));
415 sprintf(str, "\"%s\"", GetAtomString(atable, yylvalpp->sc_ident));
425 sprintf(str, "%s ", GetAtomString(atable, token));
scanner.c 304 yylvalpp->sc_ident = LookUpAddString(atable, yylvalpp->symbol_name);
602 yylvalpp->sc_ident = LookUpAddString(atable, string_val);
647 tokenString = GetStringOfAtom(atable,yylvalpp.sc_ident);
651 tokenString = GetStringOfAtom(atable,token);

Completed in 123 milliseconds