OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newBits
(Results
1 - 11
of
11
) sorted by null
/libcore/luni/src/main/java/java/util/
MiniEnumSet.java
111
long
newBits
= oldBits | (1L << element.ordinal());
112
if (oldBits !=
newBits
) {
113
bits =
newBits
;
131
long
newBits
= oldBits | miniSet.bits;
132
bits =
newBits
;
133
size = Long.bitCount(
newBits
);
134
return (oldBits !=
newBits
);
177
long
newBits
= oldBits & ~miniSet.bits;
178
if (oldBits !=
newBits
) {
179
bits =
newBits
;
[
all
...]
HugeEnumSet.java
127
long
newBits
= oldBits | (1L << inBits);
128
if (oldBits !=
newBits
) {
129
bits[index] =
newBits
;
150
long
newBits
= oldBits | hugeSet.bits[i];
151
if (oldBits !=
newBits
) {
152
bits[i] =
newBits
;
153
size += Long.bitCount(
newBits
) - Long.bitCount(oldBits);
256
long
newBits
= oldBits & ~(1L << inBits);
257
if (oldBits !=
newBits
) {
258
bits[index] =
newBits
;
[
all
...]
BitSet.java
142
long[]
newBits
= new long[newLength];
143
System.arraycopy(bits, 0,
newBits
, 0, longCount);
144
this.bits =
newBits
;
271
long[]
newBits
= new long[lastArrayIndex - firstArrayIndex + 1];
274
newBits
[0] = bits[firstArrayIndex] & lowMask;
275
newBits
[
newBits
.length - 1] = bits[lastArrayIndex] & highMask;
279
newBits
[i] = bits[firstArrayIndex + i];
284
int actualLen =
newBits
.length;
286
for (int i = 0; i <
newBits
.length; i++)
[
all
...]
/dalvik/dexgen/src/com/android/dexgen/util/
BitIntSet.java
51
int[]
newBits
= Bits.makeBitSet(
53
System.arraycopy(bits, 0,
newBits
, 0, bits.length);
54
bits =
newBits
;
/dalvik/dx/src/com/android/dx/util/
BitIntSet.java
51
int[]
newBits
= Bits.makeBitSet(
53
System.arraycopy(bits, 0,
newBits
, 0, bits.length);
54
bits =
newBits
;
/external/dexmaker/src/dx/java/com/android/dx/util/
BitIntSet.java
51
int[]
newBits
= Bits.makeBitSet(
53
System.arraycopy(bits, 0,
newBits
, 0, bits.length);
54
bits =
newBits
;
/external/antlr/antlr-3.4/runtime/C/src/
antlr3bitset.c
397
pANTLR3_BITWORD
newBits
;
402
newBits
= (pANTLR3_BITWORD) ANTLR3_CALLOC(1, (size_t)(newSize * sizeof(ANTLR3_BITWORD)));
407
ANTLR3_MEMCPY((void *)
newBits
, (const void *)bitset->blist.bits, (size_t)(bitset->blist.length * sizeof(ANTLR3_BITWORD)));
416
bitset->blist.bits =
newBits
;
/external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp
[
all
...]
/external/zxing/core/
core.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar
/prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar
Completed in 3187 milliseconds