Searched refs:atom (Results 1 - 17 of 17) sorted by relevance

/freebsd-10.3-release/sbin/dhclient/
H A Dconflex.c317 intern(char *atom, int dfv) argument
319 if (!isascii(atom[0]))
322 switch (tolower(atom[0])) {
324 if (!strcasecmp(atom + 1, "lways-reply-rfc1048"))
326 if (!strcasecmp(atom + 1, "ppend"))
328 if (!strcasecmp(atom + 1, "llow"))
330 if (!strcasecmp(atom + 1, "lias"))
332 if (!strcasecmp(atom + 1, "bandoned"))
334 if (!strcasecmp(atom + 1, "uthoritative"))
338 if (!strcasecmp(atom
[all...]
/freebsd-10.3-release/contrib/ntp/ntpd/
H A Drefclock_atom.c88 struct refclock_atom atom; /* atom structure pointer */ member in struct:ppsunit
154 return (refclock_ppsapi(up->fddev, &up->atom));
192 if (refclock_pps(peer, &up->atom, pp->sloppyclockflag) <= 0)
H A Drefclock_wwvb.c132 struct refclock_atom atom; /* PPSAPI structure */ member in struct:wwvbunit
484 refclock_pps(peer, &up->atom, pp->sloppyclockflag) > 0) {
579 time_pps_destroy(up->atom.handle);
580 up->atom.handle = 0;
591 if (refclock_ppsapi(pp->io.fd, &up->atom)) {
H A Drefclock_nmea.c227 struct refclock_atom atom; /* PPSAPI structure */ member in struct:__anon4158
516 time_pps_destroy(up->atom.handle);
574 if (refclock_ppsapi(up->ppsapi_fd, &up->atom)) {
577 pp->sloppyclockflag, &up->atom);
580 time_pps_destroy(up->atom.handle);
599 time_pps_destroy(up->atom.handle);
600 up->atom.handle = 0;
749 return PPS_RELATE_EDGE; /* cannot PLL with atom code */
757 return PPS_RELATE_EDGE; /* cannot PLL with atom code */
760 return PPS_RELATE_PHASE; /* can PLL with atom cod
[all...]
H A Drefclock_parse.c426 struct refclock_atom atom; /* PPSAPI structure */ member in struct:parseunit
2232 if (time_pps_fetch(parse->atom.handle, PPS_TSFMT_TSPEC, &pps_info,
2812 (void)time_pps_destroy(parse->atom.handle);
2875 if (time_pps_kcbind(parse->atom.handle, PPS_KC_HARDPPS, i,
2910 if (time_pps_getcap(parse->atom.handle, &cap) < 0) {
2924 if (!refclock_params(parse->flags & (CLK_FLAG1|CLK_FLAG2|CLK_FLAG4), &parse->atom))
2949 parse->atom.pps_params.clear_offset.tv_sec = (time_t)(-parse->ppsphaseadjust);
2950 parse->atom.pps_params.clear_offset.tv_nsec = (long)(-1e9*(parse->ppsphaseadjust - (double)(long)parse->ppsphaseadjust));
2955 parse->atom.pps_params.assert_offset.tv_sec = (time_t)(-parse->ppsphaseadjust);
2956 parse->atom
[all...]
/freebsd-10.3-release/contrib/libpcap/
H A Doptimize.c421 int atom; local
426 atom = atomuse(&s->s);
427 if (atom >= 0) {
428 if (atom == AX_ATOM) {
434 else if (atom < N_ATOMS) {
435 if (!ATOMELEM(def, atom))
436 use |= ATOMMASK(atom);
441 atom = atomdef(&s->s);
442 if (atom >= 0) {
443 if (!ATOMELEM(use, atom))
1105 register int atom; local
1130 register int atom; local
1253 int atom; local
[all...]
/freebsd-10.3-release/sys/powerpc/mpc85xx/
H A Dlbc.h101 uint8_t atom; /* atomic op mode */ member in struct:lbc_bank
H A Dlbc.c300 regval |= (sc->sc_banks[i].atom << 2);
591 sc->sc_banks[bank].atom = LBCRES_ATOM_DISABLED;
/freebsd-10.3-release/lib/libpmc/
H A DMakefile26 MAN+= pmc.atom.3
H A Dlibpmc.c269 PMC_MDEP_TABLE(atom, IAP, PMC_CLASS_SOFT, PMC_CLASS_IAF, PMC_CLASS_TSC);
315 PMC_CLASS_TABLE_DESC(atom, IAP, atom, iap);
2775 count = PMC_EVENT_TABLE_SIZE(atom);
3107 PMC_MDEP_INIT_INTEL_V2(atom);
3272 evfence = atom_event_table + PMC_EVENT_TABLE_SIZE(atom);
/freebsd-10.3-release/contrib/gcc/
H A Dgcc.c5637 input suffix matches the atom bracketed by ATOM and END_ATOM. */
5639 input_suffix_matches (const char *atom, const char *end_atom)
5647 if (atom + 1 == end_atom
5651 if (*atom == 's')
5653 if (*atom == 'S')
5658 && !strncmp (input_suffix, atom, end_atom - atom)
5659 && input_suffix[end_atom - atom] == '\0');
5663 matching the atom bracketed by ATOM and END_ATOM appeared on the argument
5666 switch_matches (const char *atom, cons
5617 input_suffix_matches(const char *atom, const char *end_atom) argument
5644 switch_matches(const char *atom, const char *end_atom, int starred) argument
5698 const char *atom, *end_atom; local
5851 process_brace_body(const char *p, const char *atom, const char *end_atom, int starred, int matched) argument
7026 const char *atom; local
[all...]
/freebsd-10.3-release/sys/modules/drm2/radeonkms/
H A DMakefile58 atom.c \
/freebsd-10.3-release/sys/geom/raid3/
H A Dg_raid3.c1055 off_t atom, cadd, padd, left; local
1072 atom = sc->sc_sectorsize / (sc->sc_ndisks - 1);
1078 bcopy(pbp->bio_data + padd, cbp->bio_data + cadd, atom);
1079 padd += atom;
1081 cadd += atom;
1125 off_t atom, cadd, padd, left; local
1243 atom = sc->sc_sectorsize / (sc->sc_ndisks - 1);
1247 bcopy(cbp->bio_data + cadd, pbp->bio_data + padd, atom);
1248 pbp->bio_completed += atom;
1249 padd += atom;
1632 u_int atom; local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DHashedNameToDIE.h228 GetAtomTypeName (uint16_t atom) argument
230 switch (atom)
259 // and then define the atom type for the array, in this case
301 assert (!"Unhandled atom form");
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_subr/
H A Dskel.c225 /* Parse any kind of skel object --- atom, or list. */
239 /* Is it a list, or an atom? */
328 /* Parse an atom with implicit length --- one that starts with a name
339 /* Verify that the atom starts with a name character. At the
361 /* Parse an atom with explicit length --- one that starts with a byte
453 Assume that SKEL is an atom. */
490 /* Append an atom to STR. */
505 atom's contents. */
627 svn_skel_t *atom = svn_skel__str_atom(value, result_pool);
629 svn_skel__prepend(atom, ske
621 svn_skel_t *atom = svn_skel__str_atom(value, result_pool); local
[all...]
/freebsd-10.3-release/share/mk/
H A Dbsd.cpu.mk178 . elif ${CPUTYPE} == "atom" || ${CPUTYPE} == "core2"
231 . elif ${CPUTYPE} == "atom" || ${CPUTYPE} == "core2"
/freebsd-10.3-release/gnu/usr.bin/grep/
H A Ddfa.c1183 atom
1185 atom:
1205 atom (void) function
1217 /* We treat a multibyte character as a single atom, so that DFA
1300 atom();

Completed in 309 milliseconds