/freebsd/sys/ddb/ |
H A D | db_variables.c | 40 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/crypto/heimdal/appl/telnet/telnetd/ |
H A D | state.c | 1027 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/usr.bin/uname/ |
H A D | uname.c | 201 char **varp = &(var); \ 214 char **varp = &(var); \ 222 *varp = buf; \
|
/freebsd/sys/contrib/ck/include/ |
H A D | ck_queue.h | 166 #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 D | queue.h | 170 #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 D | testlang_parse.y | 1177 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 D | acpivar.h | 293 #define __ACPI_BUS_ACCESSOR(varp, var, ivarp, ivar, type) \ argument 295 static __inline type varp ## _get_ ## var(device_t dev) \ 303 static __inline void varp ## _set_ ## var(device_t dev, type t) \
|
/freebsd/contrib/libarchive/unzip/ |
H A D | la_queue.h | 221 #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 D | queue.h | 254 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument 255 for ((varp) = &SLIST_FIRST((head)); \ 256 ((var) = *(varp)) != NULL; \ 257 (varp) = &SLIST_NEXT((var), field))
|
H A D | bus.h | 888 #define __BUS_ACCESSOR(varp, var, ivarp, ivar, type) \ argument 890 static __inline type varp ## _get_ ## var(device_t dev) \ 902 static __inline void varp ## _set_ ## var(device_t dev, type t) \
|
/freebsd/contrib/tcsh/ |
H A D | tc.func.c | 515 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()
|