Searched refs:datum (Results 1 - 25 of 53) sorted by relevance

123

/freebsd-10.0-release/include/
H A Dndbm.h57 } datum; typedef in typeref:struct:__anon5280
65 int dbm_delete(DBM *, datum);
67 datum dbm_fetch(DBM *, datum);
68 datum dbm_firstkey(DBM *);
70 long dbm_forder(DBM *, datum);
72 datum dbm_nextkey(DBM *);
74 int dbm_store(DBM *, datum, datum, int);
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dndbm_wrap.h67 #define datum dbm_rename(datum) macro
72 } datum; typedef in typeref:struct:__anon4872
85 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL dbm_delete (DBM*, datum);
87 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_fetch (DBM*, datum);
88 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_firstkey (DBM*);
89 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_nextkey (DBM*);
91 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL dbm_store (DBM*, datum, datum, in
[all...]
H A Dndbm_wrap.c79 dbm_delete (DBM *db, datum dkey)
90 datum
91 dbm_fetch (DBM *db, datum dkey)
93 datum dvalue;
110 static datum
114 datum datum; local
119 datum.dptr = NULL;
120 datum.dsize = 0;
122 DBT2DATUM(&value, &datum);
[all...]
/freebsd-10.0-release/contrib/binutils/include/
H A Dgdbm.h45 } datum; typedef in typeref:struct:__anon562
58 extern datum gdbm_fetch ();
64 extern datum gdbm_firstkey ();
66 extern datum gdbm_nextkey ();
H A Dobstack.h356 # define obstack_1grow(OBSTACK,datum) \
361 obstack_1grow_fast (__o, datum); \
368 # define obstack_ptr_grow(OBSTACK,datum) \
373 obstack_ptr_grow_fast (__o, datum); })
375 # define obstack_int_grow(OBSTACK,datum) \
380 obstack_int_grow_fast (__o, datum); })
487 # define obstack_1grow(h,datum) \
490 obstack_1grow_fast (h, datum))
492 # define obstack_ptr_grow(h,datum) \
495 obstack_ptr_grow_fast (h, datum))
[all...]
/freebsd-10.0-release/contrib/gdb/include/
H A Dgdbm.h45 } datum; typedef in typeref:struct:__anon1380
58 extern datum gdbm_fetch ();
64 extern datum gdbm_firstkey ();
66 extern datum gdbm_nextkey ();
/freebsd-10.0-release/contrib/bmake/lst.lib/
H A DlstDatum.c50 * Return the datum associated with a list node.
58 * Return the datum stored in the given node.
61 * The datum or NULL if the node is invalid.
72 return ((ln)->datum);
H A DlstReplace.c50 * Replace the datum in a node with a new datum
58 * Replace the datum in the given node with the new datum
64 * The datum field fo the node is altered.
74 (ln)->datum = d;
H A DlstDeQueue.c50 * Remove the node and return its datum from the head of the list
58 * Remove and return the datum at the head of the given list.
61 * The datum in the node at the head or NULL if the list
80 rd = tln->datum;
H A DlstDupl.c92 if (Lst_AtEnd(nl, copyProc(ln->datum)) == FAILURE) {
95 } else if (Lst_AtEnd(nl, ln->datum) == FAILURE) {
H A DlstFindFrom.c59 * given list using the passed datum and comparison function to
83 if ((*cProc)(tln->datum, d) == 0)
H A DlstMember.c50 * See if a given datum is on a given list.
67 if (lNode->datum == d) {
H A DlstDestroy.c59 * given, it is called with the datum from each node in turn before
90 freeProc(ln->datum);
H A DlstForEachFrom.c104 result = (*proc) (tln->datum, d);
H A DlstInt.h54 void *datum; /* datum associated with this element */ member in struct:ListNode
H A DlstConcat.c134 * prevPtr to fit into l1 and its datum field from the
135 * datum field of the corresponding element in l2. The 'last' node
148 nln->datum = ln->datum;
/freebsd-10.0-release/usr.sbin/rpc.ypupdated/
H A Dypupdated_server.c115 args->datum.yp_buf_len, args->datum.yp_buf_val);
122 args->datum.yp_buf_len, args->datum.yp_buf_val);
149 args->datum.yp_buf_len, args->datum.yp_buf_val);
156 args->datum.yp_buf_len, args->datum.yp_buf_val);
217 args->datum.yp_buf_len, args->datum
[all...]
/freebsd-10.0-release/lib/libc/db/hash/
H A Dndbm.c94 extern datum
97 datum key;
99 datum retdata;
120 extern datum
125 datum retkey;
141 extern datum
146 datum retkey;
165 datum key;
188 datum key, data;
/freebsd-10.0-release/usr.bin/make/
H A Dlst.c52 * ln node after which to append the datum
53 * d said datum
67 nLNode->datum = d;
135 * into list1 and its datum field from the datum field of the
147 nln->datum = ln->datum;
168 * Remove and return the datum at the head of the given list.
171 * The datum in the node at the head or (ick) NULL if the list
188 rd = tln->datum;
[all...]
H A Dlst.h57 void *datum; /* datum associated with this element */ member in struct:LstNode
114 #define Lst_Replace(NODE, D) ((void)((NODE)->datum = (D)))
130 /* Get datum from LstNode */
131 #define Lst_Datum(NODE) ((NODE)->datum)
138 * See if the given datum is on the list. Returns the LstNode containing
139 * the datum
/freebsd-10.0-release/contrib/apr-util/dbm/
H A Dapr_dbm_ndbm.c124 datum kd, rd;
143 datum kd, vd;
160 datum kd;
173 datum kd, rd;
185 datum rd;
198 datum kd, rd;
/freebsd-10.0-release/include/rpcsvc/
H A Dyp_prot.h51 * gets the first key/datum from the map.
53 * gets the next key/datum from the map.
63 * false on the last datum. read the source, it's
96 } datum; typedef in typeref:struct:__anon5324
110 datum keydat;
131 datum valdat;
136 datum keydat;
137 datum valdat;
313 bool_t xdr_datum(XDR *, datum *);
H A Dypupdate_prot.x75 yp_buf datum;
/freebsd-10.0-release/lib/librpcsvc/
H A Dyp_update.c126 upargs.datum.yp_buf_len = datalen;
127 upargs.datum.yp_buf_val = data;
143 upargs.datum.yp_buf_len = datalen;
144 upargs.datum.yp_buf_val = data;
175 upargs.datum.yp_buf_len = datalen;
176 upargs.datum.yp_buf_val = data;
/freebsd-10.0-release/contrib/gcclibs/include/
H A Dobstack.h356 # define obstack_1grow(OBSTACK,datum) \
361 obstack_1grow_fast (__o, datum); \
368 # define obstack_ptr_grow(OBSTACK,datum) \
373 obstack_ptr_grow_fast (__o, datum); })
375 # define obstack_int_grow(OBSTACK,datum) \
380 obstack_int_grow_fast (__o, datum); })
487 # define obstack_1grow(h,datum) \
490 obstack_1grow_fast (h, datum))
492 # define obstack_ptr_grow(h,datum) \
495 obstack_ptr_grow_fast (h, datum))
[all...]

Completed in 351 milliseconds

123