Searched refs:value (Results 51 - 75 of 3901) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/mdocml/
H A Dtest-getsubopt.c31 char *value = NULL; local
32 return ! (getsubopt(&options, tokens, &value) == 0
33 && value == buf+2 && options == buf+3);
/freebsd-11-stable/contrib/ncurses/include/
H A Dedit_cfg.sh33 # Edit the default value of the term.h file based on the autoconf-generated
51 value=1
53 value=0
55 echo '** edit: '$name $value
57 -e "s@#define ${name}.*\$@#define $name $value@" \
58 -e "s@#if $name\$@#if $value /* $name */@" \
59 -e "s@#if !$name\$@#if $value /* !$name */@" \
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dresource.h33 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value);
38 *\li If 'value' exceeds the maximum possible on the operating system,
54 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value);
59 *\li 'value' is set to the maximum limit.
61 *\li #ISC_RESOURCE_UNLIMITED is the maximum value of isc_resourcevalue_t.
63 *\li On many (all?) Unix systems, RLIM_INFINITY is a valid value that is
67 *\li The current ISC libdns configuration file parser assigns a value
85 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value);
/freebsd-11-stable/lib/libypclnt/
H A Dypclnt_get.c42 char *value; local
46 key, (int)strlen(key), &value, &len);
51 return (value);
/freebsd-11-stable/sys/contrib/ck/include/spinlock/
H A Ddec.h40 * operation to check if the lock value was decremented to 0 from 1. The
44 unsigned int value; member in struct:ck_spinlock_dec
54 lock->value = 1;
62 unsigned int value; local
64 value = ck_pr_fas_uint(&lock->value, 0);
66 return value == 1;
74 r = ck_pr_load_uint(&lock->value) != 1;
90 ck_pr_dec_uint_zero(&lock->value, &r);
94 /* Load value withou
[all...]
H A Dfas.h40 unsigned int value; member in struct:ck_spinlock_fas
50 lock->value = false;
58 bool value; local
60 value = ck_pr_fas_uint(&lock->value, true);
63 return !value;
71 r = ck_pr_load_uint(&lock->value);
80 while (ck_pr_fas_uint(&lock->value, true) == true) {
81 while (ck_pr_load_uint(&lock->value) == true)
94 while (ck_pr_fas_uint(&lock->value, tru
[all...]
H A Dcas.h42 unsigned int value; member in struct:ck_spinlock_cas
52 lock->value = false;
60 unsigned int value; local
62 value = ck_pr_fas_uint(&lock->value, true);
64 return !value;
70 bool r = ck_pr_load_uint(&lock->value);
80 while (ck_pr_cas_uint(&lock->value, false, true) == false) {
81 while (ck_pr_load_uint(&lock->value) == true)
94 while (ck_pr_cas_uint(&lock->value, fals
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Duuids-table.c73 DBT key, value;
83 svn_fs_base__clear_dbt(&value);
84 value.data = buffer;
85 value.size = sizeof(buffer) - 1;
90 BDB_ERR(uuids->put(uuids, 0, &key, &value, DB_APPEND));
107 DBT value;
113 svn_fs_base__clear_dbt(&value);
114 value.data = buffer;
115 value.size = sizeof(buffer) - 1;
116 value
72 DBT key, value; local
106 DBT value; local
136 DBT value; local
[all...]
/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_swlock.h38 uint32_t value; member in struct:ck_swlock
52 rw->value = 0;
62 ck_pr_and_32(&rw->value, CK_SWLOCK_READER_MASK);
71 r = ck_pr_load_32(&rw->value) & CK_SWLOCK_WRITER_BIT;
80 ck_pr_inc_32(&rw->value);
90 r = ck_pr_load_32(&rw->value);
100 r = ck_pr_cas_32(&rw->value, 0, CK_SWLOCK_WRITER_BIT);
112 ck_pr_or_32(&rw->value, CK_SWLOCK_WRITER_BIT);
113 while (ck_pr_load_32(&rw->value) & CK_SWLOCK_READER_MASK)
125 ck_pr_or_32(&rw->value, CK_SWLOCK_WRITER_BI
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dax-gdb.c27 #include "value.h"
63 struct axs_value * --- describes value left on top of stack */
65 static struct value *const_var_ref (struct symbol *var);
66 static struct value *const_expr (union exp_element **pc);
67 static struct value *maybe_const_expr (union exp_element **pc);
82 struct axs_value *value, struct symbol *var);
86 struct axs_value *value,
90 static void require_rvalue (struct agent_expr *ax, struct axs_value *value);
91 static void gen_usual_unary (struct agent_expr *ax, struct axs_value *value);
101 struct axs_value *value);
311 gen_traced_pop(struct agent_expr *ax, struct axs_value *value) argument
522 gen_var_ref(struct agent_expr *ax, struct axs_value *value, struct symbol *var) argument
648 gen_int_literal(struct agent_expr *ax, struct axs_value *value, LONGEST k, struct type *type) argument
664 require_rvalue(struct agent_expr *ax, struct axs_value *value) argument
709 gen_usual_unary(struct agent_expr *ax, struct axs_value *value) argument
866 gen_integral_promotions(struct agent_expr *ax, struct axs_value *value) argument
883 gen_cast(struct agent_expr *ax, struct axs_value *value, struct type *type) argument
956 gen_add(struct agent_expr *ax, struct axs_value *value, struct axs_value *value1, struct axs_value *value2, char *name) argument
1003 gen_sub(struct agent_expr *ax, struct axs_value *value, struct axs_value *value1, struct axs_value *value2) argument
1056 gen_binop(struct agent_expr *ax, struct axs_value *value, struct axs_value *value1, struct axs_value *value2, enum agent_op op, enum agent_op op_unsigned, int may_carry, char *name) argument
1075 gen_logical_not(struct agent_expr *ax, struct axs_value *value) argument
1088 gen_complement(struct agent_expr *ax, struct axs_value *value) argument
1105 gen_deref(struct agent_expr *ax, struct axs_value *value) argument
1126 gen_address_of(struct agent_expr *ax, struct axs_value *value) argument
1193 gen_bitfield_ref(struct agent_expr *ax, struct axs_value *value, struct type *type, int start, int end) argument
1354 gen_struct_ref(struct agent_expr *ax, struct axs_value *value, char *field, char *operator_name, char *operand_name) argument
1410 gen_repeat(union exp_element **pc, struct agent_expr *ax, struct axs_value *value) argument
1453 gen_sizeof(union exp_element **pc, struct agent_expr *ax, struct axs_value *value) argument
1478 gen_expr(union exp_element **pc, struct agent_expr *ax, struct axs_value *value) argument
1727 expr_to_agent(struct expression *expr, struct axs_value *value) argument
1784 struct axs_value value; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.h24 virtual bool Parse(const char *value) { return false; } argument
25 // Write the C string representation of the current value (truncated to fit)
50 bool Parse(const char *value) final;
54 inline bool ParseBool(const char *value, bool *b) { argument
55 if (internal_strcmp(value, "0") == 0 ||
56 internal_strcmp(value, "no") == 0 ||
57 internal_strcmp(value, "false") == 0) {
61 if (internal_strcmp(value, "1") == 0 ||
62 internal_strcmp(value, "yes") == 0 ||
63 internal_strcmp(value, "tru
71 Parse(const char *value) argument
83 Parse(const char *value) argument
105 Parse(const char *value) argument
116 Parse(const char *value) argument
131 Parse(const char *value) argument
146 Parse(const char *value) argument
[all...]
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dglyphuni.cpp29 char *value; member in struct:glyph_to_unicode
39 const char *value; member in struct:S
495 gtu->value = (char *)glyph_to_unicode_list[i].value;
503 return result ? result->value : 0;
H A Duniglyph.cpp29 char *value; member in struct:unicode_to_glyph
39 const char *value; member in struct:S
495 utg->value = (char *)unicode_to_glyph_list[i].value;
503 return result ? result->value : 0;
H A Duniuni.cpp32 char *value; member in struct:unicode_decompose
44 const char *value; member in struct:S
1985 dec->value = (char *)unicode_decompose_list[i].value;
1993 return result ? result->value : 0;
/freebsd-11-stable/contrib/groff/src/utils/hpftodit/
H A Dhpuni.cpp28 char *value; member in struct:hp_msl_to_unicode
38 const char *value; member in struct:S
689 ptu->value = (char *)hp_msl_to_unicode_list[i].value;
697 return result ? result->value : 0;
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dstore-int.c37 _krb5_put_int(void *buffer, unsigned long value, size_t size) argument
42 p[i] = value & 0xff;
43 value >>= 8;
49 _krb5_get_int(void *buffer, unsigned long *value, size_t size) argument
56 *value = v;
/freebsd-11-stable/sys/mips/malta/
H A Dyamon.c39 char *value; local
42 value = NULL;
45 value = p->value;
50 return (value);
/freebsd-11-stable/contrib/ofed/libmlx4/
H A Dmmio.h77 #define mmio_writeb(addr, value) \
78 (*((volatile uint8_t *)addr) = value)
79 #define mmio_writew(addr, value) \
80 (*((volatile uint16_t *)addr) = value)
81 #define mmio_writel(addr, value) \
82 (*((volatile uint32_t *)addr) = value)
83 #define mmio_writeq(addr, value) \
84 (*((volatile uint64_t *)addr) = value)
85 #define mmio_write(addr, value, length) \
86 memcpy(addr, value, lengt
[all...]
/freebsd-11-stable/sys/dev/isci/scil/
H A Dscic_sds_controller_registers.h81 #define scic_sds_controller_smu_register_write(controller, reg, value) \
85 (value) \
93 #define scu_afe_register_write(controller, reg, value) \
97 (value) \
117 #define scu_sgpio_peg0_register_write(controller, reg, value) \
121 (value) \
129 #define scu_controller_viit_register_write(controller, index, reg, value) \
133 value \
146 #define scu_controller_scratch_ram_register_write(controller, index, value) \
150 value \
[all...]
/freebsd-11-stable/contrib/bsnmp/snmp_mibII/
H A DmibII_begemot.c40 op_begemot_mibII(struct snmp_context *ctx, struct snmp_value *value, argument
52 switch (value->var.subs[sub - 1]) {
60 mibif_force_hc_update_interval = value->v.uint32;
65 mibII_poll_ticks = value->v.uint32;
71 switch (value->var.subs[sub - 1]) {
84 switch (value->var.subs[sub - 1]) {
101 switch (value->var.subs[sub - 1]) {
104 value->v.counter64 = mibif_maxspeed;
108 value->v.uint32 = mibif_hc_update_interval;
112 value
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dresource.c38 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value) { argument
46 if (value == ISC_RESOURCE_UNLIMITED)
49 rlim_value = min(value, WIN32_MAX_OPEN_FILES);
60 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
65 *value = WIN32_MAX_OPEN_FILES;
70 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
71 return (isc_resource_getlimit(resource, value));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueRegex.h19 OptionValueRegex(const char *value = nullptr)
20 : OptionValue(), m_regex(llvm::StringRef::withNullAsEmpty(value)) {}
32 SetValueFromString(llvm::StringRef value,
51 void SetCurrentValue(const char *value) { argument
52 if (value && value[0])
53 m_regex = RegularExpression(llvm::StringRef(value));
H A DOptionValueSInt64.h23 OptionValueSInt64(int64_t value) argument
24 : OptionValue(), m_current_value(value), m_default_value(value),
47 SetValueFromString(llvm::StringRef value,
63 const int64_t &operator=(int64_t value) { argument
64 m_current_value = value;
72 bool SetCurrentValue(int64_t value) { argument
73 if (value >= m_min_value && value <= m_max_value) {
74 m_current_value = value;
80 SetDefaultValue(int64_t value) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Da_mbstr.c66 int (*rfunc) (unsigned long value, void *in),
68 static int in_utf8(unsigned long value, void *arg);
69 static int out_utf8(unsigned long value, void *arg);
70 static int type_str(unsigned long value, void *arg);
71 static int cpy_asc(unsigned long value, void *arg);
72 static int cpy_bmp(unsigned long value, void *arg);
73 static int cpy_univ(unsigned long value, void *arg);
74 static int cpy_utf8(unsigned long value, void *arg);
75 static int is_printable(unsigned long value);
254 * This function traverses a string and passes the value o
258 traverse_string(const unsigned char *p, int len, int inform, int (*rfunc) (unsigned long value, void *in), void *arg) argument
262 unsigned long value; local
298 in_utf8(unsigned long value, void *arg) argument
308 out_utf8(unsigned long value, void *arg) argument
321 type_str(unsigned long value, void *arg) argument
341 cpy_asc(unsigned long value, void *arg) argument
353 cpy_bmp(unsigned long value, void *arg) argument
366 cpy_univ(unsigned long value, void *arg) argument
381 cpy_utf8(unsigned long value, void *arg) argument
393 is_printable(unsigned long value) argument
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_tgoto.c78 int *value = param; local
108 *value %= 100;
112 *value %= 1000;
115 *value += UChar(*++string);
123 if (*value == 0) {
125 *value += 1;
128 *value = 0200; /* tputs will treat this as \0 */
131 result[used++] = (char) *value++;
146 if (*value > string[1])
147 *value
[all...]

Completed in 126 milliseconds

1234567891011>>