Home
last modified time | relevance | path

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

12

/freebsd/sbin/routed/
H A Dparms.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 …]
H A Dinput.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/sys/dev/bwn/
H A Dif_bwn_phy_lp.c1186 struct bwn_txgain tg; in bwn_phy_lp_bugfix() local
1235 tg.tg_gm = txgain & 0xff; in bwn_phy_lp_bugfix()
2218 struct bwn_txgain tg; in bwn_phy_lp_get_txgain() local
2225 tg.tg_gm = tmp & 0x0007; in bwn_phy_lp_get_txgain()
2228 return (tg); in bwn_phy_lp_get_txgain()
2233 tg.tg_gm = tmp & 0xff; in bwn_phy_lp_get_txgain()
2235 return (tg); in bwn_phy_lp_get_txgain()
2252 (tg->tg_pad << 7) | (tg->tg_pga << 3) | tg->tg_gm); in bwn_phy_lp_set_txgain()
2260 (tg->tg_pga << 8) | tg->tg_gm); in bwn_phy_lp_set_txgain()
2262 tg->tg_pad | (pa << 6)); in bwn_phy_lp_set_txgain()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.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/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_tasking.cpp2524 KMP_ASSERT(tg != NULL);
2530 return (void *)tg;
2567 return (void *)tg;
2662 if (tg == NULL)
2664 KMP_ASSERT(tg != NULL);
2682 while (tg != NULL) {
2715 tg = tg->parent;
2761 tg->reduce_data = NULL;
2770 tg->reduce_data = NULL;
2789 kmp_taskgroup_t *tg; local
[all …]
H A Dkmp_gsupport.cpp2023 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()
2144 kmp_taskgroup_t *tg = thr->th.th_current_task->td_taskgroup; in __kmp_GOMP_init_reductions() local
[all …]
/freebsd/sys/dev/mpi3mr/
H A Dmpi3mr.c3428 tgtdev->dev_spec.vol_inf.tg = tg; in mpi3mr_update_device()
4580 if (tg) { in mpi3mr_process_op_reply_desc()
4593 tg->low); in mpi3mr_process_op_reply_desc()
4604 sc, tg, 0); in mpi3mr_process_op_reply_desc()
4627 if (!tg) { in mpi3mr_process_op_reply_desc()
4656 tg->low); in mpi3mr_process_op_reply_desc()
4659 if (tg->io_divert && (tg_pend_data_len <= tg->low)) { in mpi3mr_process_op_reply_desc()
5635 tg->id = 0; in mpi3mr_memset_buffers()
5636 tg->fw_qd = 0; in mpi3mr_memset_buffers()
5639 tg->high = 0; in mpi3mr_memset_buffers()
[all …]
H A Dmpi3mr_cam.c1184 struct mpi3mr_throttle_group_info *tg = NULL; in mpi3mr_enqueue_request() local
1199 tg = targ->throttle_group; in mpi3mr_enqueue_request()
1200 if (tg) { in mpi3mr_enqueue_request()
1202 mpi3mr_atomic_add(&tg->pend_large_data_sz, data_len_blks); in mpi3mr_enqueue_request()
1214 tg->high); in mpi3mr_enqueue_request()
1218 if (!tg->io_divert && ((ioc_pend_data_len >= in mpi3mr_enqueue_request()
1220 (tg_pend_data_len >= tg->high))) { in mpi3mr_enqueue_request()
1221 tg->io_divert = 1; in mpi3mr_enqueue_request()
1224 tg->id, targ->per_id); in mpi3mr_enqueue_request()
1228 tg, 1); in mpi3mr_enqueue_request()
[all …]
H A Dmpi3mr_cam.h76 struct mpi3mr_throttle_group_info *tg; member
H A Dmpi3mr.h987 struct mpi3mr_throttle_group_info *tg, U8 divert_value);
/freebsd/contrib/ntp/util/
H A DREADME39 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 DMakefile.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 …]
H A DMakefile.am9 ntptime pps-api precision sht testrs6000 tg tg2 tickadj timetrim
/freebsd/contrib/llvm-project/lld/ELF/
H A DOutputSections.cpp344 parallel::TaskGroup tg; in maybeCompress() local
345 writeTo<ELFT>(buf.get(), tg); in maybeCompress()
448 void OutputSection::writeTo(uint8_t *buf, parallel::TaskGroup &tg) { in writeTo() argument
547 tg.spawn([=] { fn(begin, i); }); in writeTo()
H A DOutputSections.h110 void writeTo(uint8_t *buf, llvm::parallel::TaskGroup &tg);
H A DWriter.cpp2975 parallel::TaskGroup tg; in writeSectionsBinary() local
2978 sec->writeTo<ELFT>(Out::bufferStart + sec->offset, tg); in writeSectionsBinary()
3025 parallel::TaskGroup tg; in writeSections() local
3028 sec->writeTo<ELFT>(Out::bufferStart + sec->offset, tg); in writeSections()
3031 parallel::TaskGroup tg; in writeSections() local
3034 sec->writeTo<ELFT>(Out::bufferStart + sec->offset, tg); in writeSections()
H A DRelocations.cpp1586 parallel::TaskGroup tg; in scanRelocations() local
1597 tg.spawn(fn, serial); in scanRelocations()
1600 tg.spawn([] { in scanRelocations()
/freebsd/sbin/bsdlabel/
H A Ddisktab127 :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/llvm/lib/Support/
H A DTimer.cpp137 TimerGroup &tg) { in init() argument
142 TG = &tg; in init()
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-threecolumn.pem353 2tg
/freebsd/sys/dev/qat/qat_common/
H A Dqat_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/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp1448 parallel::TaskGroup tg; in writeARMCmseImportLib() local
1450 osec->template writeTo<ELFT>(buf + osec->offset, tg); in writeARMCmseImportLib()
/freebsd/share/misc/
H A Diso639464 tg tgk tgk Tajik
/freebsd/sys/cam/scsi/
H A Dscsi_ch.c136 struct page_transport_geometry_parameters tg; member
/freebsd/usr.sbin/services_mkdb/
H A Dservices169 su-mit-tg 89/tcp #SU/MIT Telnet Gateway
170 su-mit-tg 89/udp #SU/MIT Telnet Gateway

12