HomeSort by: relevance | last modified time | path
    Searched defs:datum (Results 1 - 25 of 62) sorted by relevancy

1 2 3

  /src/lib/libc/compat/db/hash/
compat_ndbmdatum.c 30 #define datum datum12 macro
  /src/sys/dev/dec/
mcclock_pad32.h 41 u_char datum; member in struct:mcclock_pad32_clockdatum
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/
assign.c 21 are shown; when non-zero, shows the datum. */
23 int datum; member in struct:special_type
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
assign.c 21 are shown; when non-zero, shows the datum. */
23 int datum; member in struct:special_type
  /src/sys/arch/hp300/dev/
mcclock_frodo.c 115 mcclock_frodo_write(struct mc146818_softc *sc, u_int reg, u_int datum)
124 bus_space_write_1(iot, ioh, 1, datum);
132 u_int datum; local
138 datum = bus_space_read_1(iot, ioh, 1);
140 return datum;
  /src/usr.sbin/ypserv/common/
ypdb.h 52 #ifndef DATUM
56 } datum; typedef in typeref:struct:__anon8607
57 #define DATUM
64 int ypdb_delete(DBM *, datum);
65 datum ypdb_fetch(DBM *, datum);
66 datum ypdb_firstkey(DBM *);
67 datum ypdb_nextkey(DBM *);
68 datum ypdb_setkey(DBM *, datum);
    [all...]
  /src/include/
ndbm.h 65 } datum; typedef in typeref:struct:__anon127
81 int dbm_delete(DBM *, datum) __RENAME(__dbm_delete13);
82 datum dbm_fetch(DBM *, datum) __RENAME(__dbm_fetch13);
83 datum dbm_firstkey(DBM *) __RENAME(__dbm_firstkey13);
84 datum dbm_nextkey(DBM *) __RENAME(__dbm_nextkey13);
85 int dbm_store(DBM *, datum, datum, int) __RENAME(__dbm_store13);
  /src/sys/arch/alpha/tc/
mcclock_ioasic.c 51 u_char datum; member in struct:mcclock_ioasic_clockdatum
100 mcclock_ioasic_write(struct mc146818_softc *sc, u_int reg, u_int datum)
104 isc->sc_dp[reg].datum = datum;
112 return isc->sc_dp[reg].datum;
  /src/sys/arch/cobalt/dev/
mcclock.c 98 mcclock_write(struct mc146818_softc *sc, u_int reg, u_int datum)
107 bus_space_write_1(iot, ioh, 1, datum);
115 u_int datum; local
121 datum = bus_space_read_1(iot, ioh, 1);
123 return datum;
  /src/sys/arch/prep/pnpbus/
mcclock_pnpbus.c 178 mcclock_pnpbus_write(struct mc146818_softc *sc, u_int reg, u_int datum)
187 bus_space_write_1(iot, ioh, 1, datum);
195 u_int datum; local
201 datum = bus_space_read_1(iot, ioh, 1);
203 return (datum);
  /src/sys/arch/evbarm/tsarm/
tsrtc.c 138 tsrtc_write(struct mc146818_softc *mc_sc, u_int reg, u_int datum)
143 bus_space_write_1(sc->sc_iot, sc->sc_dath, 0, datum);
150 u_int datum; local
153 datum = bus_space_read_1(sc->sc_iot, sc->sc_dath, 0);
155 return (datum);
  /src/sys/arch/mvmeppc/isa/
mkclock_isa.c 191 uint8_t datum; local
200 datum = bus_space_read_1(iot, ioh, MKCLOCK_DATA);
203 return (datum);
207 mkclock_isa_nvwr(struct mk48txx_softc *sc, int off, uint8_t datum)
219 bus_space_write_1(iot, ioh, MKCLOCK_DATA, datum);
  /src/usr.bin/make/
