OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bitset
(Results
26 - 50
of
293
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
bitset
0
// <
bitset
> -*- C++ -*-
39
/** @file include/
bitset
66
* See documentation for
bitset
.
328
* See documentation for
bitset
.
454
* Base class, specialization for no storage (zero-length %
bitset
).
456
* See documentation for
bitset
.
486
// in the
bitset
class will prevent the user from getting this far,
537
// the sound of one zero-length
bitset
clapping?
583
* @brief The %
bitset
class represents a @e fixed-size sequence of bits.
587
* (Note that %
bitset
does @e not meet the formal requirements of
[
all
...]
/prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/
bitset
0
// <
bitset
> -*- C++ -*-
39
/** @file include/
bitset
66
* See documentation for
bitset
.
328
* See documentation for
bitset
.
454
* Base class, specialization for no storage (zero-length %
bitset
).
456
* See documentation for
bitset
.
486
// in the
bitset
class will prevent the user from getting this far,
537
// the sound of one zero-length
bitset
clapping?
583
* @brief The %
bitset
class represents a @e fixed-size sequence of bits.
587
* (Note that %
bitset
does @e not meet the formal requirements of
[
all
...]
/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);
bitsetv.c
0
/*
Bitset
vectors.
28
bitset
*
34
bitset
*bsetv;
41
if (BITSET_SIZE_MAX / (sizeof (
bitset
) + bytes) <= n_vecs)
44
/* Allocate vector table at head of
bitset
array. */
45
vector_bytes = (n_vecs + 1) * sizeof (
bitset
) + bytes - 1;
51
bsetv[i] = (
bitset
) (void *) ((char *) bsetv + vector_bytes + i * bytes);
64
bitset
*
74
/* Free
bitset
vector BSETV. */
138
/* Dump the contents of a
bitset
vector BSETV with N_VECS elements t
[
all
...]
lbitset.c
75
/* Obstack to allocate
bitset
elements from. */
78
static lbitset_elt *lbitset_free_list; /* Free list of
bitset
elements. */
80
extern void debug_lbitset (
bitset
);
163
/* Unlink element ELT from
bitset
BSET. */
165
lbitset_elt_unlink (
bitset
bset, lbitset_elt *elt)
207
/* Cut the chain of
bitset
BSET before element ELT and free the
210
lbitset_prune (
bitset
bset, lbitset_elt *elt)
254
/* Link the
bitset
element into the current
bitset
linked list. */
256
lbitset_elt_link (
bitset
bset, lbitset_elt *elt
[
all
...]
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);
Makefile.am
38
abitset.c abitset.h bbitset.h
bitset
.c
bitset
.h bitset_stats.c \
42
# Additional
bitset
operations.
/external/stlport/test/unit/
bitset_header_test.cpp
8
#include <
bitset
>
bitset_test.cpp
1
#include <
bitset
>
38
bitset
<13U> b1(0xFFFF);
39
bitset
<13U> b2(0x1111);
83
bitset
<13U> b(0x1111);
87
bitset
<13U> b1;
97
bitset
<13U> b(0x1111);
101
bitset
<13U> b1;
/ndk/tests/device/test-gnustl-full/unit/
bitset_header_test.cpp
8
#include <
bitset
>
bitset_test.cpp
1
#include <
bitset
>
38
bitset
<13U> b1(0xFFFF);
39
bitset
<13U> b2(0x1111);
83
bitset
<13U> b(0x1111);
87
bitset
<13U> b1;
97
bitset
<13U> b(0x1111);
101
bitset
<13U> b1;
/ndk/tests/device/test-stlport/unit/
bitset_header_test.cpp
8
#include <
bitset
>
bitset_test.cpp
1
#include <
bitset
>
38
bitset
<13U> b1(0xFFFF);
39
bitset
<13U> b2(0x1111);
83
bitset
<13U> b(0x1111);
87
bitset
<13U> b1;
97
bitset
<13U> b(0x1111);
101
bitset
<13U> b1;
/external/stlport/stlport/
bitset
21
// This implementation of
bitset
<> has a second template parameter,
26
// A
bitset
of size N, using words of type _WordT, will have
29
// of class
bitset
<> that those unused bits are always zero.
31
// Most of the actual code isn't contained in
bitset
<> itself, but in the
34
// important special case where the
bitset
is only a single word.
55
# include_next <
bitset
>
57
# include _STLP_NATIVE_HEADER(
bitset
)
/ndk/sources/cxx-stl/stlport/stlport/
bitset
21
// This implementation of
bitset
<> has a second template parameter,
26
// A
bitset
of size N, using words of type _WordT, will have
29
// of class
bitset
<> that those unused bits are always zero.
31
// Most of the actual code isn't contained in
bitset
<> itself, but in the
34
// important special case where the
bitset
is only a single word.
55
# include_next <
bitset
>
57
# include _STLP_NATIVE_HEADER(
bitset
)
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/
bitset
21
// This implementation of
bitset
<> has a second template parameter,
26
// A
bitset
of size N, using words of type _WordT, will have
29
// of class
bitset
<> that those unused bits are always zero.
31
// Most of the actual code isn't contained in
bitset
<> itself, but in the
34
// important special case where the
bitset
is only a single word.
55
# include_next <
bitset
>
57
# include _STLP_NATIVE_HEADER(
bitset
)
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/
bitset
21
// This implementation of
bitset
<> has a second template parameter,
26
// A
bitset
of size N, using words of type _WordT, will have
29
// of class
bitset
<> that those unused bits are always zero.
31
// Most of the actual code isn't contained in
bitset
<> itself, but in the
34
// important special case where the
bitset
is only a single word.
55
# include_next <
bitset
>
57
# include _STLP_NATIVE_HEADER(
bitset
)
/prebuilt/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/
bitset
21
// This implementation of
bitset
<> has a second template parameter,
26
// A
bitset
of size N, using words of type _WordT, will have
29
// of class
bitset
<> that those unused bits are always zero.
31
// Most of the actual code isn't contained in
bitset
<> itself, but in the
34
// important special case where the
bitset
is only a single word.
55
# include_next <
bitset
>
57
# include _STLP_NATIVE_HEADER(
bitset
)
/libcore/luni/src/main/java/java/util/
BitSet.java
29
* The {@code
BitSet
} class implements a
31
* Each element is either true or false. A {@code
BitSet
} is created with a given size and grows
34
public class
BitSet
implements Serializable, Cloneable {
74
* Creates a new {@code
BitSet
} with size equal to 64 bits.
76
public
BitSet
() {
81
* Creates a new {@code
BitSet
} with size equal to {@code bitCount}, rounded up to
86
public
BitSet
(int bitCount) {
94
private
BitSet
(long[] bits) {
106
BitSet
clone = (
BitSet
) super.clone()
[
all
...]
/external/stlport/test/eh/
test_bitset.cpp
19
#include <
bitset
>
28
typedef
bitset
<100> TestBitset;
/external/iptables/include/linux/netfilter/
xt_CHECKSUM.h
17
__u8 operation; /*
bitset
of operations */
/dalvik/dx/src/com/android/dx/dex/code/form/
Form11x.java
25
import java.util.
BitSet
;
74
public
BitSet
compatibleRegs(DalvInsn insn) {
76
BitSet
bits = new
BitSet
(1);
Completed in 1427 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>