HomeSort by relevance Sort by last modified time
    Searched refs:arrayIndex (Results 1 - 25 of 29) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/
BitSet.java 167 int arrayIndex = index / 64;
168 if (arrayIndex >= longCount) {
171 return (bits[arrayIndex] & (1L << index)) != 0;
183 int arrayIndex = index / 64;
184 if (arrayIndex >= bits.length) {
185 ensureCapacity(arrayIndex + 1);
187 bits[arrayIndex] |= (1L << index);
188 longCount = Math.max(longCount, arrayIndex + 1);
200 int arrayIndex = index / 64;
201 if (arrayIndex >= longCount)
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
StringWrapper.java 60 int arrayIndex = 0;
66 output = addString(output, str.substring(lineStart, i), arrayIndex++);
69 output = addString(output, str.substring(lineStart, i), arrayIndex++);
74 output = addString(output, str.substring(lineStart), arrayIndex++, output.length+1);
77 if (arrayIndex < output.length) {
78 output[arrayIndex] = null;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelectorList.cpp 65 size_t arrayIndex = 0;
71 memcpy(&m_selectorArray[arrayIndex], currentSelector, sizeof(CSSSelector));
75 ASSERT(!m_selectorArray[arrayIndex].isLastInSelectorList());
77 m_selectorArray[arrayIndex].setNotLastInTagHistory();
78 ++arrayIndex;
80 ASSERT(m_selectorArray[arrayIndex - 1].isLastInTagHistory());
82 ASSERT(flattenedSize == arrayIndex);
83 m_selectorArray[arrayIndex - 1].setLastInSelectorList();
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 132 private int readByte(byte[] constraintData, int arrayIndex) {
134 return (int)constraintData[arrayIndex];
138 byte[] constraintData, int numberOfBytes, int arrayIndex) {
140 for (int j = arrayIndex, i = 0; j < arrayIndex + numberOfBytes; j++,i++) {
  /external/chromium_org/third_party/angle/src/compiler/translator/
UniformHLSL.cpp 185 for (unsigned int arrayIndex = 0; arrayIndex < arraySize; arrayIndex++)
187 interfaceBlocks += interfaceBlockString(interfaceBlock, activeRegister + arrayIndex, arrayIndex);
199 TString UniformHLSL::interfaceBlockString(const TInterfaceBlock &interfaceBlock, unsigned int registerIndex, unsigned int arrayIndex)
201 const TString &arrayIndexString = (arrayIndex != GL_INVALID_INDEX ? Decorate(str(arrayIndex)) : "");
211 interfaceBlockInstanceString(interfaceBlock, arrayIndex) + ";\n";
224 TString UniformHLSL::interfaceBlockInstanceString(const TInterfaceBlock& interfaceBlock, unsigned int arrayIndex)
    [all...]
UniformHLSL.h 30 static TString interfaceBlockInstanceString(const TInterfaceBlock& interfaceBlock, unsigned int arrayIndex);
42 TString interfaceBlockString(const TInterfaceBlock &interfaceBlock, unsigned int registerIndex, unsigned int arrayIndex);
ParseContext.h 152 const TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLoc& arrayIndexLine);
ParseContext.cpp     [all...]
OutputHLSL.cpp     [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Validate.h 35 static bool arrayIndex(GLEScontext * ctx,GLuint index);
GLESv2Validate.cpp 141 bool GLESv2Validate::arrayIndex(GLEScontext * ctx,GLuint index) {
  /frameworks/base/core/java/android/view/inputmethod/
SparseRectFArray.java 267 final int arrayIndex = Arrays.binarySearch(mKeys, index);
268 if (arrayIndex < 0) {
271 final int baseCoordIndex = arrayIndex * 4;
285 final int arrayIndex = Arrays.binarySearch(mKeys, index);
286 if (arrayIndex < 0) {
289 return mFlagsArray[arrayIndex];
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_vector.i 93 public void CopyTo(System.Array array, int arrayIndex)
95 public void CopyTo($typemap(cstype, CTYPE)[] array, int arrayIndex)
98 CopyTo(0, array, arrayIndex, this.Count);
102 public void CopyTo(int index, System.Array array, int arrayIndex, int count)
104 public void CopyTo(int index, $typemap(cstype, CTYPE)[] array, int arrayIndex, int count)
111 if (arrayIndex < 0)
112 throw new ArgumentOutOfRangeException("arrayIndex", "Value is less than zero");
117 if (index+count > this.Count || arrayIndex+count > array.Length)
120 array.SetValue(getitemcopy(index+i), arrayIndex+i);
std_map.i 116 public void CopyTo(System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)>[] array, int arrayIndex) {
119 if (arrayIndex < 0)
120 throw new ArgumentOutOfRangeException("arrayIndex", "Value is less than zero");
123 if (arrayIndex+this.Count > array.Length)
129 array.SetValue(new System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)>(currentKey, this[currentKey]), arrayIndex+i);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCtsHelper.java 52 int arrayIndex = (int) Math.round(arrayCopy.size() * 0.95 + .5) - 1;
54 return arrayCopy.get(arrayIndex);
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeHeader.java 150 int index = arrayIndex(a, o);
154 public final static int arrayIndex(Object[] a, Object o) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
SettingsValues.java 311 final int arrayIndex = Integer.parseInt(currentAutoCorrectionSetting);
312 if (arrayIndex >= 0 && arrayIndex < autoCorrectionThresholdValues.length) {
313 final String val = autoCorrectionThresholdValues[arrayIndex];
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8Binding.cpp 829 void addHiddenValueToArray(v8::Handle<v8::Object> object, v8::Local<v8::Value> value, int arrayIndex, v8::Isolate* isolate)
831 v8::Local<v8::Value> arrayValue = object->GetInternalField(arrayIndex);
834 object->SetInternalField(arrayIndex, arrayValue);
841 void removeHiddenValueFromArray(v8::Handle<v8::Object> object, v8::Local<v8::Value> value, int arrayIndex, v8::Isolate* isolate)
843 v8::Local<v8::Value> arrayValue = object->GetInternalField(arrayIndex);
856 void moveEventListenerToNewWrapper(v8::Handle<v8::Object> object, EventListener* oldValue, v8::Local<v8::Value> newValue, int arrayIndex, v8::Isolate* isolate)
863 removeHiddenValueFromArray(object, oldListenerObject, arrayIndex, isolate);
868 addHiddenValueToArray(object, newValue, arrayIndex, isolate);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
CharInfo.java 573 private static int arrayIndex(int i) {
594 int[] arr = new int[arrayIndex(max - 1) + 1];
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
nv50_ir_lowering_nvc0.cpp 706 Value *arrayIndex = i->tex.target.isArray() ? i->getSrc(arg - 1) : NULL;
709 i->setSrc(0, arrayIndex);
714 if (arrayIndex) {
717 bld.mkCvt(OP_CVT, TYPE_U16, src, sTy, arrayIndex)->saturate = sat;
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_lowering_nvc0.cpp 706 Value *arrayIndex = i->tex.target.isArray() ? i->getSrc(arg - 1) : NULL;
709 i->setSrc(0, arrayIndex);
714 if (arrayIndex) {
717 bld.mkCvt(OP_CVT, TYPE_U16, src, sTy, arrayIndex)->saturate = sat;
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java 142 IntegerValue arrayIndex = stack.ipop();
144 stack.push(arrayReference.arrayLoad(arrayIndex, valueFactory));
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 91 int index = arrayIndex(a, o);
95 public static int arrayIndex(Object[] a, Object o) {
  /external/chromium_org/third_party/angle/src/libGLESv2/
ProgramBinary.cpp 502 unsigned int arrayIndex;
503 arrayIndex = ParseAndStripArrayIndex(&baseName);
509 if (outputVariable.name == baseName && (arrayIndex == GL_INVALID_INDEX || arrayIndex == outputVariable.element))
    [all...]
libGLESv2.cpp     [all...]

Completed in 860 milliseconds

1 2