| /onnv/onnv-gate/usr/src/cmd/filebench/common/ |
| vars.c | 48 * where an avd contains a boolean, integer, double, string, random 81 avd_get_type_string(avd_t avd) 83 switch (avd->avd_type) { 118 return ("illegal avd type"); 151 * Returns the fbint_t pointed to by the supplied avd_t "avd". 154 avd_get_int(avd_t avd) 158 if (avd == NULL) 161 switch (avd->avd_type) { 163 return (avd->avd_val.intval); 166 if (avd->avd_val.intptr 343 avd_t avd; local 363 avd_t avd; local 384 avd_t avd; local 444 avd_t avd; local [all...] |
| fb_random.c | 43 uint64_t round, avd_t avd) 58 if (avd) { 61 random = avd_get_int(avd); 97 uint32_t round, avd_t avd) 112 if (avd) { 115 random = (uint32_t)avd_get_int(avd);
|
| ipc.h | 220 struct avd shm_avd_ptrs[FILEBENCH_NVARS * 2];
|
| vars.h | 43 AVD_INVALID = 0, /* avd is empty */ 44 AVD_VAL_BOOL, /* avd contains a boolean_t */ 45 AVD_VARVAL_BOOL, /* avd points to the boolean_t in a var_t */ 46 AVD_VAL_INT, /* avd contains an fbint_t */ 47 AVD_VARVAL_INT, /* avd points to the fbint_t in a var_t */ 48 AVD_VAL_STR, /* avd contains a sting (*char) */ 49 AVD_VARVAL_STR, /* avd points to a string in a var_t */ 50 AVD_VAL_DBL, /* avd contains a double float */ 51 AVD_VARVAL_DBL, /* avd points to the double in a var_t */ 52 AVD_IND_VAR, /* avd points a var_t * 60 typedef struct avd { struct [all...] |
| parser_gram.y | 170 avd_t avd; 252 %type <avd> var_int_val [all...] |
| /onnv/onnv-gate/usr/src/cmd/fs.d/udfs/fsdb/ |
| fsdb_lex.l | 72 :{WS}*avd { return AVD; }
|
| fsdb_yacc.y | 85 %token AVD MVDS RVDS INTS FSDS ROOT 117 | avd | mvds | rvds | ints | fsds | root 462 avd : AVD { print_desc(NULL, AVD); } label
|
| /onnv/onnv-gate/usr/src/uts/common/fs/zfs/ |
| spa.c | 2855 vdev_t *rvd, *bvd, *avd = NULL; local [all...] |