Home
last modified time | relevance | path

Searched refs:tg (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-14-stable/sbin/routed/
HDparms.c561 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 …]
HDinput.c141 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-14-stable/sys/dev/bwn/
HDif_bwn_phy_lp.c1186 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-14-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDTimer.h94 Timer(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) { in Timer() argument
95 init(TimerName, TimerDescription, tg); in Timer()
109 void init(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg);
/freebsd-14-stable/contrib/llvm-project/openmp/runtime/src/
HDkmp_tasking.cpp2528 kmp_taskgroup_t *tg = thread->th.th_current_task->td_taskgroup; local
2533 KMP_ASSERT(tg != NULL);
2538 gtid, tg));
2539 return (void *)tg;
2542 gtid, tg, num));
2574 tg->reduce_data = (void *)arr;
2575 tg->reduce_num_data = num;
2576 return (void *)tg;
2638 kmp_taskgroup_t *tg, void *reduce_data) { argument
2642 thr, tg, reduce_data));
[all …]
HDkmp_gsupport.cpp2009 __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-14-stable/sys/dev/mpi3mr/
HDmpi3mr.c300 struct mpi3mr_throttle_group_info *tg, U8 divert_value) in mpi3mr_set_io_divert_for_all_vd_in_tg() argument
306 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 …]
HDmpi3mr_cam.c1185 struct mpi3mr_throttle_group_info *tg = NULL; in mpi3mr_enqueue_request() local
1200 tg = targ->throttle_group; in mpi3mr_enqueue_request()
1201 if (tg) { in mpi3mr_enqueue_request()
1203 mpi3mr_atomic_add(&tg->pend_large_data_sz, data_len_blks); in mpi3mr_enqueue_request()
1206 tg_pend_data_len = mpi3mr_atomic_read(&tg->pend_large_data_sz); in mpi3mr_enqueue_request()
1215 tg->high); in mpi3mr_enqueue_request()
1219 if (!tg->io_divert && ((ioc_pend_data_len >= in mpi3mr_enqueue_request()
1221 (tg_pend_data_len >= tg->high))) { in mpi3mr_enqueue_request()
1222 tg->io_divert = 1; in mpi3mr_enqueue_request()
1225 tg->id, targ->per_id); in mpi3mr_enqueue_request()
[all …]
HDmpi3mr_cam.h76 struct mpi3mr_throttle_group_info *tg; member
HDmpi3mr.h1005 struct mpi3mr_throttle_group_info *tg, U8 divert_value);
/freebsd-14-stable/contrib/ntp/util/
HDREADME39 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.
HDMakefile.in100 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.Po
[all …]
HDMakefile.am9 ntptime pps-api precision sht testrs6000 tg tg2 tickadj timetrim
/freebsd-14-stable/contrib/llvm-project/lld/ELF/
HDOutputSections.h117 void writeTo(uint8_t *buf, llvm::parallel::TaskGroup &tg);
HDOutputSections.cpp378 parallel::TaskGroup tg; in maybeCompress() local
379 writeTo<ELFT>(buf.get(), tg); in maybeCompress()
480 void OutputSection::writeTo(uint8_t *buf, parallel::TaskGroup &tg) { in writeTo() argument
585 tg.spawn([=] { fn(begin, i); }); in writeTo()
HDWriter.cpp2782 parallel::TaskGroup tg; in writeSectionsBinary() local
2785 sec->writeTo<ELFT>(Out::bufferStart + sec->offset, tg); in writeSectionsBinary()
2832 parallel::TaskGroup tg; in writeSections() local
2835 sec->writeTo<ELFT>(Out::bufferStart + sec->offset, tg); in writeSections()
2838 parallel::TaskGroup tg; in writeSections() local
2841 sec->writeTo<ELFT>(Out::bufferStart + sec->offset, tg); in writeSections()
HDRelocations.cpp1645 parallel::TaskGroup tg; in scanRelocations() local
1660 tg.spawn(fn); in scanRelocations()
1676 tg.spawn(scanEH); in scanRelocations()
1681 tg.spawn(outerFn); in scanRelocations()
/freebsd-14-stable/sbin/bsdlabel/
HDdisktab127 :pg#15840:og#55968:tg=4.2BSD:bg#4096:fg#512: \
154 :pg#302400:og#1330560:bg#4096:fg#512:tg=4.2BSD:
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Support/
HDTimer.cpp137 TimerGroup &tg) { in init() argument
142 TG = &tg; in init()
/freebsd-14-stable/crypto/openssl/test/recipes/04-test_pem_reading_data/
HDcert-threecolumn.pem353 2tg
/freebsd-14-stable/sys/dev/qat/qat_common/
HDqat_hal.c372 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-14-stable/contrib/llvm-project/lld/ELF/Arch/
HDARM.cpp1525 parallel::TaskGroup tg; in writeARMCmseImportLib() local
1527 osec->template writeTo<ELFT>(buf + osec->offset, tg); in writeARMCmseImportLib()
/freebsd-14-stable/share/misc/
HDiso639464 tg tgk tgk Tajik
/freebsd-14-stable/sys/cam/scsi/
HDscsi_ch.c137 struct page_transport_geometry_parameters tg; member
/freebsd-14-stable/usr.sbin/services_mkdb/
HDservices172 su-mit-tg 89/tcp #SU/MIT Telnet Gateway
173 su-mit-tg 89/udp #SU/MIT Telnet Gateway

12