Searched refs:actual (Results 101 - 125 of 165) sorted by relevance

1234567

/freebsd-current/contrib/bmake/mk/
H A Dsubdir.mk51 # the actual implementation
/freebsd-current/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc1567 const int actual[] = {3, 1, 2}; local
1572 EXPECT_THAT(actual, IsSupersetOf(expected));
1575 EXPECT_THAT(actual, Not(IsSupersetOf(expected)));
1657 const int actual[] = {1, 1}; local
1658 EXPECT_THAT(actual, Not(IsSubsetOf(not_enough)));
1659 EXPECT_THAT(actual, IsSubsetOf(enough));
1693 const int actual[] = {3, 1, 2}; local
1698 EXPECT_THAT(actual, Not(IsSubsetOf(expected)));
1702 EXPECT_THAT(actual, IsSubsetOf(expected));
1814 const int actual[] local
1869 const int actual[] = {3, 1, 2}; local
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarname-makeflags.mk4 # command line arguments are read before the actual command line arguments.
69 # command line, making the actual argument 'DOLLARS=$${varname}'.
H A Dvarmod-select-words.mk18 ESCAPEDSPACE= \ # escaped space before the '#', the actual value is '\ '
H A Dopt-debug-lint.mk29 # the scope of an actual target.
H A Ddirective-for-escape.mk112 # To make the expression '$\' visible, define it to an actual word:
198 # parsed the body of the loop, substituting each '${$}' with an actual
H A Dvarmod-assign.mk137 # relevant for variable names containing a '$' sign in their actual name, not
/freebsd-current/sys/powerpc/ofw/
H A Dofw_real.c987 int32_t actual; member in struct:__anon5949
1008 return ((ssize_t)(int32_t)OUT(args.actual));
1023 int32_t actual; member in struct:__anon5950
1042 return ((ssize_t)(int32_t)OUT(args.actual));
/freebsd-current/contrib/sendmail/contrib/
H A Dbuildvirtuser46 usernames on the left and the actual address for that username on the
/freebsd-current/lib/libnvmf/
H A Dlibnvmf.h323 * number of actual I/O queues available is returned in *actual on
327 u_int *actual);
/freebsd-current/libexec/tftpd/tests/
H A Dfunctional.c56 const char *actual, size_t len);
302 const char *actual, size_t len)
309 ATF_REQUIRE_EQ_MSG(expected[i], actual[i],
311 expected[i], i, actual[i]);
301 require_bufeq(const char *expected, size_t expected_len, const char *actual, size_t len) argument
/freebsd-current/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_core.c1190 VCHIQ_ELEMENT_T element = { &bulk->actual, 4 };
1212 if (bulk->actual != VCHIQ_BULK_ACTUAL_ABORTED) {
1218 bulk->actual);
1224 bulk->actual);
1235 waiter->actual = bulk->actual;
1243 ((bulk->actual ==
1247 ((bulk->actual ==
1369 if (bulk->actual != VCHIQ_BULK_ACTUAL_ABORTED)
1439 bulk->actual
[all...]
H A Dvchiq_arm.c148 size_t actual; member in struct:dump_context_struct
1375 if (context->actual < context->space) {
1385 copy_bytes = min(len, (int)(context->space - context->actual));
1388 memcpy(context->buf + context->actual, str, copy_bytes);
1389 context->actual += copy_bytes;
1397 memcpy(context->buf + context->actual - 1, &cr, 1);
1584 context.actual = 0;
1590 *ppos += context.actual;
1592 return context.actual;
/freebsd-current/sys/dev/dpaa2/
H A Ddpaa2_rc.c468 * Attempt to allocate *count MSI messages. The actual number allocated is
479 int error, actual, i, run, irqs[32]; local
494 actual = min(*count, dinfo->msi.msi_msgnum);
497 actual = min(actual, 32);
500 if (!powerof2(actual))
505 error = PCIB_ALLOC_MSI(device_get_parent(rcdev), child, actual,
506 actual, irqs);
509 if (actual == 1)
513 actual >>
[all...]
/freebsd-current/sys/dev/pci/
H A Dpci.c1759 * enabled then walk the virtual table to restore the actual MSI-X
1792 * Attempt to allocate *count MSI-X messages. The actual number allocated is
1802 int actual, error, i, irq, max; local
1857 actual = i;
1861 if (actual == 1)
1875 for (i = 1; i < actual; i++) {
1909 cfg->msix.msix_vectors = malloc(sizeof(struct msix_vector) * actual,
1911 cfg->msix.msix_table = malloc(sizeof(struct msix_table_entry) * actual,
1913 for (i = 0; i < actual; i++) {
1925 cfg->msix.msix_alloc = actual;
2584 int actual, error, i, irqs[32]; local
[all...]
/freebsd-current/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c264 int actual = 0; local
275 for (i = actual = 0; i < limit; i++) {
279 ci[actual].Char.UnicodeChar = CharOf(ch);
280 ci[actual].Attributes = MapAttr(CON.SBI.wAttributes,
288 ci[actual].Char.UnicodeChar = CharOf(_nc_wacs[which]);
290 ci[actual].Char.UnicodeChar = ' ';
294 ++actual;
299 siz.X = (SHORT) actual;
/freebsd-current/libexec/rtld-elf/powerpc/
H A Drtld_start.S64 addis %r3,%r3,_DYNAMIC-1b@ha # get _DYNAMIC actual address
/freebsd-current/sys/contrib/openzfs/module/lua/
H A Dldo.c340 static StkId adjust_varargs (lua_State *L, Proto *p, int actual) { argument
344 lua_assert(actual >= nfixargs);
347 fixed = L->top - actual; /* first fixed argument */
402 n = (*f)(L); /* do the actual call */
/freebsd-current/contrib/libarchive/test_utils/
H A Dtest_main.c1221 char *p, **actual = NULL; local
1263 actual = calloc(actual_count, sizeof(char *));
1264 if (actual == NULL) {
1274 actual[j] = p;
1285 if (actual[j] == NULL)
1287 if (strcmp(expected[i], actual[j]) == 0) {
1290 actual[j] = NULL;
1302 if (actual[j] != NULL)
1308 free(actual);
1319 if (actual[
[all...]
/freebsd-current/sys/netinet/
H A Dsctp_usrreq.c999 size_t actual; local
1010 actual = 0;
1012 return (actual);
1107 if (actual + sizeof(struct sockaddr_in6) > limit) {
1108 return (actual);
1113 actual += sizeof(struct sockaddr_in6);
1116 if (actual + sizeof(struct sockaddr_in) > limit) {
1117 return (actual);
1122 actual += sizeof(struct sockaddr_in);
1170 if (actual
2273 size_t limit, actual; local
[all...]
/freebsd-current/sys/dev/usb/misc/
H A Dcp2112.c395 bool actual; local
406 err = cp2112_gpio_read_pin(dev, pin_num, &actual);
409 if (actual != on)
/freebsd-current/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_cq.c417 item->actual = be32_to_cpu(cqe->actual_trans_sig) >> 16;
422 item->actual = be32_to_cpu(cqe->actual_reftag);
427 item->actual = be32_to_cpu(cqe->actual_trans_sig) & 0xffff;
632 mlx5_ib_warn(dev, "CQN: 0x%x Got SIGERR on key: 0x%x err_type %x err_offset %llx expected %x actual %x\n",
637 mr->sig->err_item.actual);
/freebsd-current/sys/dev/virtio/balloon/
H A Dvirtio_balloon.c497 offsetof(struct virtio_balloon_config, actual), npages);
/freebsd-current/lib/libc/amd64/string/
H A Dmemccpy.S187 sub %ecx, %edx # find actual string/buffer len
/freebsd-current/tests/sys/kern/
H A Dptrace_test.c88 #define CHILD_REQUIRE_EQ(actual, expected) do { \
90 __typeof__(actual) _a = actual; \
92 child_fail_require(__FILE__, __LINE__, #actual \
114 #define REQUIRE_EQ(actual, expected) do { \
116 __typeof__(actual) _a = actual; \
117 ATF_REQUIRE_MSG(_e == _a, #actual " (%jd) == " \

Completed in 243 milliseconds

1234567