CoolFace
Modelpublic

AryaWu/sqlite

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
hash_injectable_functions.json27 linesDownload Raw Back to injectable_functions
1[2  {3    "function_name": "sqlite3HashClear",4    "function_signature": "void sqlite3HashClear(Hash *pH)",5    "test_filename": "tests_hash_sqlite3HashClear.c"6  },7  {8    "function_name": "strHash",9    "function_signature": "static unsigned int strHash(const char *z)",10    "test_filename": "tests_hash_strHash.c"11  },12  {13    "function_name": "insertElement",14    "function_signature": "static void insertElement(\n  Hash *pH,              /* The complete hash table */\n  struct _ht *pEntry,    /* The entry into which pNew is inserted */\n  HashElem *pNew         /* The element to be inserted */\n)",15    "test_filename": "tests_hash_insertElement.c"16  },17  {18    "function_name": "rehash",19    "function_signature": "static int rehash(Hash *pH, unsigned int new_size)",20    "test_filename": "tests_hash_rehash.c"21  },22  {23    "function_name": "removeElement",24    "function_signature": "static void removeElement(\n  Hash *pH,         /* The pH containing \"elem\" */\n  HashElem *elem    /* The element to be removed from the pH */\n)",25    "test_filename": "tests_hash_removeElement.c"26  }27]