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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
atom.h 51 typedef struct AtomTable_Rec AtomTable;
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)
    [all...]
preprocess.h 49 int InitAtomTable(AtomTable *atable, int htsize);
51 char* GetStringOfAtom(AtomTable *atable, int atom);
atom.c 309 static AtomTable latable = { { 0 } };
310 AtomTable *atable = &latable;
312 static int AddAtomFixed(AtomTable *atable, const char *s, int atom);
319 static int GrowAtomTable(AtomTable *atable, int size)
379 static int AllocateAtom(AtomTable *atable)
394 static void SetAtomValue(AtomTable *atable, int atomnumber, int hashindex)
405 static int FindHashLoc(AtomTable *atable, const char *s)
461 static int IncreaseHashTableSize(AtomTable *atable)
464 AtomTable oldtable;
493 static int LookUpAddStringHash(AtomTable *atable, const char *s
    [all...]

Completed in 57 milliseconds