Searched refs:values (Results 1 - 25 of 297) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/less/
H A Dos.c36 #include <values.h>
211 * Certain values of errno indicate we should just retry the read.
/freebsd-11-stable/contrib/subversion/
H A Dwin-tests.py385 for lib in gen_obj._libraries.values():
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-metadata.sql25 * the KIND column in these tables has one of the following values
32 * the PRESENCE column in these tables has one of the following values
91 /* Enumerated values specifying type of compression. The only value
154 /* ### need to determine values. "unknown" (no info), "admin" (they
196 /* Information about the lock. Note: these values are just caches from
248 op_depth values are not normally visible to the user but may become
326 The 'BASE' and 'WORKING' trees use the same literal values for
603 /* Tell a lie: We ignore that 99.9% of all moved_to values are NULL */
H A Dwc_db_util.c86 svn_sqlite__value_t *values[],
92 if (argc == 1 && svn_sqlite__value_type(values[0]) == SVN_SQLITE__TEXT)
93 path = svn_sqlite__value_text(values[0]);
83 relpath_depth_sqlite(svn_sqlite__context_t *sctx, int argc, svn_sqlite__value_t *values[], void *baton) argument
H A Dwc_db.h131 /* Enumerated values describing the state of a node. */
173 it should be treated similar to the other missing status values
503 Unless KEEP_RECORDED_INFO is set to TRUE, recorded size and timestamp values
623 is specified by STATUS. Only these values are allowed for STATUS:
729 The OUT parameters, and their "not available" values are:
749 If the STATUS is normal, the REPOS_* values will be non-NULL.
761 *PROPS maps "const char *" names to "const svn_string_t *" values. If
820 *PROPS maps "const char *" names to "const svn_string_t *" values.
825 Allocate *PROPS and its keys and values in RESULT_POOL.
839 elements are const char * values
[all...]
H A Dwc_db.c78 * welcome. The asserts will ensure we have no doubt about the values
529 /* Initialize the baton with appropriate "blank" values. This allows the
894 /* Initialize the baton with appropriate "blank" values. This allows the
1358 init_db(/* output values */
1361 /* input values */
3105 typical values. These are passed to the work callback, which typically
3147 /* Initialize the baton with appropriate "blank" values. This allows the
4241 /* Set *COPYFROM_ID, *COPYFROM_RELPATH, *COPYFROM_REV to the values
4601 /* These presence values should not create a new op depth */
5246 generally these values shoul
10562 svn_wc__db_prop_retrieve_recursive(apr_hash_t **values, svn_wc__db_t *db, const char *local_abspath, const char *propname, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
H A Dprops.c352 values.
354 Note that this function (currently) interprets the property values as
355 strings, but they could actually be binary values. We'll keep the
455 /* We have an unchanged property, so the original values must
536 /* Convert deleted or not-yet-added values to empty-string values, for the
575 /* If any of the property values involved in the diff is binary data,
632 /* If we could not print a conflict diff just print full values . */
661 and maybe a diff of property values containing conflict markers.
688 the values
1518 svn_wc__prop_retrieve_recursive(apr_hash_t **values, svn_wc_context_t *wc_ctx, const char *local_abspath, const char *propname, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dindex.c58 /* We store P2L proto-index entries as 6 values, 64 bits each on disk.
122 * invalid item index values. */
186 /* underlying data file containing the packed values */
217 /* buffer for prefetched values */
521 * we have and unsigned values have well-defined conversions in C.
565 * Assert that we never read partial values. */
706 const apr_uint64_t *values = (const apr_uint64_t *)entries->elts; local
712 apr_int64_t diff = values[i] - last_value;
713 last_value = values[i];
1184 /* resolve all pointer values o
[all...]
H A Dtemp_serializer.c43 * Numbers will be stored in 7 bits / byte and using byte values above
540 /* reference to the values */
541 const svn_string_t **values; member in struct:properties_data_t
602 properties.values = apr_palloc(pool, sizeof(const svn_string_t *) * properties.count);
608 properties.values[i] = apr_hash_this_val(hi);
619 serialize_svn_string_array(context, &properties.values, properties.count);
642 svn_temp_deserializer__resolve(properties, (void**)&properties->values);
651 deserialize_svn_string(properties->values,
652 (svn_string_t **)&properties->values[i]);
656 properties->values[
[all...]
/freebsd-11-stable/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh96 # 8. Repeat steps 4-7, except setting options to their default values at (6).
1610 sort > ${F}-values
1613 # Any line in $2-values which doesn't appear in $1-values and is a
1615 comm -13 $1-values $2-values |
1619 # For each path, pull out one (and only one!) entry from $1-values.
1625 look "${X}|" $1-values |
1630 rm $1-values $2-values
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp51 cl::values(clEnumValN(octal, "o", "octal"),
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp41 cl::values(clEnumVal(sysv, "System V format"),
48 cl::values(clEnumValN(sysv, "A", "System V format"),
80 cl::values(clEnumValN(octal, "8", "Print size in octal"),
87 cl::values(clEnumValN(octal, "o", "Print size in octal"),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp94 STATISTIC(NumReplaced , "Number of exit values replaced");
111 cl::values(clEnumValN(NeverRepl, "never", "never replace exit value"),
115 "only replace exit values when loop def likely dead"),
393 // The start/stride/exit values must all fit in signed i32.
577 /// that are recurrent in the loop, and substitute the exit values from the loop
578 /// into any instructions outside of the loop that use the final values of the
594 // Find all values that are computed inside the loop, but used outside of it.
595 // Because of LCSSA, these values will only occur in LCSSA PHI Nodes. Scan
598 // If there are no PHI nodes in this exit block, then no values defined
621 // Iterate over all of the values i
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp719 // If we can't store the values in the current type (if it's something
804 std::vector<StringRef> values, enums, uniques; member in class:__anon55::EnumArgument
809 values(Arg.getValueAsListOfStrings("Values")),
894 OS << " .Case(\"" << values[I] << "\", "; local
903 // Mapping from enumeration values back to enumeration strings isn't
904 // trivial because some enumeration values have multiple named
914 << ": return \"" << values[I] << "\";\n"; local
924 std::vector<StringRef> values, enums, uniques; member in class:__anon55::VariadicEnumArgument
939 values(Arg.getValueAsListOfStrings("Values")),
1006 OS << " .Case(\"" << values[ local
1022 << ": return \\"" << values[I] << "\\";\\n"; local
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_request.c1365 /* Any more checks on the values? Unchecked at this
2681 ic->values[i] = htonl(bug.values[i]);
H A Dntp_refclock.c636 * jitter. To see the modified values, check the NTP clock variable
1163 * refclock_control - set and/or return clock values
1166 * values from the interface structure that can be displayed using
1284 * values from the interface structure that can be displayed using
1316 * Copy structure values
1320 bug->values[0] = pp->year;
1321 bug->values[1] = pp->day;
1322 bug->values[2] = pp->hour;
1323 bug->values[3] = pp->minute;
1324 bug->values[
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dsqlite.c1524 sqlite3_value *values[])
1529 void *void_values = values;
1522 wrapped_func(sqlite3_context *context, int argc, sqlite3_value *values[]) argument
H A Dcache-membuffer.c193 /* To save space in our group structure, we only use 32 bit size values
255 const char **values; member in struct:prefix_pool_t
301 result->values = capacity
346 const apr_size_t idx = value - prefix_pool->values;
370 value = &prefix_pool->values[prefix_pool->values_used];
397 * a mismatch found in any of them when being compared with the values
409 * (content), key and type as hash values and is the baseline against which
657 * All offset values are global / absolute to that whole buffer.
701 and that all segments must / will report the same values here. */
773 * Updates are not synchronized and values ma
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dtemp_serializer.c43 * Numbers will be stored in 7 bits / byte and using byte values above
510 /* reference to the values */
511 const svn_string_t **values; member in struct:properties_data_t
572 properties.values = apr_palloc(pool, sizeof(const svn_string_t *) * properties.count);
578 properties.values[i] = apr_hash_this_val(hi);
589 serialize_svn_string_array(context, &properties.values, properties.count);
612 svn_temp_deserializer__resolve(properties, (void**)&properties->values);
621 deserialize_svn_string(properties->values,
622 (svn_string_t **)&properties->values[i]);
626 properties->values[
[all...]
H A Dindex.c59 /* We store P2L proto-index entries as 6 values, 64 bits each on disk.
117 * invalid item index values. */
186 /* underlying data file containing the packed values */
217 /* buffer for prefetched values */
468 * we have and unsigned values have well-defined conversions in C.
512 * Assert that we never read partial values. */
1177 /* resolve all pointer values of in-cache data */
1195 expand_rle(apr_array_header_t *values, argument
1199 apr_array_clear(values);
1208 APR_ARRAY_PUSH(values, apr_uint64_
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_wc_private.h257 /* Gather all svn:externals property values from the actual properties on
259 to const char * values.
443 * added and deleted nodes). All other output values will be set to the current
444 * values or those they would have after a commit.
460 * wc_ctx. Allocate the return values in @a result_pool; use @a scratch_pool
503 * @a repos_uuid to the original (if a copy) or their current values.
538 * svn_wc__db_status_server_excluded. Otherwise set these values to FALSE.
599 * svn_node_unknown, @a revision SVN_INVALID_REVNUM and all other values NULL.
794 * svn_string_t *</tt> values for all the regular properties of the node
854 * property values i
[all...]
H A Dsvn_sqlite.h65 svn_sqlite__value_t *values[],
120 TIMEOUT defines the SQLite busy timeout, values <= 0 cause a Subversion
140 a specific set of argument values and FALSE if not (or when in doubt). When
169 /* Bind values to SQL parameters in STMT, according to FMT. FMT may contain:
/freebsd-11-stable/contrib/apr-util/redis/
H A Dapr_redis.c415 /* Return values not checked, since we just want to make it go away. */
1380 apr_hash_t *values)
/freebsd-11-stable/contrib/apr-util/memcache/
H A Dapr_memcache.c389 /* Return values not checked, since we just want to make it go away. */
1139 apr_hash_t **values)
1145 if (!*values) {
1146 *values = apr_hash_make(data_pool);
1155 apr_hash_set(*values, value->key, klen, value);
1165 apr_hash_t *values,
1185 value = apr_hash_get(values, server_query->query_vec[j].iov_base,
1199 apr_hash_t *values)
1214 apr_int32_t veclen = 2 + 2 * apr_hash_count(values) - 1; /* get <key>[<space><key>...]\r\n */
1229 value_hash_index = apr_hash_first(temp_pool, values);
1137 apr_memcache_add_multget_key(apr_pool_t *data_pool, const char* key, apr_hash_t **values) argument
1158 mget_conn_result(int serverup, int connup, apr_status_t rv, apr_memcache_t *mc, apr_memcache_server_t *ms, apr_memcache_conn_t *conn, struct cache_server_query_t *server_query, apr_hash_t *values, apr_hash_t *server_queries) argument
[all...]
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_redis.h359 * Gets multiple values from the server, allocating the values out of p
363 * @param data_pool Pool used to allocate data for the returned values.
364 * @param values hash of apr_redis_value_t keyed by strings, contains the
371 apr_hash_t *values);

Completed in 293 milliseconds

1234567891011>>