OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BITS_PER_WORD
(Results
1 - 25
of
42
) sorted by null
1
2
/system/core/include/cutils/
bitops.h
48
#define
BITS_PER_WORD
(sizeof(unsigned int) * 8)
49
#define BITS_TO_WORDS(x) (((x) +
BITS_PER_WORD
- 1) /
BITS_PER_WORD
)
50
#define BIT_IN_WORD(x) ((x) %
BITS_PER_WORD
)
51
#define BIT_WORD(x) ((x) /
BITS_PER_WORD
)
69
result =
BITS_PER_WORD
* i + bit;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
ChildHelper.java
348
final static int
BITS_PER_WORD
= Long.SIZE;
357
if (index >=
BITS_PER_WORD
) {
359
next.set(index -
BITS_PER_WORD
);
372
if (index >=
BITS_PER_WORD
) {
374
next.clear(index -
BITS_PER_WORD
);
383
if (index >=
BITS_PER_WORD
) {
385
return next.get(index -
BITS_PER_WORD
);
399
if (index >=
BITS_PER_WORD
) {
401
next.insert(index -
BITS_PER_WORD
, value);
421
if (index >=
BITS_PER_WORD
) {
[
all
...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BucketTest.java
43
mArr.add(i * (ChildHelper.Bucket.
BITS_PER_WORD
- 1));
44
mArr.add(i * (ChildHelper.Bucket.
BITS_PER_WORD
));
45
mArr.add(i * (ChildHelper.Bucket.
BITS_PER_WORD
+ 1));
46
mArr.add(i * ChildHelper.Bucket.
BITS_PER_WORD
- 1);
47
mArr.add(i * ChildHelper.Bucket.
BITS_PER_WORD
);
48
mArr.add(i * ChildHelper.Bucket.
BITS_PER_WORD
+ 1);
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
defaults.h
478
#ifndef
BITS_PER_WORD
479
#define
BITS_PER_WORD
(BITS_PER_UNIT * UNITS_PER_WORD)
496
#define INT_TYPE_SIZE
BITS_PER_WORD
500
#define LONG_TYPE_SIZE
BITS_PER_WORD
504
#define LONG_LONG_TYPE_SIZE (
BITS_PER_WORD
* 2)
512
#define FLOAT_TYPE_SIZE
BITS_PER_WORD
516
#define DOUBLE_TYPE_SIZE (
BITS_PER_WORD
* 2)
520
#define LONG_DOUBLE_TYPE_SIZE (
BITS_PER_WORD
* 2)
748
#define POINTER_SIZE
BITS_PER_WORD
822
#define MALLOC_ABI_ALIGNMENT
BITS_PER_WORD
[
all
...]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
prcpucfg.h
171
#define
BITS_PER_WORD
PR_BITS_PER_WORD
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_aix32.cfg
113
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_aix64.cfg
114
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_beos.cfg
121
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_darwin.cfg
114
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_dgux.cfg
109
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_hpux32.cfg
113
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_hpux64.cfg
114
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_irix32.cfg
120
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_irix64.cfg
119
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_ncr.cfg
111
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_nec.cfg
111
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_nto.cfg
121
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_openvms.cfg
117
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_os2.cfg
122
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_osf1.cfg
117
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_reliantunix.cfg
116
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_rhapsody.cfg
118
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_scoos.cfg
111
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_solaris32.cfg
121
#define
BITS_PER_WORD
PR_BITS_PER_WORD
_solaris64.cfg
122
#define
BITS_PER_WORD
PR_BITS_PER_WORD
Completed in 371 milliseconds
1
2