| /freebsd/sys/dev/qat/qat_api/include/ |
| H A D | cpa_types.h | 137 #define CPA_BITMAP_BIT_TEST(bitmask, bit) \ argument 138 ((bitmask[(bit)/32]) & (0x1 << ((bit)%32))) 145 #define CPA_BITMAP_BIT_SET(bitmask, bit) \ argument 146 (bitmask[(bit)/32] |= (0x1 << ((bit)%32))) 153 #define CPA_BITMAP_BIT_CLEAR(bitmask, bit) \ argument 154 (bitmask[(bit)/32] &= ~(0x1 << ((bit)%32)))
|
| /freebsd/crypto/openssh/ |
| H A D | xmss_hash.c | 96 unsigned char bitmask[2*n]; in hash_h() local 106 prf(bitmask, byte_addr, pub_seed, n); in hash_h() 109 prf(bitmask+n, byte_addr, pub_seed, n); in hash_h() 111 buf[i] = in[i] ^ bitmask[i]; in hash_h() 120 unsigned char bitmask[n]; in hash_f() local 130 prf(bitmask, byte_addr, pub_seed, n); in hash_f() 133 buf[i] = in[i] ^ bitmask[i]; in hash_f()
|
| /freebsd/sys/contrib/openzfs/module/lua/ |
| H A D | lgc.h | 80 #define bitmask(b) (1<<(b)) macro 81 #define bit2mask(b1,b2) (bitmask(b1) | bitmask(b2)) 82 #define l_setbit(x,b) setbits(x, bitmask(b)) 83 #define resetbit(x,b) resetbits(x, bitmask(b)) 84 #define testbit(x,b) testbits(x, bitmask(b)) 103 (!testbits((x)->gch.marked, WHITEBITS | bitmask(BLACKBIT)))
|
| H A D | lgc.c | 725 toset = bitmask(OLDBIT); /* set the old bit of all surviving objects */ in sweeplist() 726 tostop = bitmask(OLDBIT); /* do not sweep old generation */ in sweeplist() 924 (bitmask(GCSsweepstring) | bitmask(GCSsweepudata) | bitmask(GCSsweep)) 956 luaC_runtilstate(L, bitmask(GCSpropagate)); in luaC_changemode() 1125 luaC_runtilstate(L, bitmask(GCSpause)); /* run complete (minor) cycle */ in generationalcollection() 1204 luaC_runtilstate(L, bitmask(GCSpause)); in luaC_fullgc() 1205 luaC_runtilstate(L, ~bitmask(GCSpause)); /* start new collection */ in luaC_fullgc() 1206 luaC_runtilstate(L, bitmask(GCSpause)); /* run entire collection */ in luaC_fullgc() 1209 luaC_runtilstate(L, bitmask(GCSpropagate)); in luaC_fullgc()
|
| /freebsd/contrib/lua/src/ |
| H A D | lgc.h | 63 #define bitmask(b) (1<<(b)) macro 64 #define bit2mask(b1,b2) (bitmask(b1) | bitmask(b2)) 65 #define l_setbit(x,b) setbits(x, bitmask(b)) 66 #define resetbit(x,b) resetbits(x, bitmask(b)) 67 #define testbit(x,b) testbits(x, bitmask(b)) 90 (!testbits((x)->marked, WHITEBITS | bitmask(BLACKBIT)))
|
| H A D | lgc.c | 64 #define maskcolors (bitmask(BLACKBIT) | WHITEBITS) 80 (x->marked = cast_byte((x->marked & ~WHITEBITS) | bitmask(BLACKBIT))) 1331 luaC_runtilstate(L, bitmask(GCSpause)); /* prepare to start a new cycle */ in entergen() 1332 luaC_runtilstate(L, bitmask(GCSpropagate)); /* start new cycle */ in entergen() 1407 luaC_runtilstate(L, bitmask(GCSpropagate)); /* start new cycle */ in stepgenfull() 1416 luaC_runtilstate(L, bitmask(GCSpause)); /* finish collection */ in stepgenfull() 1714 luaC_runtilstate(L, bitmask(GCSpause)); in fullinc() 1715 luaC_runtilstate(L, bitmask(GCSpropagate)); /* start new cycle */ in fullinc() 1717 luaC_runtilstate(L, bitmask(GCScallfin)); /* run up to finalizers */ in fullinc() 1720 luaC_runtilstate(L, bitmask(GCSpause)); /* finish collection */ in fullinc()
|
| /freebsd/usr.sbin/ppp/ |
| H A D | pred.c | 69 int i, bitmask; in compress() local 76 for (bitmask = 1, i = 0; i < 8 && len; i++, bitmask <<= 1) { in compress() 78 flags |= bitmask; /* Guess was right - don't output */ in compress() 103 int i, bitmask; in decompress() local 110 for (i = 0, bitmask = 1; i < 8; i++, bitmask <<= 1) { in decompress() 111 if (flags & bitmask) { in decompress()
|
| /freebsd/sys/dev/mlx5/mlx5_core/ |
| H A D | mlx5_fs_counters.c | 527 unsigned long *bitmask; member 540 return bitmap_weight(bulk->bitmask, bulk->bulk_len); in mlx5_fc_bulk_get_free_fcs_amount() 559 bulk->bitmask = kvcalloc(BITS_TO_LONGS(bulk_len), sizeof(unsigned long), in mlx5_fc_bulk_create() 561 if (!bulk->bitmask) in mlx5_fc_bulk_create() 572 set_bit(i, bulk->bitmask); in mlx5_fc_bulk_create() 578 kvfree(bulk->bitmask); in mlx5_fc_bulk_create() 594 kvfree(bulk->bitmask); in mlx5_fc_bulk_destroy() 602 int free_fc_index = find_first_bit(bulk->bitmask, bulk->bulk_len); in mlx5_fc_bulk_acquire_fc() 607 clear_bit(free_fc_index, bulk->bitmask); in mlx5_fc_bulk_acquire_fc() 615 if (test_bit(fc_index, bulk->bitmask)) in mlx5_fc_bulk_release_fc() [all...] |
| H A D | mlx5_transobj.c | 281 void *bitmask; in mlx5_core_arm_rmp() local 289 bitmask = MLX5_ADDR_OF(modify_rmp_in, in, bitmask); in mlx5_core_arm_rmp() 295 MLX5_SET(rmp_bitmask, bitmask, lwm, 1); in mlx5_core_arm_rmp()
|
| /freebsd/sys/powerpc/powerpc/ |
| H A D | cpu.c | 469 const char *bitmask; in cpu_6xx_setup() local 542 bitmask = HID0_7450_BITMASK; in cpu_6xx_setup() 545 bitmask = HID0_BITMASK; in cpu_6xx_setup() 549 printf("cpu%d: HID0 %b\n", cpuid, (int)hid0, bitmask); in cpu_6xx_setup() 610 const char *bitmask; in cpu_booke_setup() local 616 bitmask = HID0_E500MC_BITMASK; in cpu_booke_setup() 621 bitmask = HID0_E5500_BITMASK; in cpu_booke_setup() 634 bitmask = HID0_E500_BITMASK; in cpu_booke_setup() 637 printf("cpu%d: HID0 %b\n", cpuid, (int)hid0, bitmask); in cpu_booke_setup()
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | charconv.cppm | |
| H A D | future.cppm | |
| H A D | regex.cppm | |
| /freebsd/crypto/openssl/ssl/statem/ |
| H A D | statem_dtls.c | 22 #define RSMBLY_BITMASK_MARK(bitmask, start, end) \ argument 27 bitmask[((ii) >> 3)] |= (1 << ((ii) & 7)); \ 30 bitmask[((start) >> 3)] |= bitmask_start_values[((start) & 7)]; \ 32 bitmask[ii] = 0xff; \ 33 bitmask[(((end) - 1) >> 3)] |= bitmask_end_values[((end) & 7)]; \ 37 #define RSMBLY_BITMASK_IS_COMPLETE(bitmask, msg_len, is_complete) \ argument 41 if (bitmask[(((msg_len) - 1) >> 3)] != bitmask_end_values[((msg_len) & 7)]) \ 45 if (bitmask[ii] != 0xff) { \ 74 unsigned char *bitmask = NULL; in dtls1_hm_fragment_new() local 91 bitmask = OPENSSL_zalloc(RSMBLY_BITMASK_SIZE(frag_len)); in dtls1_hm_fragment_new() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/display/tegra/ |
| H A D | nvidia,tegra114-mipi.txt | 10 - #nvidia,mipi-calibrate-cells: Should be 1. The cell is a bitmask of the pads 14 phandle to refer to the calibration controller node and a bitmask of the pads
|
| /freebsd/sys/arm/freescale/imx/ |
| H A D | imx6_ahci.c | 70 imx6_ahci_phy_ctrl(struct ahci_controller* sc, uint32_t bitmask, bool on) in imx6_ahci_phy_ctrl() argument 78 v |= bitmask; in imx6_ahci_phy_ctrl() 80 v &= ~bitmask; in imx6_ahci_phy_ctrl()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | NSString.cpp | 348 uint8_t bitmask = 0; in NSTaggedString_SummaryProvider() local 352 bitmask = 0x03f; in NSTaggedString_SummaryProvider() 355 bitmask = 0x01f; in NSTaggedString_SummaryProvider() 362 uint8_t packed = data_bits & bitmask; in NSTaggedString_SummaryProvider()
|
| /freebsd/sbin/pfctl/tests/files/ |
| H A D | pf1045.in | 1 nat on vtnet0 proto tcp from 192.0.2.1 to 192.0.2.2 -> 203.0.113.0/24 bitmask
|
| H A D | pf1046.in | 1 nat on vtnet0 proto tcp from 192.0.2.1 to 192.0.2.2 -> <targets> bitmask
|
| H A D | pf1047.in | 1 nat on vtnet0 proto tcp from 192.0.2.1 to 192.0.2.2 -> (vtnet1) bitmask
|
| H A D | pf1045.ok | 1 nat on vtnet0 inet proto tcp from 192.0.2.1 to 192.0.2.2 -> 203.0.113.0/24 bitmask
|
| /freebsd/sys/contrib/device-tree/Bindings/clock/ |
| H A D | keystone-pll.txt | 46 - bit-mask : arbitrary bitmask for programming the mux 68 - bit-mask : arbitrary bitmask for programming the divider
|
| /freebsd/sys/netpfil/ipfilter/netinet/ |
| H A D | radix_ipf.c | 153 if (cur->bitmask & addr[cur->offset]) { in ipf_rx_find_addr() 364 nodes[1].bitmask = htonl(0x80000000 >> (nlen & 0x1f)); in ipf_rx_insert() 380 if (key[cur->offset] & cur->bitmask) { in ipf_rx_insert() 387 if ((key[prev->offset] & prev->bitmask) == 0) { in ipf_rx_insert() 394 if ((key[nodes[1].offset] & nodes[1].bitmask) == 0) { in ipf_rx_insert() 664 parent->bitmask = prev->bitmask; in ipf_rx_delete() 700 if (((cur - 1)->addrkey[found->offset] & found->bitmask) != in ipf_rx_delete() 811 node[1].bitmask = htonl(0x80000000); in ipf_rx_inithead()
|
| /freebsd/sys/contrib/device-tree/Bindings/gpio/ |
| H A D | gpio-stmpe.txt | 8 - st,norequest-mask: bitmask specifying which GPIOs should _not_ be requestable
|
| /freebsd/sys/contrib/device-tree/Bindings/timer/ |
| H A D | ti,c64x+timer64.txt | 16 - ti,core-mask: on multi-core SoCs, bitmask of cores allowed to use this timer.
|