| /freebsd-9-stable/contrib/gdb/gdb/ |
| D | linespec.c | 478 struct symtabs_and_lines values, return_values; in decode_line_2() local 486 values.sals = (struct symtab_and_line *) in decode_line_2() 505 init_sal (&values.sals[i]); in decode_line_2() 508 values.sals[i] = find_function_start_sal (sym_arr[i], funfirstline); in decode_line_2() 509 if (values.sals[i].symtab) in decode_line_2() 513 values.sals[i].symtab->filename, in decode_line_2() 514 values.sals[i].line); in decode_line_2() 519 values.sals[i].line); in decode_line_2() 565 memcpy (return_values.sals, values.sals, in decode_line_2() 579 if (values.sals[num].pc) in decode_line_2() [all …]
|
| D | gdb.gdb | 17 define print-values 29 document print-values 30 Print a list of values. 31 Takes one argument, the value to print, and prints all the values which 32 are chained through the next field. Thus the most recently created values
|
| /freebsd-9-stable/usr.sbin/nscd/ |
| D | hashtable.h | 53 type *values; \ 85 (table)->entries[var].field.values = malloc( \ 88 assert((table)->entries[var].field.values != NULL);\ 99 free((table)->entries[var].field.values); \ 118 for ((var) = &((entry)->field.values[0]); \ 119 (var) < &((entry)->field.values[(entry)->field.size]); \ 134 (entry)->field.values = realloc((entry)->field.values, \ 141 (entry)->field.values = realloc((entry)->field.values, \ 172 memcpy(&(the_entry->field.values[the_entry->field.size++]), \ 175 qsort(the_entry->field.values, the_entry->field.size, \ [all …]
|
| /freebsd-9-stable/usr.sbin/bluetooth/bthidcontrol/ |
| D | sdp.c | 67 static sdp_attr_t values[8]; variable 68 #define nvalues (sizeof(values)/sizeof(values[0])) 103 values[i].flags = SDP_ATTR_INVALID; in hid_sdp_query() 104 values[i].attr = 0; in hid_sdp_query() 105 values[i].vlen = sizeof(buffer[i]); in hid_sdp_query() 106 values[i].value = buffer[i]; in hid_sdp_query() 113 if (sdp_search(ss, 1, &service, nattrs, attrs, nvalues, values) != 0) in hid_sdp_query() 120 if (values[i].flags != SDP_ATTR_OK) in hid_sdp_query() 123 switch (values[i].attr) { in hid_sdp_query() 125 control_psm = hid_sdp_parse_protocol_descriptor_list(&values[i]); in hid_sdp_query() [all …]
|
| /freebsd-9-stable/usr.sbin/bluetooth/sdpcontrol/ |
| D | search.c | 60 static sdp_attr_t values[NRECS * attrs_len]; variable 61 #define values_len (sizeof(values)/sizeof(values[0])) 591 values[n].flags = SDP_ATTR_INVALID; in do_sdp_search() 592 values[n].attr = 0; in do_sdp_search() 593 values[n].vlen = BSIZE; in do_sdp_search() 594 values[n].value = buffer[n]; in do_sdp_search() 598 n = sdp_search(xs, 1, &service, attrs_len, attrs, values_len, values); in do_sdp_search() 604 if (values[n].flags != SDP_ATTR_OK) in do_sdp_search() 607 switch (values[n].attr) { in do_sdp_search() 610 if (values[n].vlen == 5) { in do_sdp_search() [all …]
|
| /freebsd-9-stable/contrib/ntp/scripts/monitoring/ |
| D | loopwatch.config.SAMPLE | 15 # showoffs: yes/no control display of offset values 18 # showfreq: yes/no control display of frequency values 21 # showcmpl: yes/no control display of compliance values 24 # showoreg: yes/no control display of linear regression of offset values 27 # showfreg: yes/no control display of linear regression of frequency values 32 # values are interpreted using local time zone 34 # parts omitted from end default to lowest permitted values 40 # if a number is given, subtract this from sampling values for display 42 # offset values 46 # if a number is given, the sampling values are divided by this number [all …]
|
| /freebsd-9-stable/sys/isa/ |
| D | syscons_isa.c | 205 sc_get_bios_values(bios_values_t *values) in sc_get_bios_values() argument 210 values->cursor_start = *(uint8_t *)BIOS_PADDRTOVADDR(0x461); in sc_get_bios_values() 211 values->cursor_end = *(uint8_t *)BIOS_PADDRTOVADDR(0x460); in sc_get_bios_values() 213 values->shift_state = ((shift & BIOS_CLKED) != 0 ? CLKED : 0) | in sc_get_bios_values() 218 values->cursor_start = 0; in sc_get_bios_values() 219 values->cursor_end = 32; in sc_get_bios_values() 220 values->shift_state = 0; in sc_get_bios_values() 222 values->bell_pitch = BELL_PITCH; in sc_get_bios_values()
|
| /freebsd-9-stable/contrib/gcc/ |
| D | pointer-set.c | 199 void **values; member 213 result->values = XCNEWVEC (void *, result->n_slots); in pointer_map_create() 221 XDELETEVEC (pmap->values); in pointer_map_destroy() 237 return &pmap->values[n]; in pointer_map_contains() 272 new_values[n] = pmap->values[i]; in pointer_map_insert() 276 XDELETEVEC (pmap->values); in pointer_map_insert() 280 pmap->values = new_values; in pointer_map_insert() 290 return &pmap->values[n]; in pointer_map_insert() 302 if (pmap->keys[i] && !fn (pmap->keys[i], &pmap->values[i], data)) in pointer_map_traverse()
|
| D | libgcov.c | 189 cs_ptr->sum_all += ci_ptr->values[c_num]; in gcov_exit() 190 if (cs_ptr->run_max < ci_ptr->values[c_num]) in gcov_exit() 191 cs_ptr->run_max = ci_ptr->values[c_num]; in gcov_exit() 231 gcov_type *values[GCOV_COUNTERS]; in gcov_exit() local 277 cs_ptr->sum_all += ci_ptr->values[c_num]; in gcov_exit() 278 if (cs_ptr->run_max < ci_ptr->values[c_num]) in gcov_exit() 279 cs_ptr->run_max = ci_ptr->values[c_num]; in gcov_exit() 289 values[c_ix] = gi_ptr->counts[c_ix].values; in gcov_exit() 376 (*merge) (values[c_ix], n_counts); in gcov_exit() 377 values[c_ix] += n_counts; in gcov_exit() [all …]
|
| /freebsd-9-stable/contrib/wpa/hostapd/ |
| D | hlr_auc_gw.milenage_db | 2 # The example Ki, OPc, and AMF values here are from 3GPP TS 35.208 v6.0.0 4 # These values can be used for both UMTS (EAP-AKA) and GSM (EAP-SIM) 5 # authentication. In case of GSM/EAP-SIM, AMF and SQN values are not used, but 6 # dummy values will need to be included in this file. 11 # These values are from Test Set 19 which has the AMF separation bit set to 1
|
| /freebsd-9-stable/sys/powerpc/powerpc/ |
| D | sc_machdep.c | 79 sc_get_bios_values(bios_values_t *values) in sc_get_bios_values() argument 81 values->cursor_start = 0; in sc_get_bios_values() 82 values->cursor_end = 32; in sc_get_bios_values() 83 values->shift_state = 0; in sc_get_bios_values()
|
| /freebsd-9-stable/tools/regression/usr.bin/lastcomm/ |
| D | README | 5 1. Run values.sh for a given architecture and accounting version. 9 4. Compare the reported values in VERSION-ARCH.out against the 10 *.time values found in the file that values.sh generated.
|
| /freebsd-9-stable/sys/pc98/cbus/ |
| D | syscons_cbus.c | 167 sc_get_bios_values(bios_values_t *values) in sc_get_bios_values() argument 169 values->cursor_start = 15; in sc_get_bios_values() 170 values->cursor_end = 16; in sc_get_bios_values() 171 values->shift_state = 0; in sc_get_bios_values() 172 values->bell_pitch = BELL_PITCH; in sc_get_bios_values()
|
| /freebsd-9-stable/crypto/heimdal/lib/asn1/ |
| D | check-der.c | 71 int values[] = {0, 127, 128, 256, -128, -129, -1, -255, 255, in test_integer() local 77 tests[i].val = &values[i]; in test_integer() 78 asprintf (&tests[i].name, "integer %d", values[i]); in test_integer() 193 unsigned int values[] = {0, 127, 128, 256, 512, 32768, in test_unsigned() local 199 tests[i].val = &values[i]; in test_unsigned() 200 asprintf (&tests[i].name, "unsigned %u", values[i]); in test_unsigned() 394 time_t values[] = {0, 500159187}; in test_generalized_time() local 399 tests[i].val = &values[i]; in test_generalized_time() 400 asprintf (&tests[i].name, "time %d", (int)values[i]); in test_generalized_time() 436 heim_oid values[] = { in test_oid() local [all …]
|
| /freebsd-9-stable/crypto/heimdal/lib/hdb/ |
| D | hdb-ldap.c | 389 char **values; in LDAP_entry2mods() local 401 values = ldap_get_values(HDB2LDAP(db), msg, "objectClass"); in LDAP_entry2mods() 402 if (values) { in LDAP_entry2mods() 403 int num_objectclasses = ldap_count_values(values); in LDAP_entry2mods() 405 if (strcasecmp(values[i], "sambaSamAccount") == 0) { in LDAP_entry2mods() 407 } else if (strcasecmp(values[i], structural_object) == 0) { in LDAP_entry2mods() 409 } else if (strcasecmp(values[i], "krb5Principal") == 0) { in LDAP_entry2mods() 411 } else if (strcasecmp(values[i], "krb5KDCEntry") == 0) { in LDAP_entry2mods() 415 ldap_value_free(values); in LDAP_entry2mods() 605 values = ldap_get_values(HDB2LDAP(db), msg, "krb5Key"); in LDAP_entry2mods() [all …]
|
| /freebsd-9-stable/usr.bin/make/ |
| D | for.c | 234 Lst values; /* list of values for the variable */ in For_Run() local 247 Lst_Init(&values); in For_Run() 248 Lst_Concat(&values, &forLst, LST_CONCLINK); in For_Run() 253 LST_FOREACH(ln, &values) { in For_Run() 265 Lst_Destroy(&values, free); in For_Run()
|
| /freebsd-9-stable/crypto/openssl/crypto/x509v3/ |
| D | v3_bcons.c | 73 STACK_OF(CONF_VALUE) *values); 105 STACK_OF(CONF_VALUE) *values) in v2i_BASIC_CONSTRAINTS() 114 for (i = 0; i < sk_CONF_VALUE_num(values); i++) { in v2i_BASIC_CONSTRAINTS() 115 val = sk_CONF_VALUE_value(values, i); in v2i_BASIC_CONSTRAINTS()
|
| D | v3_pcons.c | 73 STACK_OF(CONF_VALUE) *values); 108 STACK_OF(CONF_VALUE) *values) in v2i_POLICY_CONSTRAINTS() 117 for (i = 0; i < sk_CONF_VALUE_num(values); i++) { in v2i_POLICY_CONSTRAINTS() 118 val = sk_CONF_VALUE_value(values, i); in v2i_POLICY_CONSTRAINTS()
|
| D | v3_akey.c | 73 STACK_OF(CONF_VALUE) *values); 118 STACK_OF(CONF_VALUE) *values) in v2i_AUTHORITY_KEYID() 132 for (i = 0; i < sk_CONF_VALUE_num(values); i++) { in v2i_AUTHORITY_KEYID() 133 cnf = sk_CONF_VALUE_value(values, i); in v2i_AUTHORITY_KEYID()
|
| /freebsd-9-stable/contrib/llvm/include/llvm/Target/ |
| D | TargetItinerary.td | 19 // Processor functional unit - These values represent the function units 21 // These may be independent values for each chip set or may be shared across 29 // Pipeline bypass / forwarding - These values specifies the symbolic names of 43 // Instruction stage - These values represent a non-pipelined step in 73 // Instruction itinerary classes - These values represent 'named' instruction 83 // Instruction itinerary data - These values provide a runtime map of an 94 // instruction issue the values which correspond to specific operand indices 121 // Processor itineraries - These values represent the set of all itinerary 124 // Set property values to -1 to use the default.
|
| /freebsd-9-stable/sys/cddl/contrib/opensolaris/common/zfs/ |
| D | zprop_common.c | 73 int objset_types, const char *values, const char *colname, in zprop_register_impl() argument 92 pd->pd_values = values; in zprop_register_impl() 104 zprop_attr_t attr, int objset_types, const char *values, in zprop_register_string() argument 108 objset_types, values, colname, B_FALSE, B_TRUE, NULL); in zprop_register_string() 114 zprop_attr_t attr, int objset_types, const char *values, in zprop_register_number() argument 118 objset_types, values, colname, B_TRUE, B_TRUE, NULL); in zprop_register_number() 123 zprop_attr_t attr, int objset_types, const char *values, in zprop_register_index() argument 127 objset_types, values, colname, B_TRUE, B_TRUE, idx_tbl); in zprop_register_index()
|
| /freebsd-9-stable/crypto/openssl/crypto/store/ |
| D | str_lib.c | 1200 } values[STORE_ATTR_TYPE_NUM + 1]; member 1263 return attrs->values[code].cstring; in STORE_ATTR_INFO_get0_cstr() 1277 return attrs->values[code].sha1string; in STORE_ATTR_INFO_get0_sha1str() 1291 return attrs->values[code].dn; in STORE_ATTR_INFO_get0_dn() 1305 return attrs->values[code].number; in STORE_ATTR_INFO_get0_number() 1319 if ((attrs->values[code].cstring = BUF_strndup(cstr, cstr_size))) in STORE_ATTR_INFO_set_cstr() 1337 if ((attrs->values[code].sha1string = in STORE_ATTR_INFO_set_sha1str() 1356 if ((attrs->values[code].dn = X509_NAME_dup(dn))) in STORE_ATTR_INFO_set_dn() 1374 if ((attrs->values[code].number = BN_dup(number))) in STORE_ATTR_INFO_set_number() 1392 OPENSSL_free(attrs->values[code].cstring); in STORE_ATTR_INFO_modify_cstr() [all …]
|
| /freebsd-9-stable/contrib/llvm/include/llvm/CodeGen/ |
| D | CommandFlags.h | 44 cl::values( 59 cl::values(clEnumValN(CodeModel::Default, "default", 79 cl::values( 142 cl::values( 155 cl::values(
|
| /freebsd-9-stable/sys/boot/ficl/ |
| D | loader.c | 66 int names, values; in ficlSetenv() local 73 values = stackPopINT(pVM->pStack); in ficlSetenv() 82 value = (char*) ficlMalloc(values+1); in ficlSetenv() 85 strncpy(value, valuep, values); in ficlSetenv() 86 value[values] = '\0'; in ficlSetenv() 103 int names, values, overwrite; in ficlSetenvq() local 111 values = stackPopINT(pVM->pStack); in ficlSetenvq() 120 value = (char*) ficlMalloc(values+1); in ficlSetenvq() 123 strncpy(value, valuep, values); in ficlSetenvq() 124 value[values] = '\0'; in ficlSetenvq()
|
| /freebsd-9-stable/contrib/llvm/patches/ |
| D | patch-r262261-llvm-r199028-sparc.diff | 9 were set. This means multiple float return values get packed in %f0, 104 // Analyze return values. 124 // Function return values are passed exactly like function arguments, except a 127 -// Function arguments AND return values. 128 +// Function arguments AND most return values. 138 + // happens to multiple f32 return values outside a struct. 141 + // Otherwise, return values are passed exactly like arguments.
|