Home
last modified time | relevance | path

Searched refs:atom (Results 1 – 25 of 146) sorted by relevance

123456

/netbsd-src/external/mpl/dhcp/dist/common/
H A Dconflex.c729 intern(char *atom, enum dhcp_token dfv) { in intern() argument
730 if (!isascii(atom[0])) in intern()
733 switch (tolower((unsigned char)atom[0])) { in intern()
735 if (atom [1] == 0) in intern()
740 if (!strcasecmp(atom + 1, "bandoned")) in intern()
742 if (!strcasecmp(atom + 1, "ctive")) in intern()
744 if (!strncasecmp(atom + 1, "dd", 2)) { in intern()
745 if (atom[3] == '\0') in intern()
747 else if (!strcasecmp(atom + 3, "ress")) in intern()
751 if (!strcasecmp(atom + 1, "fter")) in intern()
[all …]
/netbsd-src/external/mpl/dhcp/dist/keama/
H A Dconflex.c709 intern(char *atom, enum dhcp_token dfv) { in intern() argument
710 if (!isascii(atom[0])) in intern()
713 switch (tolower((unsigned char)atom[0])) { in intern()
715 if (atom [1] == 0) in intern()
720 if (!strcasecmp(atom + 1, "bandoned")) in intern()
722 if (!strcasecmp(atom + 1, "ctive")) in intern()
724 if (!strncasecmp(atom + 1, "dd", 2)) { in intern()
725 if (atom[3] == '\0') in intern()
727 else if (!strcasecmp(atom + 3, "ress")) in intern()
731 if (!strcasecmp(atom + 1, "fter")) in intern()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/i386/
H A Datom.md29 (define_automaton "atom")
32 (define_cpu_unit "atom-port-0,atom-port-1" "atom")
37 (define_cpu_unit "atom-eu-0, atom-eu-1,
38 atom-imul-1, atom-imul-2, atom-imul-3, atom-imul-4"
39 "atom")
43 ;; (define_reservation "atom-port-either" "(atom-port-0 | atom-port-1)")
47 (define_reservation "atom-port-dual" "(atom-port-0 + atom-port-1)")
48 (define_reservation "atom-all-eu" "(atom-eu-0 + atom-eu-1 +
49 atom-imul-1 + atom-imul-2 + atom-imul-3 +
50 atom-imul-4)")
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/i386/
H A Datom.md29 (define_automaton "atom")
32 (define_cpu_unit "atom-port-0,atom-port-1" "atom")
37 (define_cpu_unit "atom-eu-0, atom-eu-1,
38 atom-imul-1, atom-imul-2, atom-imul-3, atom-imul-4"
39 "atom")
43 ;; (define_reservation "atom-port-either" "(atom-port-0 | atom-port-1)")
47 (define_reservation "atom-port-dual" "(atom-port-0 + atom-port-1)")
48 (define_reservation "atom-all-eu" "(atom-eu-0 + atom-eu-1 +
49 atom-imul-1 + atom-imul-2 + atom-imul-3 +
50 atom-imul-4)")
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/src/libmj/
H A Dmj.c89 findentry(mj_t *atom, const char *name, const unsigned from, const unsigned incr) in findentry() argument
93 for (i = from ; i < atom->c ; i += incr) { in findentry()
94 if (strcmp(name, atom->value.v[i].value.s) == 0) { in findentry()
103 create_number(mj_t *atom, double d) in create_number() argument
107 atom->type = MJ_NUMBER; in create_number()
108 atom->c = snprintf(number, sizeof(number), "%g", d); in create_number()
109 atom->value.s = strnsave(number, (int)atom->c, MJ_HUMAN); in create_number()
114 create_integer(mj_t *atom, int64_t i) in create_integer() argument
118 atom->type = MJ_NUMBER; in create_integer()
119 atom->c = snprintf(number, sizeof(number), "%" PRIi64, i); in create_integer()
[all …]
/netbsd-src/external/gpl3/binutils/dist/libctf/
H A Dctf-string.c78 ctf_str_purge_atom_refs (ctf_str_atom_t *atom) in ctf_str_purge_atom_refs() argument
82 for (ref = ctf_list_next (&atom->csa_refs); ref != NULL; ref = next) in ctf_str_purge_atom_refs()
85 ctf_list_delete (&atom->csa_refs, ref); in ctf_str_purge_atom_refs()
94 ctf_str_atom_t *atom = a; in ctf_str_free_atom() local
96 ctf_str_purge_atom_refs (atom); in ctf_str_free_atom()
97 free (atom); in ctf_str_free_atom()
166 ctf_str_atom_t *atom = NULL; in ctf_str_add_ref_internal() local
169 atom = ctf_dynhash_lookup (fp->ctf_str_atoms, str); in ctf_str_add_ref_internal()
180 if (atom) in ctf_str_add_ref_internal()
185 ctf_list_append (&atom->csa_refs, aref); in ctf_str_add_ref_internal()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/libctf/
H A Dctf-string.c78 ctf_str_purge_atom_refs (ctf_str_atom_t *atom) in ctf_str_purge_atom_refs() argument
82 for (ref = ctf_list_next (&atom->csa_refs); ref != NULL; ref = next) in ctf_str_purge_atom_refs()
85 ctf_list_delete (&atom->csa_refs, ref); in ctf_str_purge_atom_refs()
94 ctf_str_atom_t *atom = a; in ctf_str_free_atom() local
96 ctf_str_purge_atom_refs (atom); in ctf_str_free_atom()
97 free (atom); in ctf_str_free_atom()
166 ctf_str_atom_t *atom = NULL; in ctf_str_add_ref_internal() local
169 atom = ctf_dynhash_lookup (fp->ctf_str_atoms, str); in ctf_str_add_ref_internal()
178 if (atom) in ctf_str_add_ref_internal()
183 ctf_list_append (&atom->csa_refs, aref); in ctf_str_add_ref_internal()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Dtok822_limit.ref5 atom "1"
8 atom "2"
11 atom "3"
14 atom "4"
17 atom "5"
20 atom "6"
23 atom "7"
26 atom "8"
29 atom "9"
32 atom "10"
[all …]
H A Dtok822_parse.ref5 atom "wietse"
7 atom "porcupine"
9 atom "org"
26 atom "porcupine"
28 atom "org"
43 atom "wietse"
45 atom "porcupine"
47 atom "org"
62 atom "wietse"
64 atom "porcupine"
[all …]
H A Dmap_search.c127 char *atom; in map_search_create() local
213 while ((atom = mystrtok(&attr_value, CHARS_COMMA_SP)) != 0) { in map_search_create()
215 atom)) == MAP_SEARCH_CODE_UNKNOWN) { in map_search_create()
216 msg_warn("unknown search type '%s' in '%s'", atom, map_spec); in map_search_create()
/netbsd-src/external/mit/xorg/lib/xcb-util/atom/
H A Datoms.c688 xcb_atom_t atom = reply->atom; in xcb_atom_get() local
690 return atom; in xcb_atom_get()
706 if((cookie.u.atom = xcb_atom_get_predefined(name_len, name)) != XCB_NONE) in xcb_atom_get_fast()
730 cookie.u.atom = reply->atom; in xcb_atom_get_fast_reply()
734 cookie.u.atom = XCB_NONE; in xcb_atom_get_fast_reply()
737 return cookie.u.atom; in xcb_atom_get_fast_reply()
740 const char *xcb_atom_get_name_predefined(xcb_atom_t atom) in xcb_atom_get_name_predefined() argument
742 if(atom <= 0 || atom > (sizeof(atom_name_offsets) / sizeof(*atom_name_offsets))) in xcb_atom_get_name_predefined()
744 return atom_names + atom_name_offsets[atom - 1]; in xcb_atom_get_name_predefined()
747 int xcb_atom_get_name(xcb_connection_t *c, xcb_atom_t atom, const char **namep, int *lengthp) in xcb_atom_get_name() argument
[all …]
/netbsd-src/external/bsd/elftoolchain/dist/libdwarf/
H A Dlibdwarf_loc.c374 Dwarf_Small atom, Dwarf_Unsigned operand1, Dwarf_Unsigned operand2, in _dwarf_loc_expr_add_atom() argument
390 switch (atom) { in _dwarf_loc_expr_add_atom()
493 *p++ = atom; in _dwarf_loc_expr_add_atom()
502 *p++ = atom; in _dwarf_loc_expr_add_atom()
511 *p++ = atom; in _dwarf_loc_expr_add_atom()
520 *p++ = atom; in _dwarf_loc_expr_add_atom()
529 *p++ = atom; in _dwarf_loc_expr_add_atom()
540 *p++ = atom; in _dwarf_loc_expr_add_atom()
581 *p++ = atom; in _dwarf_loc_expr_add_atom()
592 *p++ = atom; in _dwarf_loc_expr_add_atom()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Datomic.d851 shared(T) atom = cast(shared(T))null;
854 assert(atom is base, T.stringof);
856 assert(atomicExchange(&atom, val) is base, T.stringof);
857 assert(atom is val, T.stringof);
868 shared(T) atom = cast(shared(T))null;
871 assert(atom is base, T.stringof);
873 assert(cas(&atom, base, val), T.stringof);
874 assert(atom is val, T.stringof);
875 assert(!cas(&atom, base, base), T.stringof);
876 assert(atom is val, T.stringof);
[all …]
/netbsd-src/external/bsd/nvi/dist/motif/
H A Dm_cde.c71 Atom atom, type; in is_cde() local
79 atom = XInternAtom( d, Atoms[i].name, True ); in is_cde()
80 if ( atom == None ) { in is_cde()
88 atom, in is_cde()
/netbsd-src/external/mit/xorg/lib/xcb-util/icccm/
H A DMakefile10 xcb-atom ${.CURDIR}/../atom \
16 CPPFLAGS+= -I${X11SRCDIR.xcb-util}/atom
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
H A Dnouveau_dispnv50_disp.c1961 struct nv50_atom *atom = nv50_atom(state); in nv50_disp_atomic_commit_tail() local
1967 NV_ATOMIC(drm, "commit %d %d\n", atom->lock_core, atom->flush_disable); in nv50_disp_atomic_commit_tail()
1972 if (atom->lock_core) in nv50_disp_atomic_commit_tail()
1989 nv50_head_flush_clr(head, asyh, atom->flush_disable); in nv50_disp_atomic_commit_tail()
2004 nv50_wndw_flush_clr(wndw, interlock, atom->flush_disable, asyw); in nv50_disp_atomic_commit_tail()
2008 list_for_each_entry(outp, &atom->outp, head) { in nv50_disp_atomic_commit_tail()
2031 if (atom->flush_disable) { in nv50_disp_atomic_commit_tail()
2039 list_for_each_entry_safe(outp, outt, &atom->outp, head) { in nv50_disp_atomic_commit_tail()
2104 (!asyw->clr.mask || atom->flush_disable)) in nv50_disp_atomic_commit_tail()
2117 !atom->state.legacy_cursor_update) in nv50_disp_atomic_commit_tail()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dcheck.cc1549 gfc_check_atomic (gfc_expr *atom, int atom_no, gfc_expr *value, int val_no, in gfc_check_atomic() argument
1552 if (!scalar_check (atom, atom_no) || !scalar_check (value, val_no)) in gfc_check_atomic()
1555 if (!(atom->ts.type == BT_INTEGER && atom->ts.kind == gfc_atomic_int_kind) in gfc_check_atomic()
1556 && !(atom->ts.type == BT_LOGICAL in gfc_check_atomic()
1557 && atom->ts.kind == gfc_atomic_logical_kind)) in gfc_check_atomic()
1561 "ATOMIC_LOGICAL_KIND", &atom->where, gfc_current_intrinsic); in gfc_check_atomic()
1565 if (!gfc_is_coarray (atom) && !gfc_is_coindexed (atom)) in gfc_check_atomic()
1568 "coarray or coindexed", &atom->where, gfc_current_intrinsic); in gfc_check_atomic()
1572 if (atom->ts.type != value->ts.type) in gfc_check_atomic()
1577 gfc_current_intrinsic_arg[atom_no]->name, &atom->where); in gfc_check_atomic()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dcheck.c1545 gfc_check_atomic (gfc_expr *atom, int atom_no, gfc_expr *value, int val_no, in gfc_check_atomic() argument
1548 if (!scalar_check (atom, atom_no) || !scalar_check (value, val_no)) in gfc_check_atomic()
1551 if (!(atom->ts.type == BT_INTEGER && atom->ts.kind == gfc_atomic_int_kind) in gfc_check_atomic()
1552 && !(atom->ts.type == BT_LOGICAL in gfc_check_atomic()
1553 && atom->ts.kind == gfc_atomic_logical_kind)) in gfc_check_atomic()
1557 "ATOMIC_LOGICAL_KIND", &atom->where, gfc_current_intrinsic); in gfc_check_atomic()
1561 if (!gfc_is_coarray (atom) && !gfc_is_coindexed (atom)) in gfc_check_atomic()
1564 "coarray or coindexed", &atom->where, gfc_current_intrinsic); in gfc_check_atomic()
1568 if (atom->ts.type != value->ts.type) in gfc_check_atomic()
1573 gfc_current_intrinsic_arg[atom_no]->name, &atom->where); in gfc_check_atomic()
[all …]
/netbsd-src/external/bsd/nsd/dist/
H A Dnamedb.h343 rdata_atom_domain(rdata_atom_type atom) in rdata_atom_domain() argument
345 return atom.domain; in rdata_atom_domain()
349 rdata_atom_size(rdata_atom_type atom) in rdata_atom_size() argument
351 return *atom.data; in rdata_atom_size()
355 rdata_atom_data(rdata_atom_type atom) in rdata_atom_data() argument
357 return (uint8_t *) (atom.data + 1); in rdata_atom_data()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dconstraint.cc766 tree atom = build1 (ATOMIC_CONSTR, ci, map); in normalize_atom() local
774 ATOMIC_CONSTR_EXPR_FROM_CONCEPT_P (atom) = true; in normalize_atom()
782 tree *slot = atom_cache->find_slot (atom, INSERT); in normalize_atom()
805 *slot = atom; in normalize_atom()
807 return atom; in normalize_atom()
2432 tree atom; member
2468 if (ATOMIC_CONSTR_MAP_INSTANTIATED_P (e->atom)) in hash()
2474 return hash_atomic_constraint (e->atom); in hash()
2481 hashval_t value = htab_hash_pointer (e->atom); in hash()
2483 if (tree map = ATOMIC_CONSTR_MAP (e->atom)) in hash()
[all …]
/netbsd-src/external/mit/xorg/lib/xcb-util/
H A DMakefile4 atom event aux .WAIT property .WAIT \
16 .PATH: ${X11SRCDIR.xcb-util}/atom
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgcc.cc7025 input_suffix_matches (const char *atom, const char *end_atom) in input_suffix_matches() argument
7028 && !strncmp (input_suffix, atom, end_atom - atom) in input_suffix_matches()
7029 && input_suffix[end_atom - atom] == '\0'); in input_suffix_matches()
7035 input_spec_matches (const char *atom, const char *end_atom) in input_spec_matches() argument
7040 && !strncmp (input_file_compiler->suffix + 1, atom, in input_spec_matches()
7041 end_atom - atom) in input_spec_matches()
7042 && input_file_compiler->suffix[end_atom - atom + 1] == '\0'); in input_spec_matches()
7049 switch_matches (const char *atom, const char *end_atom, int starred) in switch_matches() argument
7052 int len = end_atom - atom; in switch_matches()
7056 if (!strncmp (switches[i].part1, atom, len) in switch_matches()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgcc.c6288 input_suffix_matches (const char *atom, const char *end_atom) in input_suffix_matches() argument
6291 && !strncmp (input_suffix, atom, end_atom - atom) in input_suffix_matches()
6292 && input_suffix[end_atom - atom] == '\0'); in input_suffix_matches()
6298 input_spec_matches (const char *atom, const char *end_atom) in input_spec_matches() argument
6303 && !strncmp (input_file_compiler->suffix + 1, atom, in input_spec_matches()
6304 end_atom - atom) in input_spec_matches()
6305 && input_file_compiler->suffix[end_atom - atom + 1] == '\0'); in input_spec_matches()
6312 switch_matches (const char *atom, const char *end_atom, int starred) in switch_matches() argument
6315 int len = end_atom - atom; in switch_matches()
6319 if (!strncmp (switches[i].part1, atom, len) in switch_matches()
[all …]
/netbsd-src/external/lgpl3/gmp/dist/mpn/x86/atom/sse2/
H A Dsqr_basecase.asm1 dnl x86 mpn_sqr_basecase -- square an mpn number, optimised for atom.
605 rcr n C FIXME: isn't this awfully slow on atom???
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dlammps21 >0x08 string DUMPATOM LAMMPS atom style binary dump
28 >0x08 string DUMPATOM LAMMPS atom style binary dump

123456