/src/games/fortune/unstr/ |
unstr.c | 90 static STRFILE tbl; /* description table */ local in function:main 97 (void) fread((char *) &tbl, sizeof tbl, 1, Dataf); 98 BE32TOH(tbl.str_version); 99 BE32TOH(tbl.str_numstr); 100 BE32TOH(tbl.str_longlen); 101 BE32TOH(tbl.str_shortlen); 102 BE32TOH(tbl.str_flags); 103 if (!(tbl.str_flags & (STR_ORDERED | STR_RANDOM))) { 107 Delimch = tbl.str_delim [all...] |
/src/sys/kern/ |
kern_fileassoc.c | 89 #define FILEASSOC_HASH(tbl, handle) \ 91 & ((tbl)->tbl_mask)) 189 struct fileassoc_table *tbl = v; local in function:table_dtor 193 for (i = 0; i < tbl->tbl_nslots; i++) { 196 while ((faf = LIST_FIRST(&tbl->tbl_hash[i])) != NULL) { 202 hashdone(tbl->tbl_hash, HASH_LIST, tbl->tbl_mask); 203 specificdata_fini(fileassoc_domain, &tbl->tbl_data); 204 kmem_free(tbl, sizeof(*tbl)); 298 struct fileassoc_table *tbl; local in function:fileassoc_file_lookup 408 struct fileassoc_table *tbl; local in function:fileassoc_table_add 434 struct fileassoc_table *tbl; local in function:fileassoc_table_delete 453 struct fileassoc_table *tbl; local in function:fileassoc_table_run 481 struct fileassoc_table *tbl; local in function:fileassoc_table_clear 508 struct fileassoc_table *tbl; local in function:fileassoc_file_add 566 struct fileassoc_table *tbl; local in function:fileassoc_file_delete [all...] |
/src/usr.sbin/tprof/arch/ |
tprof_armv7.c | 110 tprof_event_list_table(struct pmu_event_table *tbl) 114 printf("%s:\n", tbl->name); 115 for (n = 0; n < tbl->nevents; n++) { 116 printf("\t%s\n", tbl->events[n].name); 119 if (tbl->next) 120 tprof_event_list_table(tbl->next); 131 struct pmu_event_table *tbl) 135 for (n = 0; n < tbl->nevents; n++) { 136 if (strcmp(tbl->events[n].name, name) == 0) { 137 param->p_event = tbl->events[n].event [all...] |
tprof_armv8.c | 137 tprof_event_list_table(struct pmu_event_table *tbl) 141 printf("%s:\n", tbl->name); 142 for (n = 0; n < tbl->nevents; n++) { 143 printf("\t%s\n", tbl->events[n].name); 146 if (tbl->next) 147 tprof_event_list_table(tbl->next); 158 struct pmu_event_table *tbl) 162 for (n = 0; n < tbl->nevents; n++) { 163 if (strcmp(tbl->events[n].name, name) == 0) { 164 param->p_event = tbl->events[n].event [all...] |
/src/games/fortune/strfile/ |
strfile.h | 39 #define STR_ENDSTRING(line,tbl) \ 40 ((line)[0] == (tbl).str_delim && (line)[1] == '\n')
|
/src/sys/arch/prep/stand/boot/ |
clock.c | 76 u_long tbh, tbl, scratch; local in function:delay 83 mfrtc(&tbh, &tbl); 88 tbl += n * 1000; 89 if (tbl >= 1000000000) { 91 tbl -= 1000000000; 96 : "r"(tbh), "r"(tbl), "n"(SPR_RTCU_R), "n"(SPR_RTCL_R)); 101 tbl = tb; 105 : "r"(tbh), "r"(tbl));
|
/src/sys/arch/rs6000/stand/boot/ |
clock.c | 76 u_long tbh, tbl, scratch; local in function:delay 84 mfrtc(&tbh, &tbl); 89 tbl += n * 1000; 90 if (tbl >= 1000000000) { 92 tbl -= 1000000000; 97 : "r"(tbh), "r"(tbl), "n"(SPR_RTCU_R), "n"(SPR_RTCL_R)); 102 tbl = tb; 106 : "r"(tbh), "r"(tbl));
|
/src/sys/arch/bebox/stand/boot/ |
clock.c | 60 u_long tbh, tbl, scratch; local in function:delay 65 tbl = tb; 68 : "=&r"(scratch) : "r"(tbh), "r"(tbl));
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_user_extensions.h | 18 const i915_user_extension_fn *tbl,
|
i915_user_extensions.c | 22 const i915_user_extension_fn *tbl, 52 if (tbl[name]) 53 err = tbl[name](ext, data);
|
/src/bin/ksh/ |
table.c | 51 struct tbl *tblp, **p; 52 struct tbl **ntblp, **otblp = tp->tbls; 55 ntblp = (struct tbl**) alloc(sizeofN(struct tbl *, nsize), tp->areap); 81 struct tbl * 87 struct tbl **pp, *p; 104 struct tbl * 110 struct tbl **pp, *p; 129 /* create new tbl entry */ 131 p = (struct tbl *) alloc(offsetof(struct tbl, name[0]) + len [all...] |
proto.h | 73 struct tbl * findfunc ARGS((const char *, unsigned int, int)); 76 struct tbl * findcom ARGS((const char *, int)); 84 int v_evaluate ARGS((struct tbl *, const char *, volatile int)); 219 struct tbl * mytsearch ARGS((struct table *, const char *, unsigned int)); 220 struct tbl * tenter ARGS((struct table *, const char *, unsigned int)); 221 void mytdelete ARGS((struct tbl *)); 223 struct tbl * tnext ARGS((struct tstate *)); 224 struct tbl ** tsort ARGS((struct table *)); 257 struct tbl * global ARGS((const char *)); 258 struct tbl * local(const char *, bool) [all...] |
expr.c | 128 struct tbl *val; /* value from token() */ 129 struct tbl *evaling; /* variable that is being recursively 139 static struct tbl *evalexpr ARGS((Expr_state *es, enum prec prec)); 141 static struct tbl *do_ppmm(Expr_state *, enum token, struct tbl *, bool); 143 struct tbl *vasn)); 144 static struct tbl *tempvar ARGS((void)); 145 static struct tbl *intvar ARGS((Expr_state *es, struct tbl *vp)); 156 struct tbl v [all...] |
/src/dist/pf/sbin/pfctl/ |
pfctl_radix.c | 75 pfr_add_tables(struct pfr_table *tbl, int size, int *nadd, int flags) 79 if (size < 0 || (size && tbl == NULL)) { 85 io.pfrio_buffer = tbl; 86 io.pfrio_esize = sizeof(*tbl); 96 pfr_del_tables(struct pfr_table *tbl, int size, int *ndel, int flags) 100 if (size < 0 || (size && tbl == NULL)) { 106 io.pfrio_buffer = tbl; 107 io.pfrio_esize = sizeof(*tbl); 117 pfr_get_tables(struct pfr_table *filter, struct pfr_table *tbl, int *size, 122 if (size == NULL || *size < 0 || (*size && tbl == NULL)) [all...] |
/src/lib/libcurses/PSD.doc/ |
Makefile | 9 intro.0 intro.1 intro.2.tbl intro.3 intro.4 intro.5 intro.6 \ 12 CLEANFILES+= ${CEXAMPLES} intro.2.tbl 29 intro.2.tbl: intro.2
|
/src/usr.bin/make/ |
hash.h | 106 HashTable tbl; member in struct:HashSet 147 HashTable_Init(&set->tbl); 153 HashTable_Done(&set->tbl); 161 (void)HashTable_CreateEntry(&set->tbl, key, &isNew); 168 return HashTable_FindEntry(&set->tbl, key) != NULL; 174 HashIter_Init(hi, &set->tbl);
|
/src/sys/arch/ia64/include/ |
efilib.h | 36 void *efi_get_table(EFI_GUID *tbl);
|
/src/share/doc/papers/kernmalloc/ |
Makefile | 9 paper.ps: ${SRCS} alloc.fig usage.tbl
|
/src/lib/libm/ld80/ |
s_expl.c | 235 * expl(endpoint[n2] + r1 + r2) = tbl[n2] * expl(r1 + r2). 240 t = (long double)tbl[n2].lo + tbl[n2].hi; 243 t = SUM2P(tbl[n2].hi - 1, tbl[n2].lo * (r1 + 1) + t * q + 244 tbl[n2].hi * r1); 248 t = SUM2P(tbl[n2].hi - 2, tbl[n2].lo * (r1 + 1) + t * q + 249 tbl[n2].hi * r1); 253 t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1)) [all...] |
/src/sys/arch/ia64/ia64/ |
consinit.c | 79 struct dig64_hcdp_table *tbl; local in function:pcdp_cnprobe 86 tbl = (void*)IA64_PHYS_TO_RR7(hcdp); 88 m = tbl->length - sizeof(struct dig64_hcdp_table); 90 desc = (union dev_desc *)((char *)tbl->entry + n); 95 if (tbl->revision < 3) 98 tbl->revision); 125 struct dig64_hcdp_table *tbl; local in function:pcdp_cninit 136 tbl = (void *)IA64_PHYS_TO_RR7(hcdp); 138 m = tbl->length - sizeof(struct dig64_hcdp_table); 141 desc = (union dev_desc *)((char *)tbl->entry + n) [all...] |
/src/sys/dev/dm/ |
dm_table.c | 149 dm_table_t *tbl; local in function:dm_table_destroy 165 tbl = &head->tables[id]; 167 while ((table_en = SLIST_FIRST(tbl)) != NULL) { 168 SLIST_REMOVE(tbl, table_en, dm_table_entry, next); 174 KASSERT(SLIST_EMPTY(tbl)); 187 dm_table_t *tbl; local in function:dm_table_size_impl 197 tbl = &head->tables[id]; 203 SLIST_FOREACH(table_en, tbl, next) 238 dm_table_t *tbl; local in function:dm_table_disksize 249 tbl = &head->tables[id] 284 dm_table_t *tbl; local in function:dm_table_get_target_count [all...] |
/src/lib/libm/ld128/ |
s_expl.c | 282 * expl(endpoint[n2] + r1 + r2) = tbl[n2] * expl(r1 + r2). 288 t = tbl[n2].lo + tbl[n2].hi; 291 t = SUM2P(tbl[n2].hi - 1, tbl[n2].lo * (r1 + 1) + t * q + 292 tbl[n2].hi * r1); 296 t = SUM2P(tbl[n2].hi - 2, tbl[n2].lo * (r1 + 1) + t * q + 297 tbl[n2].hi * r1); 301 t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1)) [all...] |
/src/sbin/gpt/ |
gpt_private.h | 44 struct map *tbl, *lbt, *gpt, *tpg; member in struct:gpt
|
/src/games/fortune/fortune/ |
fortune.c | 101 STRFILE tbl; member in struct:fd 262 !STR_ENDSTRING(line, fp->tbl); Fort_len++) { 263 if (fp->tbl.str_flags & STR_ROTATED) 280 if (!(Fortfile->tbl.str_flags & (STR_RANDOM | STR_ORDERED))) 287 !STR_ENDSTRING(line, Fortfile->tbl)) 952 while ((u_int32_t)choice >= fp->tbl.str_numstr) { 953 choice -= fp->tbl.str_numstr; 957 fp->name, fp->tbl.str_numstr, 961 fp->tbl.str_numstr)); 973 (off_t) (sizeof fp->tbl + fp->pos * sizeof Seekpts[0]), SEEK_SET) [all...] |
/src/sys/arch/sun68k/stand/libsa/ |
sun3x.c | 220 mmu_short_pte_t *tbl; local in function:sun3x_get_pte 223 tbl = (mmu_short_pte_t *) *romVectorPtr->lomemptaddr; 226 tbl = (mmu_short_pte_t *) *romVectorPtr->monptaddr; 229 tbl = (mmu_short_pte_t *) *romVectorPtr->shadowpteaddr; 237 return tbl[pn].attr.raw; 245 mmu_short_pte_t *tbl; local in function:sun3x_set_pte 251 tbl = (mmu_short_pte_t *) *romVectorPtr->lomemptaddr; 257 tbl = (mmu_short_pte_t *) *romVectorPtr->monptaddr; 263 tbl = (mmu_short_pte_t *) *romVectorPtr->shadowpteaddr; 272 tbl[pn].attr.raw = pa [all...] |