Searched defs:BITS_PER_WORD (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DChildHelper.java397 static final int BITS_PER_WORD = Long.SIZE; field in class:ChildHelper.Bucket
406 if (index >= BITS_PER_WORD) {
408 mNext.set(index - BITS_PER_WORD);
421 if (index >= BITS_PER_WORD) {
423 mNext.clear(index - BITS_PER_WORD);
432 if (index >= BITS_PER_WORD) {
434 return mNext.get(index - BITS_PER_WORD);
448 if (index >= BITS_PER_WORD) {
450 mNext.insert(index - BITS_PER_WORD, value);
470 if (index >= BITS_PER_WORD) {
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DChildHelper.java397 static final int BITS_PER_WORD = Long.SIZE; field in class:ChildHelper.Bucket
406 if (index >= BITS_PER_WORD) {
408 mNext.set(index - BITS_PER_WORD);
421 if (index >= BITS_PER_WORD) {
423 mNext.clear(index - BITS_PER_WORD);
432 if (index >= BITS_PER_WORD) {
434 return mNext.get(index - BITS_PER_WORD);
448 if (index >= BITS_PER_WORD) {
450 mNext.insert(index - BITS_PER_WORD, value);
470 if (index >= BITS_PER_WORD) {
[all...]

Completed in 1554 milliseconds