HomeSort by: relevance | last modified time | path
    Searched refs:bitmap (Results 1 - 25 of 742) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-dce.h 21 extern void simple_dce_from_worklist (bitmap, bitmap = nullptr);
tree-ssa-ter.h 23 extern bitmap find_replaceable_exprs (var_map);
24 extern void dump_replaceable_exprs (FILE *, bitmap);
ipa-reference.h 25 bitmap ipa_reference_get_read_global (struct cgraph_node *fn);
26 bitmap ipa_reference_get_written_global (struct cgraph_node *fn);
tree-ssa-dse.h 35 bitmap = NULL, bitmap = NULL);
gcse-common.h 39 extern void compute_transp (const_rtx, int, sbitmap *, bitmap,
40 bitmap, vec<modify_pair> *);
44 bitmap, bitmap);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-ter.h 23 extern bitmap find_replaceable_exprs (var_map);
24 extern void dump_replaceable_exprs (FILE *, bitmap);
tree-ssa-dce.h 21 extern void simple_dce_from_worklist (bitmap);
ipa-reference.h 25 bitmap ipa_reference_get_read_global (struct cgraph_node *fn);
26 bitmap ipa_reference_get_written_global (struct cgraph_node *fn);
tree-ssa-dse.h 35 bitmap = NULL, bitmap = NULL);
gcse-common.h 39 extern void compute_transp (const_rtx, int, sbitmap *, bitmap,
40 bitmap, vec<modify_pair> *);
44 bitmap, bitmap);
tree-cfgcleanup.h 24 extern bitmap cfgcleanup_altered_bbs;
  /src/crypto/external/bsd/openssh/dist/
bitmap.h 1 /* $NetBSD: bitmap.h,v 1.5 2018/04/06 18:58:59 christos Exp $ */
2 /* $OpenBSD: bitmap.h,v 1.2 2017/10/20 01:56:39 djm Exp $ */
26 struct bitmap;
28 /* Allocate a new bitmap. Returns NULL on allocation failure. */
29 struct bitmap *bitmap_new(void);
31 /* Free a bitmap */
32 void bitmap_free(struct bitmap *b);
34 /* Zero an existing bitmap */
35 void bitmap_zero(struct bitmap *b);
37 /* Test whether a bit is set in a bitmap. *
    [all...]
  /src/external/bsd/jemalloc/include/jemalloc/internal/
arena_structs_a.h 4 #include "jemalloc/internal/bitmap.h"
7 /* Per region allocated/deallocated bitmap. */
8 bitmap_t bitmap[BITMAP_GROUPS_MAX]; member in struct:arena_slab_data_s
slab_data.h 5 #include "jemalloc/internal/bitmap.h"
9 /* Per region allocated/deallocated bitmap. */
10 bitmap_t bitmap[BITMAP_GROUPS_MAX]; member in struct:slab_data_s
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
arena_structs_a.h 4 #include "jemalloc/internal/bitmap.h"
7 /* Per region allocated/deallocated bitmap. */
8 bitmap_t bitmap[BITMAP_GROUPS_MAX]; member in struct:arena_slab_data_s
slab_data.h 4 #include "jemalloc/internal/bitmap.h"
8 /* Per region allocated/deallocated bitmap. */
9 bitmap_t bitmap[BITMAP_GROUPS_MAX]; member in struct:slab_data_s
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
arena_structs_a.h 4 #include "jemalloc/internal/bitmap.h"
7 /* Per region allocated/deallocated bitmap. */
8 bitmap_t bitmap[BITMAP_GROUPS_MAX]; member in struct:arena_slab_data_s
slab_data.h 4 #include "jemalloc/internal/bitmap.h"
8 /* Per region allocated/deallocated bitmap. */
9 bitmap_t bitmap[BITMAP_GROUPS_MAX]; member in struct:slab_data_s
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
slab_data.h 5 #include "jemalloc/internal/bitmap.h"
9 /* Per region allocated/deallocated bitmap. */
10 bitmap_t bitmap[BITMAP_GROUPS_MAX]; member in struct:slab_data_s
  /src/external/cddl/osnet/dist/uts/common/sys/
