HomeSort by relevance Sort by last modified time
    Searched refs:arrayIdx (Results 1 - 11 of 11) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/util/
Bits.java 59 int arrayIdx = idx >> 5;
61 return (bits[arrayIdx] & bit) != 0;
72 int arrayIdx = idx >> 5;
76 bits[arrayIdx] |= bit;
78 bits[arrayIdx] &= ~bit;
89 int arrayIdx = idx >> 5;
91 bits[arrayIdx] |= bit;
101 int arrayIdx = idx >> 5;
103 bits[arrayIdx] &= ~bit;
170 for (int arrayIdx = idx >> 5; arrayIdx < len; arrayIdx++)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Bits.java 59 int arrayIdx = idx >> 5;
61 return (bits[arrayIdx] & bit) != 0;
72 int arrayIdx = idx >> 5;
76 bits[arrayIdx] |= bit;
78 bits[arrayIdx] &= ~bit;
89 int arrayIdx = idx >> 5;
91 bits[arrayIdx] |= bit;
101 int arrayIdx = idx >> 5;
103 bits[arrayIdx] &= ~bit;
170 for (int arrayIdx = idx >> 5; arrayIdx < len; arrayIdx++)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Bits.java 59 int arrayIdx = idx >> 5;
61 return (bits[arrayIdx] & bit) != 0;
72 int arrayIdx = idx >> 5;
76 bits[arrayIdx] |= bit;
78 bits[arrayIdx] &= ~bit;
89 int arrayIdx = idx >> 5;
91 bits[arrayIdx] |= bit;
101 int arrayIdx = idx >> 5;
103 bits[arrayIdx] &= ~bit;
170 for (int arrayIdx = idx >> 5; arrayIdx < len; arrayIdx++)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 102 Location(unsigned array, unsigned arrayIdx, unsigned i, unsigned c)
103 : array(array), arrayIdx(arrayIdx), i(i), c(c) { }
105 : array(l.array), arrayIdx(l.arrayIdx), i(l.i), c(l.c) { }
110 array == l.array && arrayIdx == l.arrayIdx && i == l.i && c == l.c;
116 arrayIdx != l.arrayIdx ? arrayIdx < l.arrayIdx
    [all...]
nv50_ir_build_util.cpp 454 BuildUtil::DataArray::setup(unsigned array, unsigned arrayIdx,
459 this->arrayIdx = arrayIdx;
nv50_ir_from_tgsi.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 102 Location(unsigned array, unsigned arrayIdx, unsigned i, unsigned c)
103 : array(array), arrayIdx(arrayIdx), i(i), c(c) { }
105 : array(l.array), arrayIdx(l.arrayIdx), i(l.i), c(l.c) { }
110 array == l.array && arrayIdx == l.arrayIdx && i == l.i && c == l.c;
116 arrayIdx != l.arrayIdx ? arrayIdx < l.arrayIdx
    [all...]
nv50_ir_build_util.cpp 454 BuildUtil::DataArray::setup(unsigned array, unsigned arrayIdx,
459 this->arrayIdx = arrayIdx;
nv50_ir_from_tgsi.cpp     [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 661 if (int64_t arrayIdx = cast<ConstantInt>(Indices[CurIDX])->getSExtValue())
662 Result += (uint64_t)arrayIdx * getTypeAllocSize(Ty);
  /dalvik/libdex/
DexSwapVerify.cpp 260 u4 arrayIdx = typeIdx >> 5;
262 u4* element = &state->pDefinedClassBits[arrayIdx];
    [all...]

Completed in 294 milliseconds