Home
last modified time | relevance | path

Searched refs:varp (Results 1 – 11 of 11) sorted by relevance

/freebsd/sys/ddb/
H A Ddb_variables.c40 static int db_find_variable(struct db_variable **varp);
58 db_find_variable(struct db_variable **varp) in db_find_variable() argument
67 *varp = vp; in db_find_variable()
73 *varp = vp; in db_find_variable()
/freebsd/usr.bin/uname/
H A Duname.c201 char **varp = &(var); \
214 char **varp = &(var); \
222 *varp = buf; \
/freebsd/crypto/heimdal/appl/telnet/telnetd/
H A Dstate.c1027 char *cp, *varp, *valp; in suboption() local
1163 cp = varp = (char *)subpointer; in suboption()
1185 esetenv(varp, valp, 1); in suboption()
1187 unsetenv(varp); in suboption()
1188 cp = varp = (char *)subpointer; in suboption()
1204 esetenv(varp, valp, 1); in suboption()
1206 unsetenv(varp); in suboption()
/freebsd/sys/contrib/ck/include/
H A Dck_queue.h166 #define CK_SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
167 for ((varp) = &(head)->cslh_first; \
168 ((var) = ck_pr_load_ptr(varp)) != NULL; \
169 (varp) = &(var)->field.csle_next)
/freebsd/contrib/openbsm/compat/
H A Dqueue.h170 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
171 for ((varp) = &SLIST_FIRST((head)); \
172 ((var) = *(varp)) != NULL; \
173 (varp) = &SLIST_NEXT((var), field))
/freebsd/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y1177 var_t *varp; in validate_reference() local
1179 varp = &vars[command.returns[i].return_index]; in validate_reference()
1188 returns_enum_names[varp->type], in validate_reference()
1189 (const char *)varp->value); in validate_reference()
1192 switch (varp->type) { in validate_reference()
1195 validate_return(varp->value, response, 0); in validate_reference()
1199 validate_byte(varp->value, byte_response, 0); in validate_reference()
/freebsd/sys/dev/acpica/
H A Dacpivar.h265 #define __ACPI_BUS_ACCESSOR(varp, var, ivarp, ivar, type) \ argument
267 static __inline type varp ## _get_ ## var(device_t dev) \
275 static __inline void varp ## _set_ ## var(device_t dev, type t) \
/freebsd/contrib/libarchive/unzip/
H A Dla_queue.h221 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
222 for ((varp) = &SLIST_FIRST((head)); \
223 ((var) = *(varp)) != NULL; \
224 (varp) = &SLIST_NEXT((var), field))
/freebsd/sys/sys/
H A Dqueue.h251 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
252 for ((varp) = &SLIST_FIRST((head)); \
253 ((var) = *(varp)) != NULL; \
254 (varp) = &SLIST_NEXT((var), field))
H A Dbus.h895 #define __BUS_ACCESSOR(varp, var, ivarp, ivar, type) \ argument
897 static __inline type varp ## _get_ ## var(device_t dev) \
909 static __inline void varp ## _set_ ## var(device_t dev, type t) \
/freebsd/contrib/tcsh/
H A Dtc.func.c515 struct varent *varp; in find_stop_ed() local
521 if ((varp = adrof(STReditors)) != NULL) in find_stop_ed()
522 vv = varp->vec; in find_stop_ed()