Searched refs:ft (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-9.3-release/usr.sbin/fdcontrol/
H A Dfdcontrol.c73 struct fd_type ft, newft, *fdtp; local
124 if (ioctl(fd, FD_GTYPE, &ft) == -1)
134 ft = newft;
144 ft = *fdtp;
148 parse_fmt(fmtstring, type, ft, &newft);
149 ft = newft;
157 (128 << ft.secsize) * ft.size / 1024);
159 print_fmt(ft);
160 if (ft
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/Windows/
H A DTimeValue.inc26 uint64_t ft;
27 GetSystemTimeAsFileTime(reinterpret_cast<FILETIME *>(&ft));
30 t.fromWin32Time(ft);
/freebsd-9.3-release/sys/net/
H A Dflowtable.c205 #define FLDPRINTF(ft, flags, fmt, ...) \
207 if ((ft)->ft_flags & (flags)) \
212 #define FLDPRINTF(ft, flags, fmt, ...)
325 flowtable_show_stats(struct sbuf *sb, struct flowtable *ft) argument
330 if (ft->ft_flags & FL_PCPU) {
334 pfs->ft_collisions += ft->ft_stats[i].ft_collisions;
335 pfs->ft_allocated += ft->ft_stats[i].ft_allocated;
336 pfs->ft_misses += ft->ft_stats[i].ft_misses;
337 pfs->ft_free_checks += ft->ft_stats[i].ft_free_checks;
338 pfs->ft_frees += ft
353 struct flowtable *ft; local
498 ipv4_mbuf_demarshal(struct flowtable *ft, struct mbuf *m, struct sockaddr_in *ssin, struct sockaddr_in *dsin, uint16_t *flags) argument
592 flowtable_lookup_mbuf4(struct flowtable *ft, struct mbuf *m) argument
647 ipv6_mbuf_demarshal(struct flowtable *ft, struct mbuf *m, struct sockaddr_in6 *ssin6, struct sockaddr_in6 *dsin6, uint16_t *flags) argument
798 flowtable_lookup_mbuf6(struct flowtable *ft, struct mbuf *m) argument
835 flowtable_mask(struct flowtable *ft) argument
848 flowtable_entry(struct flowtable *ft, uint32_t hash) argument
865 flow_stale(struct flowtable *ft, struct flentry *fle) argument
914 flow_alloc(struct flowtable *ft) argument
929 flow_free(struct flentry *fle, struct flowtable *ft) argument
939 flow_full(struct flowtable *ft) argument
969 flowtable_insert(struct flowtable *ft, uint32_t hash, uint32_t *key, uint32_t fibnum, struct route *ro, uint16_t flags) argument
1043 kern_flowtable_insert(struct flowtable *ft, struct sockaddr_storage *ssa, struct sockaddr_storage *dsa, struct route *ro, uint32_t fibnum, int flags) argument
1093 flowtable_lookup_mbuf(struct flowtable *ft, struct mbuf *m, int af) argument
1113 flowtable_lookup(struct flowtable *ft, struct sockaddr_storage *ssa, struct sockaddr_storage *dsa, uint32_t fibnum, int flags) argument
1302 struct flowtable *ft, *fttail; local
1387 fle_free(struct flentry *fle, struct flowtable *ft) argument
1402 flowtable_free_stale(struct flowtable *ft, struct rtentry *rt) argument
1496 flowtable_route_flush(struct flowtable *ft, struct rtentry *rt) argument
1524 struct flowtable *ft; local
1666 flowtable_mask_pcpu(struct flowtable *ft, int cpuid) argument
1679 flowtable_entry_pcpu(struct flowtable *ft, uint32_t hash, int cpuid) argument
1694 flow_show(struct flowtable *ft, struct flentry *fle) argument
1759 flowtable_show(struct flowtable *ft, int cpuid) argument
1798 struct flowtable *ft; local
[all...]
H A Dflowtable.h66 struct flentry *flowtable_lookup_mbuf(struct flowtable *ft, struct mbuf *m, int af);
68 struct flentry *flowtable_lookup(struct flowtable *ft, struct sockaddr_storage *ssa,
71 int kern_flowtable_insert(struct flowtable *ft, struct sockaddr_storage *ssa,
75 void flowtable_route_flush(struct flowtable *ft, struct rtentry *rt);
H A Dif_ef.c312 int ft = -1; local
327 ft = ETHER_FT_8023;
332 ft = ETHER_FT_SNAP;
338 ft = ETHER_FT_8022;
342 ft = ETHER_FT_EII;
344 if (ft == -1) {
355 efp = efl->el_units[ft];
360 EFDEBUG("Can't find if for %d\n", ft);
373 switch(ft) {
387 ft, ether_typ
454 ef_clone(struct ef_link *efl, int ft) argument
[all...]
/freebsd-9.3-release/sys/contrib/ngatm/netnatm/msg/
H A Dtraffic.c78 u_int ft, bt, be, ftag, btag; local
192 ft = traffic->h.present & fmask;
230 if (ft != UNI_TRAFFIC_FPCR1_P)
241 if (ft == UNI_TRAFFIC_FPCR0_P) {
244 } else if (ft == fcbr3) {
267 if (ft != fvbr16)
278 if (ft == fvbr23) {
283 } else if (ft == fvbr16) {
302 if (ft == fvbr23) {
307 } else if (ft
[all...]
/freebsd-9.3-release/bin/pax/
H A Dftree.c147 FTREE *ft; local
163 if ((ft = (FTREE *)malloc(sizeof(FTREE))) == NULL) {
170 ft->fname = str;
171 ft->refcnt = 0;
172 ft->chflg = chflg;
173 ft->fow = NULL;
175 fttail = fthead = ft;
178 fttail->fow = ft;
179 fttail = ft;
237 FTREE *ft; local
[all...]
/freebsd-9.3-release/contrib/groff/src/preproc/eqn/
H A Dtext.cpp103 static void set_special_char_type(const char *ch, int st, int ft) argument
112 if (ft >= 0)
113 p->font_type = ft;
259 void char_box::handle_char_type(int st, int ft) argument
263 if (ft >= 0)
264 char_table[c].font_type = ft;
267 void special_char_box::handle_char_type(int st, int ft) argument
269 set_special_char_type(s, st, ft);
276 int ft = lookup_font_type(type); local
277 if (st < 0 && ft <
347 handle_char_type(int st, int ft) argument
[all...]
H A Dlist.cpp223 void list_box::handle_char_type(int st, int ft) argument
226 list.p[i]->handle_char_type(st, ft);
/freebsd-9.3-release/crypto/openssl/fips/rand/
H A Dfips_rand.c217 FILETIME ft; local
228 GetSystemTimeAsFileTime(&ft);
229 buf[0] = (unsigned char)(ft.dwHighDateTime & 0xff);
230 buf[1] = (unsigned char)((ft.dwHighDateTime >> 8) & 0xff);
231 buf[2] = (unsigned char)((ft.dwHighDateTime >> 16) & 0xff);
232 buf[3] = (unsigned char)((ft.dwHighDateTime >> 24) & 0xff);
233 buf[4] = (unsigned char)(ft.dwLowDateTime & 0xff);
234 buf[5] = (unsigned char)((ft.dwLowDateTime >> 8) & 0xff);
235 buf[6] = (unsigned char)((ft.dwLowDateTime >> 16) & 0xff);
236 buf[7] = (unsigned char)((ft
[all...]
/freebsd-9.3-release/contrib/wpa/src/utils/
H A Dos_win32.c33 FILETIME ft; local
41 SystemTimeToFileTime(&st, &ft);
43 GetSystemTimeAsFileTime(&ft);
45 li.LowPart = ft.dwLowDateTime;
46 li.HighPart = ft.dwHighDateTime;
/freebsd-9.3-release/sys/dev/fdc/
H A Dfdc.c243 struct fd_type *ft; /* pointer to current type descriptor */ member in struct:fd_data
297 fdprinttype(struct fd_type *ft) argument
301 ft->sectrac, ft->secsize, ft->datalen, ft->gap, ft->tracks,
302 ft->size, ft->trans, ft
307 fdsettype(struct fd_data *fd, struct fd_type *ft) argument
[all...]
/freebsd-9.3-release/lib/msun/src/
H A Ds_cbrtl.c38 float ft, fx; local
104 SET_FLOAT_WORD(ft, ((hx & 0x7fffffff) / 3 + B1));
108 dt = ft;
/freebsd-9.3-release/contrib/wpa/src/rsn_supp/
H A Dwpa_ft.c96 struct wpa_ft_ies ft; local
101 if (wpa_ft_parse_ies(ies, ies_len, &ft) < 0)
104 if (ft.mdie && ft.mdie_len < MOBILITY_DOMAIN_ID_LEN + 1)
107 if (ft.mdie) {
109 ft.mdie, MOBILITY_DOMAIN_ID_LEN);
110 os_memcpy(sm->mobility_domain, ft.mdie,
112 sm->mdie_ft_capab = ft.mdie[MOBILITY_DOMAIN_ID_LEN];
118 if (ft.r0kh_id) {
120 ft
[all...]
/freebsd-9.3-release/contrib/tcsh/
H A Dsh.exp.c633 Char *ft = cp, *dp, *ep, *strdev, *strino, *strF, *str, valtest = '\0', local
640 while(any(FILETESTS, *++ft))
643 if (!*ft && *(ft - 1) == 'L')
644 --ft;
646 if (any(FILEVALS, *ft)) {
647 valtest = *ft++;
655 if (valtest == 'P' && *ft >= '0' && *ft <= '7') {
656 pmask = (char) *ft
[all...]
/freebsd-9.3-release/sys/pc98/cbus/
H A Dfdc.c235 struct fd_type *ft; /* pointer to current type descriptor */ member in struct:fd_data
1341 fd->ft = 0;
1369 fd->ft == 0) {
1445 if (fd->type == FDT_NONE || fd->ft == 0) {
1453 fdblk = 128 << (fd->ft->secsize);
1479 if (bp->bio_offset >= ((off_t)128 << fd->ft->secsize) * fd->ft->size) {
1486 nblocks = fd->ft->size;
1643 fd->ft = fd_native_types + fd->type;
1688 fd->ft
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libevent/test/
H A Dtest-changelist.c82 filetime_to_100nsec(const FILETIME *ft) argument
85 ev_int64_t n = ft->dwHighDateTime;
87 n += ft->dwLowDateTime;
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Devutil_time.c81 } ft; local
86 GetSystemTimeAsFileTime(&ft.ft_ft);
88 if (EVUTIL_UNLIKELY(ft.ft_64 < EPOCH_BIAS)) {
92 ft.ft_64 -= EPOCH_BIAS;
93 tv->tv_sec = (long) (ft.ft_64 / UNITS_PER_SEC);
94 tv->tv_usec = (long) ((ft.ft_64 / UNITS_PER_USEC) % USEC_PER_SEC);
/freebsd-9.3-release/sys/dev/netmap/
H A Dnetmap_vale.c145 /* NM_FT_NULL terminates a list of slots in the ft */
372 struct nm_bdg_fwd *ft; local
376 ft = malloc(l, M_DEVBUF, M_NOWAIT | M_ZERO);
377 if (!ft) {
381 dstq = (struct nm_bdg_q *)(ft + NM_BDG_BATCH_MAX);
386 kring[i].nkr_ft = ft;
917 nm_bdg_flush(struct nm_bdg_fwd *ft, u_int n,
922 * Grab packets from a kring, move them into the ft structure
932 struct nm_bdg_fwd *ft; local
948 ft
1177 nm_bdg_flush(struct nm_bdg_fwd *ft, u_int n, struct netmap_vp_adapter *na, u_int ring_nr) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/
H A DTargetMachineC.cpp217 TargetMachine::CodeGenFileType ft; local
220 ft = TargetMachine::CGFT_AssemblyFile;
223 ft = TargetMachine::CGFT_ObjectFile;
226 if (TM->addPassesToEmitFile(pass, OS, ft)) {
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dforward.c45 #define VALID_FWDTABLE(ft) ISC_MAGIC_VALID(ft, FWDTABLEMAGIC)
/freebsd-9.3-release/sys/mips/include/
H A Dmips_opcode.h80 unsigned ft: 5; member in struct:__anon9485::__anon9489
112 unsigned ft: 5; member in struct:__anon9485::__anon9493
/freebsd-9.3-release/contrib/amd/scripts/
H A Dexpn.1481 local($us,$fallhost,$oldhost,$ft,$i);
514 if (((defined $fall_table{$us}) && ($ft = $us)) || ((defined $fall_table{$oldhost}) && ($ft = $oldhost))) {
515 print "$method Fallback = ".$fall_table{$ft}."\n" if $debug;
517 @so = split(' ',$fall_table{$ft});
536 $fall_table{$ft} = join(' ',@so);
539 delete $fall_table{$ft};
H A Dexpn.in480 local($us,$fallhost,$oldhost,$ft,$i);
513 if (((defined $fall_table{$us}) && ($ft = $us)) || ((defined $fall_table{$oldhost}) && ($ft = $oldhost))) {
514 print "$method Fallback = ".$fall_table{$ft}."\n" if $debug;
516 @so = split(' ',$fall_table{$ft});
535 $fall_table{$ft} = join(' ',@so);
538 delete $fall_table{$ft};
/freebsd-9.3-release/sys/contrib/ipfilter/netinet/
H A Dfil.c1717 /* ft(I) - pointer to structure with comparison data */
1722 int fr_tcpudpchk(fin, ft)
1724 frtuc_t *ft;
1734 if (ft->ftu_dcmp)
1735 err = fr_portcheck(&ft->ftu_dst, &fin->fin_dport);
1740 if (err && ft->ftu_scmp)
1741 err = fr_portcheck(&ft->ftu_src, &fin->fin_sport);
1751 return !(ft->ftu_tcpf | ft->ftu_tcpfm);
1755 if (ft
4672 ipfunc_resolve_t *ft; local
4698 ipfunc_resolve_t *ft; local
4720 ipfunc_resolve_t res, *ft; local
[all...]

Completed in 199 milliseconds

12