| /freebsd/sbin/routed/ |
| H A D | parms.c | 561 struct tgate *tg; in parse_parms() local 794 tg = (struct tgate *)rtmalloc(sizeof(*tg), in parse_parms() 797 memset(tg, 0, sizeof(*tg)); in parse_parms() 798 tg->tgate_addr = addr; in parse_parms() 806 || !getnet(buf2, &tg->tgate_nets[i].net, in parse_parms() 807 &tg->tgate_nets[i].mask) in parse_parms() 808 || tg->tgate_nets[i].net == RIP_DEFAULT in parse_parms() 809 || tg->tgate_nets[i].mask == 0) { in parse_parms() 810 free(tg); in parse_parms() 815 tg->tgate_next = tgates; in parse_parms() [all …]
|
| H A D | input.c | 141 struct tgate *tg = NULL; in input() local 579 tg = tgates; in input() 580 while (tg->tgate_addr != FROM_NADDR) { in input() 581 tg = tg->tgate_next; in input() 582 if (tg == NULL) { in input() 682 if (tg && (tn = tg->tgate_nets)->mask != 0) { in input()
|
| /freebsd/sys/dev/bwn/ |
| H A D | if_bwn_phy_lp.c | 1186 struct bwn_txgain tg; in bwn_phy_lp_bugfix() local 1234 tg.tg_pad = (txgain >> 16) & 0xff; in bwn_phy_lp_bugfix() 1235 tg.tg_gm = txgain & 0xff; in bwn_phy_lp_bugfix() 1236 tg.tg_pga = (txgain >> 8) & 0xff; in bwn_phy_lp_bugfix() 1237 tg.tg_dac = (rxcomp >> 28) & 0xff; in bwn_phy_lp_bugfix() 1238 bwn_phy_lp_set_txgain(mac, &tg); in bwn_phy_lp_bugfix() 2218 struct bwn_txgain tg; in bwn_phy_lp_get_txgain() local 2221 tg.tg_dac = (BWN_PHY_READ(mac, BWN_PHY_AFE_DAC_CTL) & 0x380) >> 7; in bwn_phy_lp_get_txgain() 2225 tg.tg_gm = tmp & 0x0007; in bwn_phy_lp_get_txgain() 2226 tg.tg_pga = (tmp & 0x0078) >> 3; in bwn_phy_lp_get_txgain() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Timer.h | 97 Timer(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) { in Timer() argument 98 init(TimerName, TimerDescription, tg); in Timer() 113 TimerGroup &tg);
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_tasking.cpp | 2515 kmp_taskgroup_t *tg = thread->th.th_current_task->td_taskgroup; local 2520 KMP_ASSERT(tg != NULL); 2525 gtid, tg)); 2526 return (void *)tg; 2529 gtid, tg, num)); 2561 tg->reduce_data = (void *)arr; 2562 tg->reduce_num_data = num; 2563 return (void *)tg; 2625 kmp_taskgroup_t *tg, void *reduce_data) { argument 2629 thr, tg, reduce_data)); [all …]
|
| H A D | kmp_gsupport.cpp | 2009 __kmp_GOMP_taskgroup_reduction_register(uintptr_t *data, kmp_taskgroup_t *tg, in __kmp_GOMP_taskgroup_reduction_register() argument 2023 if (tg) in __kmp_GOMP_taskgroup_reduction_register() 2024 tg->gomp_data = data; in __kmp_GOMP_taskgroup_reduction_register() 2032 kmp_taskgroup_t *tg = thread->th.th_current_task->td_taskgroup; in KMP_EXPAND_NAME() local 2034 __kmp_GOMP_taskgroup_reduction_register(data, tg, nthreads); in KMP_EXPAND_NAME() 2059 kmp_taskgroup_t *tg = thread->th.th_current_task->td_taskgroup; in KMP_EXPAND_NAME() local 2060 while (tg) { in KMP_EXPAND_NAME() 2061 uintptr_t *gomp_data = tg->gomp_data; in KMP_EXPAND_NAME() 2063 tg = tg->parent; in KMP_EXPAND_NAME() 2101 tg = tg->parent; in KMP_EXPAND_NAME() [all …]
|
| /freebsd/sys/dev/mpi3mr/ |
| H A D | mpi3mr.c | 299 struct mpi3mr_throttle_group_info *tg, U8 divert_value) in mpi3mr_set_io_divert_for_all_vd_in_tg() argument 305 if (target->throttle_group == tg) in mpi3mr_set_io_divert_for_all_vd_in_tg() 3608 struct mpi3mr_throttle_group_info *tg = NULL; in mpi3mr_update_device() local 3619 tg = sc->throttle_groups + vdinf->IOThrottleGroup; in mpi3mr_update_device() 3620 tg->id = vdinf->IOThrottleGroup; in mpi3mr_update_device() 3621 tg->high = tgtdev->dev_spec.vol_inf.tg_high; in mpi3mr_update_device() 3622 tg->low = tgtdev->dev_spec.vol_inf.tg_low; in mpi3mr_update_device() 3624 tg->fw_qd = tgtdev->q_depth; in mpi3mr_update_device() 3625 tg->modified_qd = tgtdev->q_depth; in mpi3mr_update_device() 3627 tgtdev->dev_spec.vol_inf.tg = tg; in mpi3mr_update_device() [all …]
|
| H A D | mpi3mr_cam.c | 1183 struct mpi3mr_throttle_group_info *tg = NULL; in mpi3mr_enqueue_request() local 1198 tg = targ->throttle_group; in mpi3mr_enqueue_request() 1199 if (tg) { in mpi3mr_enqueue_request() 1201 mpi3mr_atomic_add(&tg->pend_large_data_sz, data_len_blks); in mpi3mr_enqueue_request() 1204 tg_pend_data_len = mpi3mr_atomic_read(&tg->pend_large_data_sz); in mpi3mr_enqueue_request() 1213 tg->high); in mpi3mr_enqueue_request() 1217 if (!tg->io_divert && ((ioc_pend_data_len >= in mpi3mr_enqueue_request() 1219 (tg_pend_data_len >= tg->high))) { in mpi3mr_enqueue_request() 1220 tg->io_divert = 1; in mpi3mr_enqueue_request() 1223 tg->id, targ->per_id); in mpi3mr_enqueue_request() [all …]
|
| H A D | mpi3mr_cam.h | 76 struct mpi3mr_throttle_group_info *tg; member
|
| H A D | mpi3mr.h | 1004 struct mpi3mr_throttle_group_info *tg, U8 divert_value);
|
| /freebsd/contrib/ntp/util/ |
| H A D | README | 39 tg.c and tg2.c are tone generators. They make audio signals 40 that emulate WWV or IRIG (-B and -E). tg runs on Solaris.
|
| H A D | Makefile.in | 100 testrs6000$(EXEEXT) tg$(EXEEXT) tg2$(EXEEXT) tickadj$(EXEEXT) \ 227 tg_SOURCES = tg.c 228 tg_OBJECTS = tg.$(OBJEXT) 268 ./$(DEPDIR)/testrs6000.Po ./$(DEPDIR)/tg.Po ./$(DEPDIR)/tg2.Po \ 293 sht.c testrs6000.c tg.c tg2.c tickadj.c timetrim.c 296 pps-api.c precision.c sht.c testrs6000.c tg.c tg2.c tickadj.c \ 928 tg$(EXEEXT): $(tg_OBJECTS) $(tg_DEPENDENCIES) $(EXTRA_tg_DEPENDENCIES) 929 @rm -f tg$(EXEEXT) 964 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tg.Po@am__quote@ # am--include-marker 1260 -rm -f ./$(DEPDIR)/tg [all...] |
| H A D | Makefile.am | 9 ntptime pps-api precision sht testrs6000 tg tg2 tickadj timetrim
|
| /freebsd/sbin/bsdlabel/ |
| H A D | disktab | 127 :pg#15840:og#55968:tg=4.2BSD:bg#4096:fg#512: \ 154 :pg#302400:og#1330560:bg#4096:fg#512:tg=4.2BSD:
|
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | OutputSections.h | 119 void writeTo(Ctx &, uint8_t *buf, llvm::parallel::TaskGroup &tg);
|
| H A D | OutputSections.cpp | 395 parallel::TaskGroup tg; in maybeCompress() local 396 writeTo<ELFT>(ctx, buf.get(), tg); in maybeCompress() 497 void OutputSection::writeTo(Ctx &ctx, uint8_t *buf, parallel::TaskGroup &tg) { in writeTo() argument 603 tg.spawn([=] { fn(begin, i); }); in writeTo()
|
| H A D | Writer.cpp | 2948 parallel::TaskGroup tg; in writeSectionsBinary() local 2951 sec->writeTo<ELFT>(ctx, ctx.bufferStart + sec->offset, tg); in writeSectionsBinary() 3002 parallel::TaskGroup tg; in writeSections() local 3005 sec->writeTo<ELFT>(ctx, ctx.bufferStart + sec->offset, tg); in writeSections() 3008 parallel::TaskGroup tg; in writeSections() local 3011 sec->writeTo<ELFT>(ctx, ctx.bufferStart + sec->offset, tg); in writeSections()
|
| H A D | Relocations.cpp | 1708 parallel::TaskGroup tg; in scanRelocations() local 1723 tg.spawn(fn); in scanRelocations() 1739 tg.spawn(scanEH); in scanRelocations() 1744 tg.spawn(outerFn); in scanRelocations()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Timer.cpp | 96 TimerGroup &tg) { in init() argument 101 TG = &tg; in init()
|
| /freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
| H A D | cert-threecolumn.pem | 353 2tg
|
| /freebsd/sys/dev/qat/qat_common/ |
| H A D | qat_hal.c | 372 u32 tg = 0, ae; in qat_hal_get_ae_mask_gen4() local 377 tg = ae / 4; in qat_hal_get_ae_mask_gen4() 378 valid_ae_mask |= (1 << (tg * 2)); in qat_hal_get_ae_mask_gen4()
|
| /freebsd/contrib/llvm-project/lld/ELF/Arch/ |
| H A D | ARM.cpp | 1532 parallel::TaskGroup tg; in writeARMCmseImportLib() local 1534 osec->template writeTo<ELFT>(ctx, buf + osec->offset, tg); in writeARMCmseImportLib()
|
| /freebsd/share/misc/ |
| H A D | iso639 | 464 tg tgk tgk Tajik
|
| /freebsd/sys/cam/scsi/ |
| H A D | scsi_ch.c | 136 struct page_transport_geometry_parameters tg; member
|
| /freebsd/usr.sbin/services_mkdb/ |
| H A D | services | 169 su-mit-tg 89/tcp #SU/MIT Telnet Gateway 170 su-mit-tg 89/udp #SU/MIT Telnet Gateway
|