Searched refs:actual (Results 26 - 50 of 103) sorted by relevance

12345

/freebsd-11-stable/contrib/gcc/
H A Dgthr-solaris.h58 mutex_t actual; member in struct:__anon1340
496 return __gthrw_(mutex_init) (&mutex->actual, USYNC_THREAD, 0);
508 __gthrw_(mutex_lock) (&mutex->actual);
526 if (__gthrw_(mutex_trylock) (&mutex->actual))
544 __gthrw_(mutex_unlock) (&mutex->actual);
H A Dgthr-posix95.h52 pthread_mutex_t actual; member in struct:__anon1338
605 return __gthrw_(pthread_mutex_init) (&mutex->actual, NULL);
617 __gthrw_(pthread_mutex_lock) (&mutex->actual);
635 if (__gthrw_(pthread_mutex_trylock) (&mutex->actual))
653 __gthrw_(pthread_mutex_unlock) (&mutex->actual);
/freebsd-11-stable/contrib/atf/atf-c++/
H A Dmacros.hpp108 #define ATF_REQUIRE_EQ(expected, actual) \
110 if ((expected) != (actual)) { \
113 << #expected << " != " << #actual \
114 << " (" << (expected) << " != " << (actual) << ")"; \
/freebsd-11-stable/contrib/apr-util/buckets/
H A Dapr_brigade.c226 apr_size_t actual = 0; local
243 if (str_len + actual > *len) {
244 str_len = *len - actual;
255 actual += str_len;
257 /* This could probably be actual == *len, but be safe from stray
259 if (actual >= *len) {
264 *len = actual;
273 apr_off_t actual; local
277 apr_brigade_length(bb, 1, &actual);
290 total = (apr_size_t)actual;
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dparse_entry.c71 unsigned actual; local
96 actual = NUM_EXT_NAMES(tp);
97 for (n = 0; n < actual; n++) {
167 actual = NUM_EXT_NAMES(tp);
168 TYPE_REALLOC(char *, actual, tp->ext_Names);
169 while (--actual > offset)
170 tp->ext_Names[actual] = tp->ext_Names[actual - 1];
H A Dwrite_entry.c191 char actual[PATH_MAX]; local
220 make_db_path(actual, destination, sizeof(actual));
223 || getcwd(actual, sizeof(actual)) == 0)
226 _nc_keep_tic_dir(strdup(actual));
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dupnp_xml.c187 * argumentName will be actual argument name
188 * (in arg value) will be actual argument value
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdbarch.sh47 read="class level macro returntype function formal actual attrib staticdefault predefault postdefault invalid_p fmt print print_p description"
267 # argument list includes the actual name of each list element.
271 actual ) : ;;
273 # The list of actual arguments. The arguments specified shall
794 ${class} ${macro}(${actual})
1002 if [ "x${actual}" = "x" ]
1005 elif [ "x${actual}" = "x-" ]
1009 d="#define ${macro}(${actual}) (gdbarch_${function} (current_gdbarch, ${actual}))"
1012 if [ "x${actual}"
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_checksum.h278 * Return an error of type #SVN_ERR_CHECKSUM_MISMATCH for @a actual and
292 const svn_checksum_t *actual,
/freebsd-11-stable/contrib/ntp/sntp/tests/
H A DpacketHandling.c16 int LfpEquality(const l_fp expected, const l_fp actual);
39 const l_fp actual
42 return !!(L_ISEQU(&expected, &actual));
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dlog.c418 const char *actual = NULL; local
430 if(actual == NULL) {
433 actual = fmt;
435 actual = msg;
437 (*fac->val[i].log_func)(buf, actual, fac->val[i].data);
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_ioc32.c348 int count, actual; local
368 actual = request->count;
369 if (count >= actual)
370 for (i = 0; i < actual; ++i) {
378 req32->count = actual;
404 int count, actual; local
425 actual = request->count;
426 if (count >= actual)
427 for (i = 0; i < actual; ++i) {
434 req32->count = actual;
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dverify.c155 svn_checksum_t *actual;
174 SVN_ERR(svn_checksum_final(&actual, context, scratch_pool));
177 if (!svn_checksum_match(index_info->checksum, actual))
182 SVN_ERR(svn_checksum_mismatch_err(index_info->checksum, actual,
490 apr_uint32_t actual,
493 if (actual != entry->fnv1_checksum)
563 * START + COUNT-1 in FS match the actual pack / rev file contents.
774 /* verify in-index checksums and types vs. actual rev / pack files */
154 svn_checksum_t *actual; local
487 expected_checksum(svn_fs_x__revision_file_t *file, svn_fs_x__p2l_entry_t *entry, apr_uint32_t actual, apr_pool_t *scratch_pool) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dverify.c181 svn_checksum_t *actual;
201 SVN_ERR(svn_checksum_final(&actual, context, scratch_pool));
204 if (!svn_checksum_match(expected, actual))
209 SVN_ERR(svn_checksum_mismatch_err(expected, actual, scratch_pool,
520 apr_uint32_t actual,
523 if (actual != entry->fnv1_checksum)
593 * START + COUNT-1 in FS match the actual pack / rev file contents.
844 /* verify in-index checksums and types vs. actual rev / pack files */
180 svn_checksum_t *actual; local
517 expected_checksum(apr_file_t *file, svn_fs_fs__p2l_entry_t *entry, apr_uint32_t actual, apr_pool_t *pool) argument
/freebsd-11-stable/lib/msun/tests/
H A Dnext_test.c232 _testl(const char *exp, int line, long double actual, long double expected, argument
238 if (!fpequal(actual, expected)) {
240 line, exp, actual, expected);
/freebsd-11-stable/contrib/dialog/
H A Dtextbox.c82 long actual = lseek_obj(obj, offset, SEEK_SET); local
84 if (actual != offset) {
85 dlg_exiterr("Cannot set file position to %ld (actual %ld)\n",
86 offset, actual);
93 long actual = lseek_obj(obj, offset, SEEK_END); local
95 if (actual > offset) {
96 obj->file_size = actual;
103 long actual = lseek_obj(obj, offset, SEEK_CUR); local
105 if (actual != offset) {
106 dlg_trace_msg("Lseek returned %ld, expected %ld\n", actual, offse
[all...]
/freebsd-11-stable/contrib/sendmail/src/
H A Dsavemail.c817 char actual[MAXLINE]; local
1254 /* Figure out actual recipient */
1255 actual[0] = '\0';
1267 (void) sm_snprintf(actual,
1268 sizeof(actual),
1276 (void) sm_snprintf(actual,
1277 sizeof(actual),
1291 /* try to fall back to the actual recipient */
1292 if (actual[0] != '\0')
1294 actual);
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationReplayServer.cpp34 /// Check if the given expected packet matches the actual packet.
35 static bool unexpected(llvm::StringRef expected, llvm::StringRef actual) { argument
37 // trailing checksum. The 'actual' string contains only the packet's content.
38 if (expected.contains(actual))
144 LLDB_LOG(log, "GDBRemoteCommunicationReplayServer actual packet: '{0}'",
/freebsd-11-stable/stand/ofw/libofw/
H A Dopenfirm.c546 cell_t actual; member in struct:__anon5076
566 printf("OF_read: returning instance=%d, addr=%p, len=%d, actual=%d\n",
567 args.instance, args.addr, args.len, args.actual);
570 return (args.actual);
584 cell_t actual; member in struct:__anon5077
596 return (args.actual);
/freebsd-11-stable/contrib/netbsd-tests/bin/ps/
H A Dt_ps.sh153 actual="$( eval "${TEST_PS} $args" | sed -e 1q )"
154 check_regexp "heading [$args]" "${actual}" "${regexp}"
/freebsd-11-stable/sys/dev/ofw/
H A Dofw_standard.c608 cell_t actual; member in struct:__anon7747
621 return (args.actual);
635 cell_t actual; member in struct:__anon7748
647 return (args.actual);
/freebsd-11-stable/sys/dev/nxge/xgehal/
H A Dxgehal-mgmt.c1545 u32 actual; local
1570 actual = ((val_1 << 8) | val_2);
1572 if (actual >= 32768)
1573 actual = actual- 65536;
1574 actual = actual/256;
1576 return actual;
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dmain.c1065 char *p, **actual = NULL; local
1106 actual = calloc(sizeof(char *), actual_count);
1107 if (actual == NULL) {
1116 actual[j] = p;
1127 if (actual[j] == NULL)
1129 if (strcmp(expected[i], actual[j]) == 0) {
1132 actual[j] = NULL;
1144 if (actual[j] != NULL)
1150 free(actual);
1161 if (actual[
[all...]
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtic.c1664 int actual = 0; local
1689 if (n > actual)
1690 actual = n;
1703 } else if (expected != actual) {
1705 actual, expected);
1706 for (n = 1; n < actual; n++) {
/freebsd-11-stable/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c159 int actual = 0; local
172 for (i = actual = 0; i < limit; i++) {
176 ci[actual].Char.UnicodeChar = CharOf(ch);
177 ci[actual].Attributes = MapAttr(TCB,
186 ci[actual].Char.UnicodeChar = CharOf(_nc_wacs[which]);
188 ci[actual].Char.UnicodeChar = ' ';
192 ++actual;
197 siz.X = (short) actual;

Completed in 187 milliseconds

12345