Searched refs:actual (Results 76 - 100 of 165) sorted by relevance

1234567

/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-assign-shell.mk31 .MAKEFLAGS: -dv # to see the actual command
H A Dvar-recursive.mk9 # the actual tests are run in sub-makes.
H A Dcond-func-defined.mk47 # evaluation time. There is no actual variable involved, even if the code in
H A Dvarmod-loop-delete.mk7 # an actual variable in the current evaluation scope (Command/Global/target),
H A Dvar-scope-cmdline.mk8 # For performance reasons, the actual implementation is more complex than the
38 # overrides global". Due to an implementation mistake, the actual behavior
H A Ddep-var.mk51 # "1-2-NDIRECT_2-2-1", which differs from the actual name of the target.
55 # The number of actual expansions is way more than one might expect,
H A Dvarmod-match-escape.mk73 # The control flow of the pattern parser depends on the actual string that
75 # in behavior, or a proof that the behavior does not depend on the actual
H A Ddirective-export.mk51 # the actual export action is deferred until a subprocess is started, assuming
H A Dopt-query.mk11 # main Delegates to the actual tests.
H A Dvar-op-default.mk32 # there is never an actual variable named 'i' involved.
/freebsd-current/contrib/ncurses/ncurses/win32con/
H A Dwin32_driver.c173 int actual = 0; local
184 for (i = actual = 0; i < limit; i++) {
188 ci[actual].Char.UnicodeChar = CharOf(ch);
189 ci[actual].Attributes = MapAttr(WINCONSOLE.SBI.wAttributes,
197 ci[actual].Char.UnicodeChar = CharOf(_nc_wacs[which]);
199 ci[actual].Char.UnicodeChar = ' ';
203 ++actual;
208 siz.X = (SHORT) actual;
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dparse_entry.c72 unsigned actual; local
97 actual = NUM_EXT_NAMES(tp);
98 for (n = 0; n < actual; n++) {
173 actual = NUM_EXT_NAMES(tp);
174 TYPE_REALLOC(char *, actual, tp->ext_Names);
175 while (--actual > offset)
176 tp->ext_Names[actual] = tp->ext_Names[actual - 1];
H A Dlib_setup.c368 char *actual = TIPARM_2(cursor_address, row, col); local
372 actual) == OK);
380 if (actual != NULL) {
381 size_t want = strlen(actual);
382 int have = (int) write(termp->Filedes, actual, want);
/freebsd-current/stand/libofw/
H A Dopenfirm.c516 cell_t actual; member in struct:__anon29
533 printf("OF_read: returning instance=%d, addr=%p, len=%d, actual=%d\n",
534 args.instance, OUT(args.addr), OUT(args.len), OUT(args.actual));
537 return (OUT(args.actual));
551 cell_t actual; member in struct:__anon30
560 return (OUT(args.actual));
/freebsd-current/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-current/sys/dev/ofw/
H A Dofw_standard.c606 cell_t actual; member in struct:__anon445
619 return (args.actual);
633 cell_t actual; member in struct:__anon446
645 return (args.actual);
/freebsd-current/sys/dev/usb/input/
H A Duhid_snes.c448 int actual, max; local
450 usbd_xfer_status(transfer, &actual, NULL, NULL, NULL);
456 if (actual == 0) {
469 usb_fifo_put_data(fifo, pc, 0, actual, 1);
/freebsd-current/contrib/kyua/engine/
H A Datf_result_test.cpp70 const engine::atf_result actual = engine::atf_result::parse(input); local
71 ATF_REQUIRE(exp_type == actual.type());
72 ATF_REQUIRE_EQ(exp_argument, actual.argument());
74 ATF_REQUIRE(actual.reason());
75 ATF_REQUIRE_EQ(exp_reason, actual.reason().get());
77 ATF_REQUIRE(!actual.reason());
/freebsd-current/contrib/bmake/
H A Dcond.c322 /* See if the given node exists and is an actual target. */
331 * See if the given node exists and is an actual target with commands
827 Token actual; local
829 actual = CondParser_Token(par, false);
830 if (actual == t)
834 assert(actual != TOK_NONE);
835 par->curr = actual;
/freebsd-current/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-current/contrib/googletest/googletest/test/
H A Dgoogletest-output-test_.cc104 std::string actual = "actual \"string\""; local
105 EXPECT_EQ(kGoldenString, actual);
108 EXPECT_EQ(golden, actual);
/freebsd-current/contrib/kyua/examples/
H A Dkyua.conf59 -- Set actual configuration properties for the test suite named 'kyua'.
/freebsd-current/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_core.h104 #define VCHIQ_MSG_BULK_RX_DONE 8 /* + (srcport, dstport), actual */
105 #define VCHIQ_MSG_BULK_TX_DONE 9 /* + (srcport, dstport), actual */
252 int actual; member in struct:vchiq_bulk_struct
516 int actual; member in struct:bulk_waiter
/freebsd-current/sys/cddl/dev/dtrace/powerpc/
H A Ddtrace_isa.c598 size_t actual; local
603 size, &actual);
/freebsd-current/contrib/bmake/mk/
H A Dsys.clean-env.mk59 # This is the actual list that we will save

Completed in 300 milliseconds

1234567