Searched refs:table (Results 1 - 25 of 1436) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmpegaudio.c33 int ch_bitrate, table; local
39 table = 0;
41 table = 1;
43 table = 2;
45 table = 3;
47 table = 4;
49 return table;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmpegaudio.c33 int ch_bitrate, table; local
39 table = 0;
41 table = 1;
43 table = 2;
45 table = 3;
47 table = 4;
49 return table;
H A Dfft_init_table.c52 * definitions and initialization of LUT table for FFT
189 void ff_fft_lut_init(uint16_t *table, int off, int size, int *index) argument
192 table[*index] = off >> 2;
196 ff_fft_lut_init(table, off, size>>1, index);
197 ff_fft_lut_init(table, off+(size>>1), size>>2, index);
198 ff_fft_lut_init(table, off+3*(size>>2), size>>2, index);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dsysctl_check.c9 static int sysctl_depth(struct ctl_table *table) argument
15 for (tmp = table; tmp->parent; tmp = tmp->parent)
21 static struct ctl_table *sysctl_parent(struct ctl_table *table, int n) argument
25 for (i = 0; table && i < n; i++)
26 table = table->parent;
28 return table;
32 static void sysctl_print_path(struct ctl_table *table) argument
36 depth = sysctl_depth(table);
37 if (table
46 sysctl_check_lookup(struct nsproxy *namespaces, struct ctl_table *table) argument
86 set_fail(const char **fail, struct ctl_table *table, const char *str) argument
97 sysctl_check_leaf(struct nsproxy *namespaces, struct ctl_table *table, const char **fail) argument
107 sysctl_check_table(struct nsproxy *namespaces, struct ctl_table *table) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/boot/
H A Dplanetcore.h22 /* Prepare the table for processing, by turning all newlines
25 void planetcore_prepare_table(char *table);
32 const char *planetcore_get_key(const char *table, const char *key);
33 int planetcore_get_decimal(const char *table, const char *key, u64 *val);
34 int planetcore_get_hex(const char *table, const char *key, u64 *val);
39 void planetcore_set_mac_addrs(const char *table);
44 void planetcore_set_stdout_path(const char *table);
47 void planetcore_set_serial_speed(const char *table);
H A Dplanetcore.c20 * a table of key=value strings, separated by newlines.
29 void planetcore_prepare_table(char *table) argument
32 if (*table == '\n')
33 *table = 0;
35 table++;
36 } while (*(table - 1) || *table != '\n');
38 *table = 0;
41 const char *planetcore_get_key(const char *table, const char *key) argument
46 if (!strncmp(table, ke
55 planetcore_get_decimal(const char *table, const char *key, u64 *val) argument
65 planetcore_get_hex(const char *table, const char *key, u64 *val) argument
82 planetcore_set_mac_addrs(const char *table) argument
107 planetcore_set_stdout_path(const char *table) argument
135 planetcore_set_serial_speed(const char *table) argument
[all...]
H A Dep8248e.c18 static char *table; variable
28 planetcore_set_mac_addrs(table);
30 if (!planetcore_get_decimal(table, PLANETCORE_KEY_CRYSTAL_HZ, &val)) {
41 table = (char *)r3;
42 planetcore_prepare_table(table);
44 if (!planetcore_get_decimal(table, PLANETCORE_KEY_MB_RAM, &mem_size))
52 planetcore_set_stdout_path(table);
H A Dep88xc.c18 static char *table; variable
26 planetcore_set_mac_addrs(table);
28 if (!planetcore_get_decimal(table, PLANETCORE_KEY_CRYSTAL_HZ, &val)) {
39 table = (char *)r3;
40 planetcore_prepare_table(table);
42 if (!planetcore_get_decimal(table, PLANETCORE_KEY_MB_RAM, &mem_size))
50 planetcore_set_stdout_path(table);
H A Dep405.c24 static char *table; variable
33 planetcore_set_mac_addrs(table);
35 if (!planetcore_get_decimal(table, PLANETCORE_KEY_CRYSTAL_HZ, &val)) {
43 if (!planetcore_get_decimal(table, PLANETCORE_KEY_KB_NVRAM, &val)) {
59 table = (char *)r3;
60 planetcore_prepare_table(table);
62 if (!planetcore_get_decimal(table, PLANETCORE_KEY_MB_RAM, &mem_size))
70 planetcore_set_stdout_path(table);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unictype/
H A Dbitmap.h18 static inline int bitmap_lookup (const void *table, ucs4_t uc);
27 bitmap_lookup (const void *table, ucs4_t uc) argument
30 if (index1 < ((const int *) table)[0])
32 int lookup1 = ((const int *) table)[1 + index1];
36 int lookup2 = ((const short *) table)[lookup1 + index2];
40 unsigned int lookup3 = ((const int *) table)[lookup2 + index3];
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/lib/
H A Dinat.c35 const insn_attr_t *table; local
44 table = inat_escape_tables[n][0];
45 if (!table)
47 if (inat_has_variant(table[opcode]) && m) {
48 table = inat_escape_tables[n][m];
49 if (!table)
52 return table[opcode];
58 const insn_attr_t *table; local
67 table = inat_group_tables[n][0];
68 if (!table)
82 const insn_attr_t *table; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/unix/
H A Dsysctl_net_unix.c37 struct ctl_table *table; local
39 table = kmemdup(unix_table, sizeof(unix_table), GFP_KERNEL);
40 if (table == NULL)
43 table[0].data = &net->unx.sysctl_max_dgram_qlen;
44 net->unx.ctl = register_net_sysctl_table(net, unix_path, table);
51 kfree(table);
58 struct ctl_table *table; local
60 table = net->unx.ctl->ctl_table_arg;
62 kfree(table);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-hash.c2 /* dbus-hash.c Generic hash table utility (internal to D-Bus implementation)
8 * Hash table implementation based on generic/tclHash.c from the Tcl
83 * @defgroup DBusHashTable Hash table
91 * @defgroup DBusHashTableInternals Hash table implementation details
102 * the hash table to make it larger.
122 #define RANDOM_INDEX(table, i) \
123 (((((intptr_t) (i))*1103515245) >> (table)->down_shift) & (table)->mask)
126 * Initial number of buckets in hash table (hash table staticall
214 DBusHashTable *table; /**< Pointer to table containing entry. */ member in struct:__anon1669
289 DBusHashTable *table; local
347 _dbus_hash_table_ref(DBusHashTable *table) argument
361 _dbus_hash_table_unref(DBusHashTable *table) argument
418 _dbus_hash_table_remove_all(DBusHashTable *table) argument
429 alloc_entry(DBusHashTable *table) argument
439 free_entry_data(DBusHashTable *table, DBusHashEntry *entry) argument
449 free_entry(DBusHashTable *table, DBusHashEntry *entry) argument
457 remove_entry(DBusHashTable *table, DBusHashEntry **bucket, DBusHashEntry *entry) argument
517 _dbus_hash_iter_init(DBusHashTable *table, DBusHashIter *iter) argument
740 _dbus_hash_iter_lookup(DBusHashTable *table, void *key, dbus_bool_t create_if_not_found, DBusHashIter *iter) argument
771 add_allocated_entry(DBusHashTable *table, DBusHashEntry *entry, unsigned int idx, void *key, DBusHashEntry ***bucket) argument
799 add_entry(DBusHashTable *table, unsigned int idx, void *key, DBusHashEntry ***bucket, DBusPreallocatedHash *preallocated) argument
847 find_generic_function(DBusHashTable *table, void *key, unsigned int idx, KeyCompareFunc compare_func, dbus_bool_t create_if_not_found, DBusHashEntry ***bucket, DBusPreallocatedHash *preallocated) argument
888 find_string_function(DBusHashTable *table, void *key, dbus_bool_t create_if_not_found, DBusHashEntry ***bucket, DBusPreallocatedHash *preallocated) argument
904 find_direct_function(DBusHashTable *table, void *key, dbus_bool_t create_if_not_found, DBusHashEntry ***bucket, DBusPreallocatedHash *preallocated) argument
921 rebuild_table(DBusHashTable *table) argument
1049 _dbus_hash_table_lookup_string(DBusHashTable *table, const char *key) argument
1074 _dbus_hash_table_lookup_int(DBusHashTable *table, int key) argument
1099 _dbus_hash_table_lookup_uintptr(DBusHashTable *table, uintptr_t key) argument
1123 _dbus_hash_table_remove_string(DBusHashTable *table, const char *key) argument
1151 _dbus_hash_table_remove_int(DBusHashTable *table, int key) argument
1179 _dbus_hash_table_remove_uintptr(DBusHashTable *table, uintptr_t key) argument
1214 _dbus_hash_table_insert_string(DBusHashTable *table, char *key, void *value) argument
1248 _dbus_hash_table_insert_int(DBusHashTable *table, int key, void *value) argument
1289 _dbus_hash_table_insert_uintptr(DBusHashTable *table, uintptr_t key, void *value) argument
1322 _dbus_hash_table_preallocate_entry(DBusHashTable *table) argument
1339 _dbus_hash_table_free_preallocated_entry(DBusHashTable *table, DBusPreallocatedHash *preallocated) argument
1366 _dbus_hash_table_insert_string_preallocated(DBusHashTable *table, DBusPreallocatedHash *preallocated, char *key, void *value) argument
1397 _dbus_hash_table_get_n_entries(DBusHashTable *table) argument
1413 count_entries(DBusHashTable *table) argument
[all...]
H A Ddbus-hash.h2 /* dbus-hash.h Generic hash table utility (internal to D-Bus implementation)
77 DBusHashTable* _dbus_hash_table_ref (DBusHashTable *table);
78 void _dbus_hash_table_unref (DBusHashTable *table);
79 void _dbus_hash_table_remove_all (DBusHashTable *table);
80 void _dbus_hash_iter_init (DBusHashTable *table,
90 dbus_bool_t _dbus_hash_iter_lookup (DBusHashTable *table,
94 void* _dbus_hash_table_lookup_string (DBusHashTable *table,
96 void* _dbus_hash_table_lookup_int (DBusHashTable *table,
98 void* _dbus_hash_table_lookup_uintptr (DBusHashTable *table,
100 dbus_bool_t _dbus_hash_table_remove_string (DBusHashTable *table,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Dhash.c18 * Description: generic hash table implementation
31 const struct hashtable *table),
61 int hashtable_hash(const struct hashtable *table, const void *data) argument
63 return table->hash(data, table);
67 hashtable_find(const struct hashtable *table, const void *data, int id) argument
72 list_for_each(e, &table->members[id]) {
74 if (table->compare(n, data)) {
82 int hashtable_add(struct hashtable *table, struct hashtable_node *n, int id) argument
84 /* hash table i
29 hashtable_create(int hashsize, int limit, uint32_t (*hash)(const void *data, const struct hashtable *table), int (*compare)(const void *data1, const void *data2)) argument
94 hashtable_del(struct hashtable *table, struct hashtable_node *n) argument
100 hashtable_flush(struct hashtable *table) argument
116 hashtable_iterate_limit(struct hashtable *table, void *data, uint32_t from, uint32_t steps, int (*iterate)(void *data1, void *n)) argument
134 hashtable_iterate(struct hashtable *table, void *data, int (*iterate)(void *data1, void *n)) argument
140 hashtable_counter(const struct hashtable *table) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libcsc-0.82.3/doc/manl/
H A Dcsc_hash.l7 Hash table Subsystem
10 CSChashNew - create a new libcsc hash table
11 CSChashDel - remove a libcsc hash table
12 CSChashStat - query statistics of a libcsc hash table
13 CSChashEntryPut - put an entry into a libcsc hash table
14 CSChashEntryGet - get an item from a libcsc hash table
15 CSChashEntryDel - remove an entry from a libcsc hash table
16 CSChashEntryNext - find next entry in a libcsc hash table
17 CSChashEntryStat - query the fields of a libcsc hash table entry
18 CSChashRead - read an ASCII format libcsc hash table
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Dhash.c35 * A single entry in the hash table
49 * The entire hash table
52 struct _xmlHashEntry *table; member in struct:_xmlHashTable
63 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name, argument
84 return (value % table->size);
88 xmlHashComputeQKey(xmlHashTablePtr table, argument
133 return (value % table->size);
138 * @size: the size of the hash table
146 xmlHashTablePtr table; local
151 table
177 xmlHashTablePtr table; local
197 xmlHashGrow(xmlHashTablePtr table, int size) argument
288 xmlHashFree(xmlHashTablePtr table, xmlHashDeallocator f) argument
344 xmlHashAddEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata) argument
361 xmlHashAddEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, void *userdata) argument
380 xmlHashUpdateEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata, xmlHashDeallocator f) argument
400 xmlHashUpdateEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, void *userdata, xmlHashDeallocator f) argument
416 xmlHashLookup(xmlHashTablePtr table, const xmlChar *name) argument
431 xmlHashLookup2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2) argument
447 xmlHashQLookup(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name) argument
465 xmlHashQLookup2(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name, const xmlChar *prefix2, const xmlChar *name2) argument
486 xmlHashAddEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, void *userdata) argument
602 xmlHashUpdateEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, void *userdata, xmlHashDeallocator f) argument
724 xmlHashLookup3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3) argument
768 xmlHashQLookup3(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name, const xmlChar *prefix2, const xmlChar *name2, const xmlChar *prefix3, const xmlChar *name3) argument
814 xmlHashScan(xmlHashTablePtr table, xmlHashScanner f, void *data) argument
830 xmlHashScanFull(xmlHashTablePtr table, xmlHashScannerFull f, void *data) argument
881 xmlHashScan3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashScanner f, void *data) argument
902 xmlHashScanFull3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashScannerFull f, void *data) argument
944 xmlHashCopy(xmlHashTablePtr table, xmlHashCopier f) argument
983 xmlHashSize(xmlHashTablePtr table) argument
1001 xmlHashRemoveEntry(xmlHashTablePtr table, const xmlChar *name, xmlHashDeallocator f) argument
1020 xmlHashRemoveEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, xmlHashDeallocator f) argument
1040 xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashDeallocator f) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Dhash.c35 * A single entry in the hash table
49 * The entire hash table
52 struct _xmlHashEntry *table; member in struct:_xmlHashTable
63 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name, argument
84 return (value % table->size);
88 xmlHashComputeQKey(xmlHashTablePtr table, argument
133 return (value % table->size);
138 * @size: the size of the hash table
146 xmlHashTablePtr table; local
151 table
177 xmlHashTablePtr table; local
197 xmlHashGrow(xmlHashTablePtr table, int size) argument
288 xmlHashFree(xmlHashTablePtr table, xmlHashDeallocator f) argument
344 xmlHashAddEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata) argument
361 xmlHashAddEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, void *userdata) argument
380 xmlHashUpdateEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata, xmlHashDeallocator f) argument
400 xmlHashUpdateEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, void *userdata, xmlHashDeallocator f) argument
416 xmlHashLookup(xmlHashTablePtr table, const xmlChar *name) argument
431 xmlHashLookup2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2) argument
447 xmlHashQLookup(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name) argument
465 xmlHashQLookup2(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name, const xmlChar *prefix2, const xmlChar *name2) argument
486 xmlHashAddEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, void *userdata) argument
602 xmlHashUpdateEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, void *userdata, xmlHashDeallocator f) argument
724 xmlHashLookup3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3) argument
768 xmlHashQLookup3(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name, const xmlChar *prefix2, const xmlChar *name2, const xmlChar *prefix3, const xmlChar *name3) argument
814 xmlHashScan(xmlHashTablePtr table, xmlHashScanner f, void *data) argument
830 xmlHashScanFull(xmlHashTablePtr table, xmlHashScannerFull f, void *data) argument
881 xmlHashScan3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashScanner f, void *data) argument
902 xmlHashScanFull3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashScannerFull f, void *data) argument
944 xmlHashCopy(xmlHashTablePtr table, xmlHashCopier f) argument
983 xmlHashSize(xmlHashTablePtr table) argument
1001 xmlHashRemoveEntry(xmlHashTablePtr table, const xmlChar *name, xmlHashDeallocator f) argument
1020 xmlHashRemoveEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, xmlHashDeallocator f) argument
1040 xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashDeallocator f) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/include/asm/
H A Dagp.h17 #define free_gatt_pages(table, order) \
18 free_pages((unsigned long)(table), (order))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/include/asm/
H A Dagp.h13 #define free_gatt_pages(table, order) \
14 free_pages((unsigned long)(table), (order))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Dagp.h23 #define free_gatt_pages(table, order) \
24 free_pages((unsigned long)(table), (order))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dhash.c35 * A single entry in the hash table
49 * The entire hash table
52 struct _xmlHashEntry *table; member in struct:_xmlHashTable
63 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name, argument
84 return (value % table->size);
88 xmlHashComputeQKey(xmlHashTablePtr table, argument
133 return (value % table->size);
138 * @size: the size of the hash table
146 xmlHashTablePtr table; local
151 table
177 xmlHashTablePtr table; local
197 xmlHashGrow(xmlHashTablePtr table, int size) argument
288 xmlHashFree(xmlHashTablePtr table, xmlHashDeallocator f) argument
344 xmlHashAddEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata) argument
361 xmlHashAddEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, void *userdata) argument
380 xmlHashUpdateEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata, xmlHashDeallocator f) argument
400 xmlHashUpdateEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, void *userdata, xmlHashDeallocator f) argument
416 xmlHashLookup(xmlHashTablePtr table, const xmlChar *name) argument
431 xmlHashLookup2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2) argument
447 xmlHashQLookup(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name) argument
465 xmlHashQLookup2(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name, const xmlChar *prefix2, const xmlChar *name2) argument
486 xmlHashAddEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, void *userdata) argument
602 xmlHashUpdateEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, void *userdata, xmlHashDeallocator f) argument
724 xmlHashLookup3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3) argument
768 xmlHashQLookup3(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name, const xmlChar *prefix2, const xmlChar *name2, const xmlChar *prefix3, const xmlChar *name3) argument
814 xmlHashScan(xmlHashTablePtr table, xmlHashScanner f, void *data) argument
830 xmlHashScanFull(xmlHashTablePtr table, xmlHashScannerFull f, void *data) argument
870 xmlHashScan3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashScanner f, void *data) argument
891 xmlHashScanFull3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashScannerFull f, void *data) argument
933 xmlHashCopy(xmlHashTablePtr table, xmlHashCopier f) argument
972 xmlHashSize(xmlHashTablePtr table) argument
990 xmlHashRemoveEntry(xmlHashTablePtr table, const xmlChar *name, xmlHashDeallocator f) argument
1009 xmlHashRemoveEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, xmlHashDeallocator f) argument
1029 xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashDeallocator f) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dhash.c35 * A single entry in the hash table
49 * The entire hash table
52 struct _xmlHashEntry *table; member in struct:_xmlHashTable
63 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name, argument
84 return (value % table->size);
88 xmlHashComputeQKey(xmlHashTablePtr table, argument
133 return (value % table->size);
138 * @size: the size of the hash table
146 xmlHashTablePtr table; local
151 table
177 xmlHashTablePtr table; local
197 xmlHashGrow(xmlHashTablePtr table, int size) argument
288 xmlHashFree(xmlHashTablePtr table, xmlHashDeallocator f) argument
344 xmlHashAddEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata) argument
361 xmlHashAddEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, void *userdata) argument
380 xmlHashUpdateEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata, xmlHashDeallocator f) argument
400 xmlHashUpdateEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, void *userdata, xmlHashDeallocator f) argument
416 xmlHashLookup(xmlHashTablePtr table, const xmlChar *name) argument
431 xmlHashLookup2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2) argument
447 xmlHashQLookup(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name) argument
465 xmlHashQLookup2(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name, const xmlChar *prefix2, const xmlChar *name2) argument
486 xmlHashAddEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, void *userdata) argument
602 xmlHashUpdateEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, void *userdata, xmlHashDeallocator f) argument
724 xmlHashLookup3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3) argument
768 xmlHashQLookup3(xmlHashTablePtr table, const xmlChar *prefix, const xmlChar *name, const xmlChar *prefix2, const xmlChar *name2, const xmlChar *prefix3, const xmlChar *name3) argument
814 xmlHashScan(xmlHashTablePtr table, xmlHashScanner f, void *data) argument
830 xmlHashScanFull(xmlHashTablePtr table, xmlHashScannerFull f, void *data) argument
870 xmlHashScan3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashScanner f, void *data) argument
891 xmlHashScanFull3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashScannerFull f, void *data) argument
933 xmlHashCopy(xmlHashTablePtr table, xmlHashCopier f) argument
972 xmlHashSize(xmlHashTablePtr table) argument
990 xmlHashRemoveEntry(xmlHashTablePtr table, const xmlChar *name, xmlHashDeallocator f) argument
1009 xmlHashRemoveEntry2(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, xmlHashDeallocator f) argument
1029 xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name, const xmlChar *name2, const xmlChar *name3, xmlHashDeallocator f) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/mod_db4/
H A Dmm_hash.c19 MM_Hash *table; local
21 table = (MM_Hash *) mm_calloc(mm, 1, sizeof(MM_Hash));
22 table->mm = mm;
23 table->dtor = dtor;
25 return table;
28 void mm_hash_free(MM_Hash *table) argument
35 cur = table->buckets[i];
39 if (table->dtor) table->dtor(cur->data);
40 mm_free(table
59 mm_hash_find(MM_Hash *table, const void *key, int length) argument
75 mm_hash_update(MM_Hash *table, char *key, int length, void *data) argument
103 mm_hash_delete(MM_Hash *table, char *key, int length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A Dhash.c1 /* hash - implement simple hashing table with string based keys.
85 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
98 htab->table = XCALLOC (init_size + 1, hash_entry);
106 /* Delete a hash table's contents.
111 free (htab->table);
143 /* Look up a given key in the hash table.
153 hash_entry *table = htab->table; local
160 if (table[idx].used)
162 if (table[id
193 hash_entry *table = htab->table; local
212 hash_entry *table = htab->table; local
241 hash_entry *table = htab->table; local
271 hash_entry *table = htab->table; local
298 hash_entry *table = htab->table; local
[all...]

Completed in 156 milliseconds

1234567891011>>