sqlite / injectable_functions /hash_injectable_functions.json
AryaWu's picture
Upload folder using huggingface_hub
7510827 verified
[
{
"function_name": "sqlite3HashClear",
"function_signature": "void sqlite3HashClear(Hash *pH)",
"test_filename": "tests_hash_sqlite3HashClear.c"
},
{
"function_name": "strHash",
"function_signature": "static unsigned int strHash(const char *z)",
"test_filename": "tests_hash_strHash.c"
},
{
"function_name": "insertElement",
"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)",
"test_filename": "tests_hash_insertElement.c"
},
{
"function_name": "rehash",
"function_signature": "static int rehash(Hash *pH, unsigned int new_size)",
"test_filename": "tests_hash_rehash.c"
},
{
"function_name": "removeElement",
"function_signature": "static void removeElement(\n Hash *pH, /* The pH containing \"elem\" */\n HashElem *elem /* The element to be removed from the pH */\n)",
"test_filename": "tests_hash_removeElement.c"
}
]