lst.h 93 void *datum; /* datum associated with this element */ member in struct:ListNode
103 /* Free the list nodes, as well as each node's datum. */
124 /* Find the first node that contains the given datum, or NULL. */
129 /* Insert a datum before the given node. */
131 /* Add a datum at the head of the list. */
133 /* Add a datum at the tail of the list. */
150 /* Add a datum at the tail of the queue. */
152 Lst_Enqueue(List *list, void *datum)
154 Lst_Append(list, datum);
    [all...]
lst.c 40 LstNodeNew(ListNode *prev, ListNode *next, void *datum)
46 ln->datum = datum;
69 free(ln->datum);
74 /* Insert a new node with the datum before the given node. */
76 Lst_InsertBefore(List *list, ListNode *ln, void *datum)
80 assert(datum != NULL);
82 newNode = LstNodeNew(ln->prev, ln, datum);
94 Lst_Prepend(List *list, void *datum)
98 assert(datum != NULL)
236 void *datum = list->first->datum; local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
ndbm_wrap.h 69 #define datum dbm_rename(datum) macro
74 } datum; typedef in typeref:struct:__anon925
87 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL dbm_delete (DBM*, datum);
89 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_fetch (DBM*, datum);
90 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_firstkey (DBM*);
91 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_nextkey (DBM*);
93 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL dbm_store (DBM*, datum, datum, int)
    [all...]
  /src/external/gpl2/xcvs/dist/src/
myndbm.h 36 } datum; typedef in typeref:struct:__anon9629
54 datum mydbm_fetch (DBM * db, datum key);
55 datum mydbm_firstkey (DBM * db);
56 datum mydbm_nextkey (DBM * db);
57 extern int mydbm_store (DBM *, datum, datum, int);
  /src/sys/external/bsd/drm2/linux/
linux_radixtree.c 60 radix_tree_insert(struct radix_tree_root *root, unsigned long key, void *datum)
70 kludge->k_datum = datum;
84 void *datum = NULL; local
92 datum = kludge->k_datum;
95 return datum;
  /src/external/bsd/top/dist/
hash.h 50 void *datum; member in struct:llistitem
  /src/external/gpl3/binutils/dist/include/opcode/
pyr.h 110 struct pyr_datum datum; /* rest of opcode table [datum] */ member in struct:pyr_opcode
  /src/external/gpl3/binutils.old/dist/include/opcode/
pyr.h 110 struct pyr_datum datum; /* rest of opcode table [datum] */ member in struct:pyr_opcode
  /src/external/gpl3/gdb.old/dist/include/opcode/
pyr.h 110 struct pyr_datum datum; /* rest of opcode table [datum] */ member in struct:pyr_opcode
  /src/external/gpl3/gdb.old/dist/gdb/
registry.h 143 DATA *datum = get (obj); local
144 if (datum != nullptr)
146 cleanup (datum);
157 DATA *datum = (DATA *) arg; local
159 d (datum);
203 /* Set the datum associated with KEY in this container. */
204 void set (unsigned key, void *datum)
206 m_fields[key] = datum;
209 /* Fetch the datum associated with KEY in this container. If 'set'
  /src/external/gpl3/gdb/dist/gdb/
registry.h 143 DATA *datum = get (obj); local
144 if (datum != nullptr)
146 cleanup (datum);
157 DATA *datum = (DATA *) arg; local
159 d (datum);
203 /* Set the datum associated with KEY in this container. */
204 void set (unsigned key, void *datum)
206 m_fields[key] = datum;
209 /* Fetch the datum associated with KEY in this container. If 'set'
  /src/external/gpl3/gdb/dist/include/opcode/
pyr.h 110 struct pyr_datum datum; /* rest of opcode table [datum] */ member in struct:pyr_opcode
  /src/sys/arch/hp300/stand/common/
clock.c 231 uint8_t datum; local
234 datum = mcclock[1 << 2]; /* frodo chip has 4 byte stride */
236 return datum;

Completed in 25 milliseconds

1 2 3