bits              301 opal/include/opal/sys/arm64/atomic.h #define OPAL_ASM_MAKE_ATOMIC(type, bits, name, inst, reg)                   \
bits              302 opal/include/opal/sys/arm64/atomic.h     static inline type opal_atomic_fetch_ ## name ## _ ## bits (opal_atomic_ ## type *addr, type value) \
bits               75 opal/include/opal/sys/atomic_impl.h #define OPAL_ATOMIC_DEFINE_CMPXCG_OP(type, bits, operation, name)  \
bits               76 opal/include/opal/sys/atomic_impl.h     static inline type opal_atomic_fetch_ ## name ## _ ## bits (opal_atomic_ ## type *addr, type value) \
bits               81 opal/include/opal/sys/atomic_impl.h         } while (!opal_atomic_compare_exchange_strong_ ## bits (addr, &oldval, oldval operation value)); \
bits               98 opal/include/opal/sys/atomic_stdc.h #define OPAL_ATOMIC_STDC_DEFINE_FETCH_OP(op, bits, type, operator)      \
bits               99 opal/include/opal/sys/atomic_stdc.h     static inline type opal_atomic_fetch_ ## op ##_## bits (opal_atomic_ ## type *addr, type value) \
bits              104 opal/include/opal/sys/atomic_stdc.h     static inline type opal_atomic_## op ## _fetch_ ## bits (opal_atomic_ ## type *addr, type value) \
bits              302 opal/mca/pmix/pmix4x/pmix/src/atomics/sys/arm64/atomic.h #define PMIX_ASM_MAKE_ATOMIC(type, bits, name, inst, reg)                   \
bits              303 opal/mca/pmix/pmix4x/pmix/src/atomics/sys/arm64/atomic.h     static inline type pmix_atomic_fetch_ ## name ## _ ## bits (pmix_atomic_ ## type *addr, type value) \
bits               76 opal/mca/pmix/pmix4x/pmix/src/atomics/sys/atomic_impl.h #define PMIX_ATOMIC_DEFINE_CMPXCG_OP(type, bits, operation, name)  \
bits               77 opal/mca/pmix/pmix4x/pmix/src/atomics/sys/atomic_impl.h     static inline type pmix_atomic_fetch_ ## name ## _ ## bits (pmix_atomic_ ## type *addr, type value) \
bits               82 opal/mca/pmix/pmix4x/pmix/src/atomics/sys/atomic_impl.h         } while (!pmix_atomic_compare_exchange_strong_ ## bits (addr, &oldval, oldval operation value)); \
bits               97 opal/mca/pmix/pmix4x/pmix/src/atomics/sys/atomic_stdc.h #define PMIX_ATOMIC_STDC_DEFINE_FETCH_OP(op, bits, type, operator)      \
bits               98 opal/mca/pmix/pmix4x/pmix/src/atomics/sys/atomic_stdc.h     static inline type pmix_atomic_fetch_ ## op ##_## bits (pmix_atomic_ ## type *addr, type value) \
bits              103 opal/mca/pmix/pmix4x/pmix/src/atomics/sys/atomic_stdc.h     static inline type pmix_atomic_## op ## _fetch_ ## bits (pmix_atomic_ ## type *addr, type value) \
bits              132 opal/mca/pmix/pmix4x/pmix/src/util/net.c     uint32_t a, b, c, d, bits, addr;
bits              147 opal/mca/pmix/pmix4x/pmix/src/util/net.c             (void)sscanf( arg, "%u.%u.%u.%u/%u", &a, &b, &c, &d, &bits );
bits              150 opal/mca/pmix/pmix4x/pmix/src/util/net.c                 (d > 255) || (bits > 32) ) {
bits              161 opal/mca/pmix/pmix4x/pmix/src/util/net.c             private_ipv4[i].netmask_bits = bits;
bits              155 opal/util/net.c     uint32_t a, b, c, d, bits, addr;
bits              170 opal/util/net.c             (void)sscanf( arg, "%u.%u.%u.%u/%u", &a, &b, &c, &d, &bits );
bits              173 opal/util/net.c                 (d > 255) || (bits > 32) ) {
bits              184 opal/util/net.c             private_ipv4[i].netmask_bits = bits;
bits              250 oshmem/mca/memheap/buddy/memheap_buddy.c     buddy->heap.bits = (unsigned long**) calloc((buddy->heap.max_order + 1),
bits              252 oshmem/mca/memheap/buddy/memheap_buddy.c     buddy->private_heap.bits =
bits              260 oshmem/mca/memheap/buddy/memheap_buddy.c     if ((NULL == buddy->heap.bits) || (NULL == buddy->heap.num_free)
bits              261 oshmem/mca/memheap/buddy/memheap_buddy.c             || (NULL == buddy->private_heap.bits)
bits              275 oshmem/mca/memheap/buddy/memheap_buddy.c         buddy->heap.bits[i] = (unsigned long*) malloc(s
bits              277 oshmem/mca/memheap/buddy/memheap_buddy.c         if (NULL == buddy->heap.bits[i]) {
bits              281 oshmem/mca/memheap/buddy/memheap_buddy.c         bitmap_zero(buddy->heap.bits[i], 1UL << (buddy->heap.max_order - i));
bits              293 oshmem/mca/memheap/buddy/memheap_buddy.c         buddy->private_heap.bits[i] = (unsigned long*) malloc(s
bits              295 oshmem/mca/memheap/buddy/memheap_buddy.c         if (NULL == buddy->private_heap.bits[i]) {
bits              299 oshmem/mca/memheap/buddy/memheap_buddy.c         bitmap_zero(buddy->private_heap.bits[i],
bits              306 oshmem/mca/memheap/buddy/memheap_buddy.c     set_bit(0, buddy->heap.bits[buddy->heap.max_order]);
bits              307 oshmem/mca/memheap/buddy/memheap_buddy.c     set_bit(0, buddy->private_heap.bits[buddy->private_heap.max_order]);
bits              326 oshmem/mca/memheap/buddy/memheap_buddy.c         if (NULL != buddy->heap.bits && NULL != buddy->heap.bits[i]) {
bits              327 oshmem/mca/memheap/buddy/memheap_buddy.c             free(buddy->heap.bits[i]);
bits              332 oshmem/mca/memheap/buddy/memheap_buddy.c         if (NULL != buddy->private_heap.bits
bits              333 oshmem/mca/memheap/buddy/memheap_buddy.c                 && NULL != buddy->private_heap.bits[i]) {
bits              334 oshmem/mca/memheap/buddy/memheap_buddy.c             free(buddy->private_heap.bits[i]);
bits              338 oshmem/mca/memheap/buddy/memheap_buddy.c     if (NULL != buddy->heap.bits) {
bits              339 oshmem/mca/memheap/buddy/memheap_buddy.c         free(buddy->heap.bits);
bits              345 oshmem/mca/memheap/buddy/memheap_buddy.c     if (NULL != buddy->private_heap.bits) {
bits              346 oshmem/mca/memheap/buddy/memheap_buddy.c         free(buddy->private_heap.bits);
bits              368 oshmem/mca/memheap/buddy/memheap_buddy.c             *seg = find_first_bit(heap->bits[o], m);
bits              371 oshmem/mca/memheap/buddy/memheap_buddy.c                             o, heap->bits[o][0], m, *seg);
bits              381 oshmem/mca/memheap/buddy/memheap_buddy.c     clear_bit(*seg, heap->bits[o]);
bits              387 oshmem/mca/memheap/buddy/memheap_buddy.c         set_bit(*seg ^ 1, heap->bits[o]);
bits              406 oshmem/mca/memheap/buddy/memheap_buddy.c     while (test_bit(seg ^ 1, heap->bits[order])) {
bits              407 oshmem/mca/memheap/buddy/memheap_buddy.c         clear_bit(seg ^ 1, heap->bits[order]);
bits              413 oshmem/mca/memheap/buddy/memheap_buddy.c     set_bit(seg, heap->bits[order]);
bits               38 oshmem/mca/memheap/buddy/memheap_buddy.h #define __BITOPS_WORDS(bits)             (((bits)+__BITOPS_WORDSIZE-1)/__BITOPS_WORDSIZE)
bits               46 oshmem/mca/memheap/buddy/memheap_buddy.h     unsigned long **bits; /** Part of the buddy allocator */