| /netbsd-src/usr.bin/make/ |
| H A D | lst.c | 40 LstNodeNew(ListNode *prev, ListNode *next, void *datum) in LstNodeNew() argument 46 ln->datum = datum; in LstNodeNew() 69 free(ln->datum); in Lst_DoneFree() 76 Lst_InsertBefore(List *list, ListNode *ln, void *datum) in Lst_InsertBefore() argument 80 assert(datum != NULL); in Lst_InsertBefore() 82 newNode = LstNodeNew(ln->prev, ln, datum); in Lst_InsertBefore() 94 Lst_Prepend(List *list, void *datum) in Lst_Prepend() argument 98 assert(datum != NULL); in Lst_Prepend() 100 ln = LstNodeNew(NULL, list->first, datum); in Lst_Prepend() 113 Lst_Append(List *list, void *datum) in Lst_Append() argument [all …]
|
| /netbsd-src/usr.sbin/ypserv/common/ |
| H A D | ypdb.h | 56 } datum; typedef 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); 71 int ypdb_store(DBM *, datum, datum, int);
|
| H A D | ypdb.c | 186 datum 187 ypdb_fetch(DBM *db, datum key) in ypdb_fetch() 189 datum retkey; in ypdb_fetch() 212 datum 216 datum retkey; in ypdb_firstkey() 236 datum 240 datum retkey; in ypdb_nextkey() 260 datum 261 ypdb_setkey(DBM *db, datum key) in ypdb_setkey() 283 ypdb_delete(DBM *db, datum key) in ypdb_delete() [all …]
|
| /netbsd-src/external/bsd/ntp/dist/libntp/ |
| H A D | ntp_calgps.c | 63 TNtpDatum * datum in _norm_ntp_datum() argument 68 if (datum->secs >= limit) { in _norm_ntp_datum() 70 ++datum->days; in _norm_ntp_datum() 71 while ((datum->secs -= limit) >= limit); in _norm_ntp_datum() 72 } else if (datum->secs < 0) { in _norm_ntp_datum() 74 --datum->days; in _norm_ntp_datum() 75 while ((datum->secs += limit) < 0); in _norm_ntp_datum() 81 TGpsDatum * datum in _norm_gps_datum() argument 86 if (datum->wsecs >= limit) { in _norm_gps_datum() 88 ++datum->weeks; in _norm_gps_datum() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| H A D | ndbm_wrap.h | 69 #define datum dbm_rename(datum) macro 74 } datum; typedef 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);
|
| H A D | ndbm_wrap.c | 83 dbm_delete (DBM *db, datum dkey) in dbm_delete() 94 datum 95 dbm_fetch (DBM *db, datum dkey) in dbm_fetch() 97 datum dvalue; in dbm_fetch() 114 static datum 118 datum d; in dbm_get() 141 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL 147 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL 199 dbm_store (DBM *db, datum dkey, datum dvalue, int flags)
|
| /netbsd-src/include/ |
| H A D | ndbm.h | 65 } datum; typedef 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);
|
| /netbsd-src/external/bsd/top/dist/ |
| H A D | hash.c | 120 qi->datum = ((char *)qi + sizeof(llistitem)); in ll_newitem() 300 hi = (hash_item_uint *)newli->datum; in hash_add_uint() 314 h = (hash_item_uint *)li->datum; in hash_add_uint() 336 return ((hash_item_uint *)(li->datum))->value; in hash_add_uint() 368 hi = (hash_item_uint *)li->datum; in hash_replace_uint() 384 hi = (hash_item_uint *)li->datum; in hash_replace_uint() 419 h = (hash_item_uint *)li->datum; in hash_lookup_uint() 459 hi = (hash_item_uint *)li->datum; in hash_remove_uint() 507 return (hash_item_uint *)pos->ll_item->datum; in hash_first_uint() 564 return (hash_item_uint *)li->datum; in hash_next_uint() [all …]
|
| /netbsd-src/lib/libc/db/hash/ |
| H A D | ndbmdatum.c | 65 datum 66 dbm_fetch(DBM *db, datum key) in dbm_fetch() 68 datum retdata; in dbm_fetch() 89 datum 93 datum retkey; in dbm_firstkey() 109 datum 113 datum retkey; in dbm_nextkey() 130 dbm_delete(DBM *db, datum key) in dbm_delete() 151 dbm_store(DBM *db, datum key, datum data, int flags) in dbm_store()
|
| /netbsd-src/external/gpl2/xcvs/dist/src/ |
| H A D | myndbm.h | 36 } datum; typedef 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);
|
| H A D | myndbm.c | 100 datum 101 mydbm_fetch (DBM *db, datum key) in mydbm_fetch() 105 datum val; in mydbm_fetch() 129 datum 133 datum key; in mydbm_firstkey() 153 datum 157 datum key; in mydbm_nextkey() 182 mydbm_store (DBM *db, datum key, datum value, int flags) in mydbm_store()
|
| /netbsd-src/sys/arch/mips/mips/ |
| H A D | mips_mcclock.c | 97 saved_rega = clk[MC_REGA].datum; in mips_mc_cpuspeed() 98 saved_regb = clk[MC_REGB].datum; in mips_mc_cpuspeed() 104 clk[MC_REGA].datum = MC_BASE_32_KHz | MC_RATE_256_Hz; in mips_mc_cpuspeed() 105 clk[MC_REGB].datum = MC_REGB_BINARY|MC_REGB_24HR|MC_REGB_PIE| MC_REGB_SQWE; in mips_mc_cpuspeed() 111 clk[MC_REGA].datum = saved_rega; in mips_mc_cpuspeed() 112 clk[MC_REGB].datum = saved_regb; in mips_mc_cpuspeed() 148 junk = clk[MC_REGC].datum; in mips_mcclock_tickloop() 156 junk = clk[MC_REGC].datum; in mips_mcclock_tickloop() 167 junk = clk[MC_REGC].datum; in mips_mcclock_tickloop()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/ |
| H A D | params_conversion_test.c | 31 void *ref, *datum; member 138 pc->datum = &datum_i32; in param_conversion_load_stanza() 147 pc->datum = &datum_i64; in param_conversion_load_stanza() 156 pc->datum = &datum_u32; in param_conversion_load_stanza() 165 pc->datum = &datum_u64; in param_conversion_load_stanza() 174 pc->datum = &datum_d; in param_conversion_load_stanza() 203 memset(pc->datum, 44, pc->size); in param_conversion_test() 205 || !TEST_mem_eq(pc->datum, pc->size, pc->ref, pc->size)) { in param_conversion_test() 223 memset(pc->datum, 44, pc->size); in param_conversion_test() 225 || !TEST_mem_eq(pc->datum, pc->size, pc->ref, pc->size)) { in param_conversion_test() [all …]
|
| /netbsd-src/sys/external/bsd/drm2/linux/ |
| H A D | linux_xa.c | 125 xa_store(struct xarray *xa, unsigned long key, void *datum, gfp_t gfp) in xa_store() argument 129 KASSERT(datum != NULL); in xa_store() 130 KASSERT(((uintptr_t)datum & 0x3) == 0); in xa_store() 136 n->n_datum = datum; in xa_store() 148 datum = collision->n_datum; in xa_store() 151 return datum; in xa_store() 155 xa_alloc(struct xarray *xa, uint32_t *idp, void *datum, struct xa_limit limit, in xa_alloc() argument 168 n->n_datum = datum; in xa_alloc() 234 void *datum = NULL; in xa_erase() local 243 datum = n->n_datum; in xa_erase() [all …]
|
| /netbsd-src/sys/arch/alpha/tc/ |
| H A D | mcclock_ioasic.c | 51 u_char datum; member 100 mcclock_ioasic_write(struct mc146818_softc *sc, u_int reg, u_int datum) in mcclock_ioasic_write() argument 104 isc->sc_dp[reg].datum = datum; in mcclock_ioasic_write() 112 return isc->sc_dp[reg].datum; in mcclock_ioasic_read()
|
| /netbsd-src/external/gpl3/gcc.old/dist/include/ |
| H A D | obstack.h | 334 # define obstack_1grow(OBSTACK, datum) \ argument 339 obstack_1grow_fast (__o, datum); }) 345 # define obstack_ptr_grow(OBSTACK, datum) \ argument 350 obstack_ptr_grow_fast (__o, datum); }) 352 # define obstack_int_grow(OBSTACK, datum) \ argument 357 obstack_int_grow_fast (__o, datum); }) 470 # define obstack_1grow(h, datum) \ argument 473 obstack_1grow_fast (h, datum)) 475 # define obstack_ptr_grow(h, datum) \ argument 478 obstack_ptr_grow_fast (h, datum)) [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/include/ |
| H A D | obstack.h | 334 # define obstack_1grow(OBSTACK, datum) \ argument 339 obstack_1grow_fast (__o, datum); }) 345 # define obstack_ptr_grow(OBSTACK, datum) \ argument 350 obstack_ptr_grow_fast (__o, datum); }) 352 # define obstack_int_grow(OBSTACK, datum) \ argument 357 obstack_int_grow_fast (__o, datum); }) 470 # define obstack_1grow(h, datum) \ argument 473 obstack_1grow_fast (h, datum)) 475 # define obstack_ptr_grow(h, datum) \ argument 478 obstack_ptr_grow_fast (h, datum)) [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/include/ |
| H A D | obstack.h | 334 # define obstack_1grow(OBSTACK, datum) \ argument 339 obstack_1grow_fast (__o, datum); }) 345 # define obstack_ptr_grow(OBSTACK, datum) \ argument 350 obstack_ptr_grow_fast (__o, datum); }) 352 # define obstack_int_grow(OBSTACK, datum) \ argument 357 obstack_int_grow_fast (__o, datum); }) 470 # define obstack_1grow(h, datum) \ argument 473 obstack_1grow_fast (h, datum)) 475 # define obstack_ptr_grow(h, datum) \ argument 478 obstack_ptr_grow_fast (h, datum)) [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| H A D | obstack.h | 317 # define obstack_1grow(OBSTACK,datum) \ argument 322 obstack_1grow_fast (__o, datum); \ 329 # define obstack_ptr_grow(OBSTACK,datum) \ argument 334 obstack_ptr_grow_fast (__o, datum); }) \ 336 # define obstack_int_grow(OBSTACK,datum) \ argument 341 obstack_int_grow_fast (__o, datum); }) 449 # define obstack_1grow(h,datum) \ argument 452 obstack_1grow_fast (h, datum)) 454 # define obstack_ptr_grow(h,datum) \ argument 457 obstack_ptr_grow_fast (h, datum)) [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| H A D | obstack.h | 317 # define obstack_1grow(OBSTACK,datum) \ argument 322 obstack_1grow_fast (__o, datum); \ 329 # define obstack_ptr_grow(OBSTACK,datum) \ argument 334 obstack_ptr_grow_fast (__o, datum); }) \ 336 # define obstack_int_grow(OBSTACK,datum) \ argument 341 obstack_int_grow_fast (__o, datum); }) 449 # define obstack_1grow(h,datum) \ argument 452 obstack_1grow_fast (h, datum)) 454 # define obstack_ptr_grow(h,datum) \ argument 457 obstack_ptr_grow_fast (h, datum)) [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/include/ |
| H A D | obstack.h | 334 # define obstack_1grow(OBSTACK, datum) \ argument 339 obstack_1grow_fast (__o, datum); }) 345 # define obstack_ptr_grow(OBSTACK, datum) \ argument 350 obstack_ptr_grow_fast (__o, datum); }) 352 # define obstack_int_grow(OBSTACK, datum) \ argument 357 obstack_int_grow_fast (__o, datum); }) 470 # define obstack_1grow(h, datum) \ argument 473 obstack_1grow_fast (h, datum)) 475 # define obstack_ptr_grow(h, datum) \ argument 478 obstack_ptr_grow_fast (h, datum)) [all …]
|
| /netbsd-src/sys/arch/cobalt/dev/ |
| H A D | mcclock.c | 98 mcclock_write(struct mc146818_softc *sc, u_int reg, u_int datum) in mcclock_write() argument 107 bus_space_write_1(iot, ioh, 1, datum); in mcclock_write() 115 u_int datum; in mcclock_read() local 121 datum = bus_space_read_1(iot, ioh, 1); in mcclock_read() 123 return datum; in mcclock_read()
|
| /netbsd-src/sys/dev/dec/ |
| H A D | mcclock_pad32.c | 70 mcclock_pad32_write(struct mcclock_softc *dev, u_int reg, u_int datum) in mcclock_pad32_write() argument 74 sc->sc_dp[reg].datum = datum; in mcclock_pad32_write() 82 return (sc->sc_dp[reg].datum); in mcclock_pad32_read()
|
| /netbsd-src/sys/arch/hp300/dev/ |
| H A D | mcclock_frodo.c | 115 mcclock_frodo_write(struct mc146818_softc *sc, u_int reg, u_int datum) in mcclock_frodo_write() argument 124 bus_space_write_1(iot, ioh, 1, datum); in mcclock_frodo_write() 132 u_int datum; in mcclock_frodo_read() local 138 datum = bus_space_read_1(iot, ioh, 1); in mcclock_frodo_read() 140 return datum; in mcclock_frodo_read()
|
| /netbsd-src/include/rpcsvc/ |
| H A D | yp_prot.h | 90 } datum; typedef 104 datum keydat; 125 datum valdat; 130 datum keydat; 131 datum valdat; 312 bool_t xdr_datum(XDR *, datum *);
|