Home
last modified time | relevance | path

Searched refs:table (Results 176 – 200 of 1082) sorted by relevance

12345678910>>...44

/dragonfly/contrib/diffutils/lib/
H A Dexclude.c108 Hash_table *table; /* for type == exclude_hash */ member
266 sp->v.table = hash_initialize (0, NULL, in new_exclude_segment()
298 hash_free (seg->v.table); in free_exclude_segment()
430 Hash_table *table = seg->v.table; in file_name_matches() local
439 if (hash_lookup (table, buffer)) in file_name_matches()
599 p = hash_insert (seg->v.table, str); in add_exclude()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dcfgbuild.c406 purge_dead_tablejump_edges (basic_block bb, rtx table) in purge_dead_tablejump_edges() argument
414 if (GET_CODE (PATTERN (table)) == ADDR_VEC) in purge_dead_tablejump_edges()
415 vec = XVEC (PATTERN (table), 0); in purge_dead_tablejump_edges()
417 vec = XVEC (PATTERN (table), 1); in purge_dead_tablejump_edges()
454 rtx table; in find_bb_boundaries() local
533 if (bb != orig_bb && tablejump_p (BB_END (bb), NULL, &table)) in find_bb_boundaries()
534 purge_dead_tablejump_edges (bb, table); in find_bb_boundaries()
H A Dtree-ssa-ter.c174 #define VIRTUAL_PARTITION(table) (table->virtual_partition) argument
712 temp_expr_table_p table; in find_replaceable_exprs() local
715 table = new_temp_expr_table (map); in find_replaceable_exprs()
718 find_replaceable_in_bb (table, bb); in find_replaceable_exprs()
719 gcc_checking_assert (bitmap_empty_p (table->partition_in_use)); in find_replaceable_exprs()
722 ret = free_temp_expr_table (table); in find_replaceable_exprs()
/dragonfly/contrib/grep/lib/
H A Dexclude.c108 Hash_table *table; /* for type == exclude_hash */ member
266 sp->v.table = hash_initialize (0, NULL, in new_exclude_segment()
298 hash_free (seg->v.table); in free_exclude_segment()
430 Hash_table *table = seg->v.table; in file_name_matches() local
439 if (hash_lookup (table, buffer)) in file_name_matches()
599 p = hash_insert (seg->v.table, str); in add_exclude()
/dragonfly/share/i18n/csmapper/JIS/
H A DUCS@SIP%JISX0213-1.src11 ## Shift_JIS-2004 (JIS X 0213:2004) vs Unicode mapping table
17 ## You can use, modify, distribute this table freely.
28 ## In this table, such characters are described as 'U+xxxx+xxxx'.
H A DJISX0213-1%UCS@SIP.src11 ## JIS X 0213:2004 vs Unicode mapping table
18 ## You can use, modify, distribute this table freely.
31 ## In this table, such characters are described as 'U+xxxx+xxxx'.
/dragonfly/contrib/file/magic/Magdir/
H A Dfonts234 # offset to optional horizontal offset table 0 58h~88 5eh 252h
235 #>68 ulelong x \b, %#x horizontal table offset
277 # 46 different table names mentioned on Apple specification
297 # DSIG=44454947h table name implies a digitally signed font
304 # table directory entries
310 # search for naming table
315 # offset of name table
320 # name table
329 # offset to start of string storage from start of table
380 # sfnt version often 0x00010000 of 1st table is TrueType
[all …]
/dragonfly/contrib/binutils-2.34/bfd/
H A Dlibcoff.h288 #define coff_link_hash_lookup(table, string, create, copy, follow) \ argument
290 bfd_link_hash_lookup (&(table)->root, (string), (create), \
295 #define coff_link_hash_traverse(table, func, info) \ argument
297 (&(table)->root, \
438 #define coff_debug_merge_hash_table_init(table) \ argument
439 (bfd_hash_table_init (&(table)->root, _bfd_coff_debug_merge_hash_newfunc, \
444 #define coff_debug_merge_hash_table_free(table) \ argument
445 (bfd_hash_table_free (&(table)->root))
449 #define coff_debug_merge_hash_lookup(table, string, create, copy) \ argument
451 bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
/dragonfly/contrib/binutils-2.27/gas/doc/
H A Dc-score.texi29 The following table lists all available SCORE options.
31 @table @code
80 @end table
88 following table is far from complete.
90 @table @code
142 @end table
H A Dc-lm32.texi28 @table @code
66 @end table
93 @table @code
134 @end table
149 @table @code
203 @end table
H A Dc-m68hc11.texi32 @table @code
142 @end table
186 @table @dfn
200 @end table
205 @table @dfn
242 @end table
270 @table @code
296 @end table
367 @end table
393 @end table
[all …]
/dragonfly/sys/bus/ppbus/
H A Dppb_msq.c58 struct ppb_xfer *table; in mode2xfer() local
62 table = ppbdev->get_xfer; in mode2xfer()
66 table = ppbdev->put_xfer; in mode2xfer()
104 return (&table[index]); in mode2xfer()
/dragonfly/crypto/libressl/crypto/bn/
H A Dbn_exp.c573 BN_ULONG *table = (BN_ULONG *)buf; in MOD_EXP_CTIME_COPY_TO_PREBUF() local
579 table[j] = b->d[i]; in MOD_EXP_CTIME_COPY_TO_PREBUF()
597 for (i = 0; i < top; i++, table += width) { in MOD_EXP_CTIME_COPY_FROM_PREBUF()
601 acc |= table[j] & in MOD_EXP_CTIME_COPY_FROM_PREBUF()
623 acc |= ( (table[j + 0 * xstride] & y0) | in MOD_EXP_CTIME_COPY_FROM_PREBUF()
624 (table[j + 1 * xstride] & y1) | in MOD_EXP_CTIME_COPY_FROM_PREBUF()
625 (table[j + 2 * xstride] & y2) | in MOD_EXP_CTIME_COPY_FROM_PREBUF()
626 (table[j + 3 * xstride] & y3) ) in MOD_EXP_CTIME_COPY_FROM_PREBUF()
752 const void *table, const BN_ULONG *np, in BN_mod_exp_mont_consttime()
755 void *table, size_t power); in BN_mod_exp_mont_consttime()
[all …]
/dragonfly/sys/libkern/
H A Dscanc.c38 scanc(u_int size, const u_char *cp, const u_char table[], int mask0) in scanc() argument
45 if (table[*cp] & mask) in scanc()
/dragonfly/nrelease/gui/root/
H A D.ideskrc1 table Config
16 table Actions
/dragonfly/gnu/usr.bin/rcs/lib/
H A Dpartime.c184 lookup (s, table) in lookup() argument
186 struct name_val const table[];
198 for (; table[0].name[0]; table++)
199 for (j = 0; buf[j] == table[0].name[j]; )
200 if (++j == NAME_LENGTH_MAXIMUM || !table[0].name[j])
203 return table[0].val;
/dragonfly/sys/dev/drm/amd/powerplay/hwmgr/
H A Dsmu_helper.h68 extern int phm_reset_single_dpm_table(void *table, uint32_t count, int max);
69 extern void phm_setup_pcie_table_entry(void *table, uint32_t index, uint32_t pcie_gen, uint32_t pci…
70 extern int32_t phm_get_dpm_level_enable_mask_value(void *table);
75 extern int phm_find_boot_level(void *table, uint32_t value, uint32_t *boot_level);
102 void *smu_atom_get_data_table(void *dev, uint32_t table, uint16_t *size,
/dragonfly/contrib/tcp_wrappers/
H A Dtcpdchk.c195 static void parse_table(table, request) in parse_table() argument
196 char *table; in parse_table()
211 if ((fp = fopen(table, "r")) != NULL) {
212 tcpd_context.file = table;
265 tcpd_warn("cannot open %s: %m", table);
/dragonfly/sys/dev/disk/mpt/
H A Dmpt_debug.c657 mpt_decode_value(mpt_decode_entry_t *table, u_int num_entries,
675 if (table == NULL) {
685 if (((value & table[entry].mask)
686 != table[entry].value)
687 || ((printed_mask & table[entry].mask)
688 == table[entry].mask))
693 table[entry].name);
694 printed_mask |= table[entry].mask;
/dragonfly/sys/ddb/
H A Ddb_command.c157 static void db_cmd_list (struct command *table,
160 static int db_cmd_search (char *name, struct command *table,
176 db_cmd_search(char *name, struct command *table, struct command **aux_tablep, in db_cmd_search() argument
183 for (cmd = table; cmd->name != 0; cmd++) { in db_cmd_search()
255 db_cmd_list(struct command *table, struct command **aux_tablep, in db_cmd_list() argument
261 for (cmd = table; cmd->name != 0; cmd++) { in db_cmd_list()
/dragonfly/contrib/zstd/lib/common/
H A Dfse.h438 const void* table; /* precise table may vary, depending on U16 */ member
608 DStatePtr->table = dt + 1; in FSE_initDState()
613 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_peekSymbol()
619 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_updateState()
627 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbol()
640 FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; in FSE_decodeSymbolFast()
/dragonfly/sys/dev/drm/radeon/
H A Dcypress_dpm.h118 RV770_SMC_STATETABLE *table);
120 RV770_SMC_STATETABLE *table);
123 RV770_SMC_STATETABLE *table);
/dragonfly/sys/dev/netif/iwm/
H A Dif_iwm.c5252 if (iwm_read_mem(sc, base, &table, sizeof(table)/sizeof(uint32_t))) { in iwm_nic_umac_error()
5268 table.ilink1); in iwm_nic_umac_error()
5270 table.ilink2); in iwm_nic_umac_error()
5277 table.frame_pointer); in iwm_nic_umac_error()
5279 table.stack_pointer); in iwm_nic_umac_error()
5282 table.nic_isr_pref); in iwm_nic_umac_error()
5306 if (iwm_read_mem(sc, base, &table, sizeof(table)/sizeof(uint32_t))) { in iwm_nic_error()
5311 if (!table.valid) { in iwm_nic_error()
5325 table.trm_hw_status0); in iwm_nic_error()
5327 table.trm_hw_status1); in iwm_nic_error()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree-ssa-ter.c177 #define VIRTUAL_PARTITION(table) (table->virtual_partition) argument
723 temp_expr_table *table; in find_replaceable_exprs() local
727 table = new_temp_expr_table (map); in find_replaceable_exprs()
730 find_replaceable_in_bb (table, bb); in find_replaceable_exprs()
731 gcc_checking_assert (bitmap_empty_p (table->partition_in_use)); in find_replaceable_exprs()
733 ret = free_temp_expr_table (table); in find_replaceable_exprs()
/dragonfly/share/examples/pf/
H A Dspamd4 # spamd-setup puts addresses to be redirected into table <spamd>.
6 table <spamd> persist

12345678910>>...44