bitmap.h 45 #include <asm/bitmap.h>
50 * A bitmap is a vector of 1 or more ulong_t's.
74 * bitmap is a ulong_t *, bitindex an index_t
83 #define BT_WIM(bitmap, bitindex) \
84 ((bitmap)[(bitindex) >> BT_ULSHIFT])
92 #define BT_WIM32(bitmap, bitindex) \
93 ((bitmap)[(bitindex) >> BT_ULSHIFT32])
108 #define BT_TEST(bitmap, bitindex) \
109 ((BT_WIM((bitmap), (bitindex)) & BT_BIW(bitindex)) ? 1 : 0)
110 #define BT_SET(bitmap, bitindex)
    [all...]
  /src/crypto/external/bsd/openssl/dist/ssl/record/
dtls1_bitmap.c 38 int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap)
44 cmp = satsub64be(seq, bitmap->max_seq_num);
50 if (shift >= sizeof(bitmap->map) * 8)
52 else if (bitmap->map & (1UL << shift))
59 void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap)
65 cmp = satsub64be(seq, bitmap->max_seq_num);
68 if (shift < sizeof(bitmap->map) * 8)
69 bitmap->map <<= shift, bitmap->map |= 1UL;
71 bitmap->map = 1UL
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/ssl/record/
dtls1_bitmap.c 38 int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap)
44 cmp = satsub64be(seq, bitmap->max_seq_num);
50 if (shift >= sizeof(bitmap->map) * 8)
52 else if (bitmap->map & (1UL << shift))
59 void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap)
65 cmp = satsub64be(seq, bitmap->max_seq_num);
68 if (shift < sizeof(bitmap->map) * 8)
69 bitmap->map <<= shift, bitmap->map |= 1UL;
71 bitmap->map = 1UL
    [all...]
  /src/external/bsd/jemalloc.old/dist/test/unit/
bitmap.c 54 "Bitmap size is smaller than expected");
55 expect_zu_ge(size, prev_size, "Bitmap size is smaller than expected");
82 bitmap_t *bitmap = (bitmap_t *)malloc(bitmap_size(binfo)); local
83 expect_ptr_not_null(bitmap, "Unexpected malloc() failure");
85 bitmap_init(bitmap, binfo, false);
87 expect_false(bitmap_get(bitmap, binfo, i),
91 bitmap_init(bitmap, binfo, true);
93 expect_true(bitmap_get(bitmap, binfo, i), "Bit should be set");
96 free(bitmap);
119 bitmap_t *bitmap = (bitmap_t *)malloc(bitmap_size(binfo)) local
150 bitmap_t *bitmap = (bitmap_t *)malloc(bitmap_size(binfo)); local
187 bitmap_t *bitmap = (bitmap_t *)malloc(bitmap_size(binfo)); local
    [all...]
  /src/external/bsd/jemalloc/dist/test/unit/
bitmap.c 58 size, (nbits >> 3), "Bitmap size is smaller than expected");
59 expect_zu_ge(size, prev_size, "Bitmap size is smaller than expected");
86 bitmap_t *bitmap = (bitmap_t *)malloc(bitmap_size(binfo)); local
87 expect_ptr_not_null(bitmap, "Unexpected malloc() failure");
89 bitmap_init(bitmap, binfo, false);
92 bitmap_get(bitmap, binfo, i), "Bit should be unset");
95 bitmap_init(bitmap, binfo, true);
97 expect_true(bitmap_get(bitmap, binfo, i), "Bit should be set");
100 free(bitmap);
124 bitmap_t *bitmap = (bitmap_t *)malloc(bitmap_size(binfo)) local
156 bitmap_t *bitmap = (bitmap_t *)malloc(bitmap_size(binfo)); local
194 bitmap_t *bitmap = (bitmap_t *)malloc(bitmap_size(binfo)); local
    [all...]
  /src/external/mit/xorg/bin/bitmap/
Makefile 5 PROG= bitmap
6 SRCS= BitEdit.c CutPaste.c Graphics.c ReqMach.c Bitmap.c Dialog.c Handlers.c
8 .PATH: ${X11SRCDIR.bitmap}/man
9 MLINKS= bitmap.1 bmtoa.1 bitmap.1 atobm.1
19 .PATH: ${X11SRCDIR.bitmap} ${X11SRCDIR.bitmap}/bitmaps

Completed in 56 milliseconds

1 2 3 4 5 6 7 8 91011>>