HomeSort by relevance Sort by last modified time
    Searched refs:bitset (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/stlport/test/unit/
bitset_header_test.cpp 8 #include <bitset>
  /ndk/tests/device/test-gnustl-full/unit/
bitset_header_test.cpp 8 #include <bitset>
  /ndk/tests/device/test-stlport/unit/
bitset_header_test.cpp 8 #include <bitset>
  /external/bison/lib/
bitset_stats.h 1 /* Functions to support bitset statistics.
26 extern enum bitset_type bitset_stats_type_get (bitset);
30 extern bitset bitset_stats_init (bitset, bitset_bindex, enum bitset_type);
abitset.h 22 #include "bitset.h"
26 extern bitset abitset_init (bitset, bitset_bindex);
ebitset.h 22 #include "bitset.h"
26 extern bitset ebitset_init (bitset, bitset_bindex);
lbitset.h 22 #include "bitset.h"
26 extern bitset lbitset_init (bitset, bitset_bindex);
vbitset.h 22 #include "bitset.h"
26 extern bitset vbitset_init (bitset, bitset_bindex);
bbitset.h 1 /* Base bitset stuff.
30 Memory for bit array and bitset structure allocated
39 BITSET_STATS: Wrapper bitset for internal use only. Used for gathering
93 that the bitset is known to be zero, that a bit has been set
100 typedef union bitset_union *bitset; typedef in typeref:union:bitset_union
103 /* Private accessor macros to bitset structure. */
114 void (*set) (bitset, bitset_bindex);
115 void (*reset) (bitset, bitset_bindex);
116 bool (*toggle) (bitset, bitset_bindex);
117 bool (*test) (bitset, bitset_bindex)
    [all...]
bitset.c 25 #include "bitset.h"
36 /* Return number of bytes required to create a N_BIT bitset
37 of TYPE. The bitset may grow to require more bytes than this. */
72 /* Initialise bitset BSET of TYPE for N_BITS. */
73 bitset
74 bitset_init (bitset bset, bitset_bindex n_bits, enum bitset_type type)
99 /* Select a bitset type for a set of N_BITS and with attribute hints
111 /* Choose the type of bitset. Note that sometimes we will be asked
112 for a zero length fixed size bitset. */
132 /* Create a bitset of N_BITS of type TYPE. *
    [all...]
bitset_stats.c 0 /* Bitset statistics.
19 /* This file is a wrapper bitset implementation for the other bitset
20 implementations. It provides bitset compatibility checking and
21 statistics gathering without having to instrument the bitset
22 implementations. When statistics gathering is enabled, the bitset
44 #define BITSET_STATS_FILE "bitset.dat"
168 /* Print bitset statistics to FILE. */
203 /* Print all bitset statistics to FILE. */
212 fprintf (file, _("Bitset statistics:\n\n"))
    [all...]
abitset.c 36 abitset_resize (bitset src, bitset_bindex size)
49 abitset_small_list (bitset src, bitset_bindex *list,
104 /* Set bit BITNO in bitset DST. */
106 abitset_set (bitset dst ATTRIBUTE_UNUSED, bitset_bindex bitno ATTRIBUTE_UNUSED)
110 bounds of the bitset. */
115 /* Reset bit BITNO in bitset DST. */
117 abitset_reset (bitset dst ATTRIBUTE_UNUSED,
122 bounds of the bitset. Since the bit is zero anyway, let it pass. */
126 /* Test bit BITNO in bitset SRC. */
128 abitset_test (bitset src ATTRIBUTE_UNUSED
    [all...]
vbitset.c 31 Note that binary or ternary operations assume that each bitset operand
35 static void vbitset_unused_clear (bitset);
37 static void vbitset_set (bitset, bitset_bindex);
38 static void vbitset_reset (bitset, bitset_bindex);
39 static bool vbitset_test (bitset, bitset_bindex);
40 static bitset_bindex vbitset_list (bitset, bitset_bindex *,
42 static bitset_bindex vbitset_list_reverse (bitset, bitset_bindex *,
56 vbitset_resize (bitset src, bitset_bindex n_bits)
71 /* The bitset needs to grow. If we already have enough memory
77 grow the bitset 25% larger than requested to reduc
    [all...]
bitset.h 22 /* This file is the public interface to the bitset abstract data type.
33 /* Attributes used to select a bitset implementation. */
34 enum bitset_attr {BITSET_FIXED = 1, /* Bitset size fixed. */
35 BITSET_VARIABLE = 2, /* Bitset size variable. */
36 BITSET_DENSE = 4, /* Bitset dense. */
37 BITSET_SPARSE = 8, /* Bitset sparse. */
51 struct bbitset_struct b; /* Base bitset data. */
76 bitset bset;
99 /* Return bytes required for bitset of desired type and size. */
102 /* Initialise a bitset with desired type and size. *
    [all...]
bitsetv.h 0 /* Bitset vectors.
22 #include "bitset.h"
24 typedef bitset * bitsetv;
  /external/stlport/test/eh/
test_bitset.cpp 19 #include <bitset>
28 typedef bitset<100> TestBitset;
  /external/bison/src/
lalr.h 26 # include <bitset.h>
  /external/chromium/base/
message_pump_glib_x.h 11 #include <bitset>
78 std::bitset<LASTEvent> capture_x_events_;
79 std::bitset<GDK_EVENT_LAST> capture_gdk_events_;
  /external/stlport/src/
bitset.cpp 21 #include <bitset>