HomeSort by relevance Sort by last modified time
    Searched defs:index (Results 251 - 275 of 4163) sorted by null

<<11121314151617181920>>

  /external/skia/tests/
PathOpsDRectTest.cpp 42 size_t index; local
44 for (index = 0; index < lineTests_count; ++index) {
45 const SkDLine& line = lineTests[index];
61 for (index = 0; index < quadTests_count; ++index) {
62 const SkDQuad& quad = quadTests[index];
81 for (index = 0; index < cubicTests_count; ++index)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
EnumEncodedValue.java 41 * Constructs a new <code>EnumEncodedValue</code> by reading the field index from the given <code>Input</code>
49 int index = (int) EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1)); local
50 value = dexFile.FieldIdsSection.getItemByIndex(index);
FieldEncodedValue.java 41 * Constructs a new <code>FieldEncodedValue</code> by reading the field index from the given <code>Input</code>
49 int index = (int) EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1)); local
50 value = dexFile.FieldIdsSection.getItemByIndex(index);
MethodEncodedValue.java 41 * Constructs a new <code>MethodEncodedValue</code> by reading the method index from the given <code>Input</code>
49 int index = (int) EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1)); local
50 value = dexFile.MethodIdsSection.getItemByIndex(index);
StringEncodedValue.java 42 * Constructs a new <code>StringEncodedValue</code> by reading the string index from the given <code>Input</code>
50 int index = (int)EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1)); local
51 value = dexFile.StringIdsSection.getItemByIndex(index);
TypeEncodedValue.java 41 * Constructs a new <code>TypeEncodedValue</code> by reading the type index from the given <code>Input</code>
49 int index = (int) EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1)); local
50 value = dexFile.TypeIdsSection.getItemByIndex(index);
  /frameworks/av/media/libnbaio/
SourceAudioBufferProvider.cpp 35 ssize_t index = source->negotiate(NULL, 0, counterOffers, numCounterOffers); local
36 ALOG_ASSERT(index == (ssize_t) NEGOTIATE && numCounterOffers > 0);
38 index = source->negotiate(counterOffers, 1, NULL, numCounterOffers);
39 ALOG_ASSERT(index == 0);
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_plsf_3.cpp 174 Word16 index; local
192 index =
200 index,
299 index = *indice++;
301 /* temp = 3*index; */
302 temp = index + (index << 1);
315 index = *indice++;
319 index <<= 1;
322 /* temp = 3*index */
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cl_ltp.cpp 515 Word16 index;
526 T0_frac, &resu3, &index);
528 *(*anap)++ = index;
642 Word16 index; local
668 &index,
671 *(*anap)++ = index;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Integer.c 83 OMX_INT outer, inner, count,index; local
141 for (outer = 0, count = 0, index = 0, candSAD = 0;
143 outer++, index += refWidth - BlockSize)
145 for (inner = 0; inner < BlockSize; inner++, count++, index++)
147 candSAD += armAbs (pTempSrcRefBuf[index] - pSrcCurrBuf[count]);
omxVCM4P2_DecodePadMV_PVOP.c 95 OMX_S8 scaleFactor, index; local
143 index = armUnPackVLC32(ppBitStream, pBitOffset,
145 armRetDataErrIf(index == -1, OMX_Sts_Err);
147 mvHorData = index - 32;
156 index = armUnPackVLC32(ppBitStream, pBitOffset, armVCM4P2_aVlcMVD);
157 armRetDataErrIf(index == -1, OMX_Sts_Err);
159 mvVerData = index - 32;
omxVCM4P2_EncodeMV.c 42 * pBitOffset - index of the first free (next available) bit in the stream
61 * pBitOffset - updated index of the next available bit position in stream
91 OMX_U8 scaleFactor, index; local
181 /* The index is actually calculate as
182 index = ((float) (mvHorData/2) + 16) * 2,
186 index = mvHorData + 32;
187 armPackVLC32 (ppBitStream, pBitOffset, armVCM4P2_aVlcMVD[index]);
193 /* The index is actually calculate as
194 index = ((float) (mvVerData/2) + 16) * 2,
198 index = mvVerData + 32
    [all...]
omxVCM4P2_MCReconBlock.c 188 OMX_U8 x,y,count,index; local
191 for (y = 0, count = 0, index = 0; y < 8; y++,index += (srcStep -8), count += (dstStep - 8))
193 for (x = 0; x < 8; x++, count++,index++)
195 pDst[count] = pSrc[index];
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_neighbour.h 58 u8 index; member in struct:__anon31712
  /frameworks/av/media/libstagefright/foundation/
AAtomizer.cpp 41 size_t index = AAtomizer::Hash(name) % n; local
42 List<AString> &entry = mAtoms.editItemAt(index);
  /frameworks/av/media/libstagefright/wifi-display/
Parameters.cpp 80 ssize_t index = mDict.indexOfKey(key); local
82 if (index < 0) {
88 *value = mDict.valueAt(index);
  /frameworks/base/libs/hwui/utils/
TinyHashMap.h 41 ssize_t index = mTable.find(-1, hash, key); local
42 if (index != -1) {
43 mTable.removeAt(index);
55 ssize_t index = mTable.find(-1, hash, key); local
56 if (index == -1) {
59 outValue = mTable.entryAt(index).value;
  /frameworks/base/media/java/android/mtp/
MtpPropertyList.java 54 int index = mCount++; local
58 mObjectHandles[index] = handle;
59 mPropertyCodes[index] = property;
60 mDataTypes[index] = type;
61 mLongValues[index] = value;
65 int index = mCount++; local
69 mObjectHandles[index] = handle;
70 mPropertyCodes[index] = property;
71 mDataTypes[index] = MtpConstants.TYPE_STR;
72 mStringValues[index] = value
    [all...]
  /frameworks/base/sax/java/android/sax/
Children.java 32 int index = hash & 15; local
34 Child current = children[index];
38 children[index] = current;
67 int index = hash & 15; local
69 Child current = children[index];
  /frameworks/base/services/java/com/android/server/am/
TaskAccessInfo.java 27 int index; field in class:TaskAccessInfo.SubTask
  /frameworks/base/tools/layoutlib/bridge/src/com/android/internal/util/
XmlUtils_Delegate.java 43 int index = 0; local
49 index++;
52 if ('0' == nm.charAt(index)) {
54 if (index == (len - 1))
57 char c = nm.charAt(index + 1);
60 index += 2;
63 index++;
67 else if ('#' == nm.charAt(index)) {
68 index++;
72 return ((int)Long.parseLong(nm.substring(index), base)) * sign
    [all...]
  /frameworks/native/libs/binder/
PermissionCache.cpp 43 ssize_t index = mCache.indexOf(e); local
44 if (index >= 0) {
45 *granted = mCache.itemAt(index).granted;
55 ssize_t index = mPermissionNamesPool.indexOf(permission); local
56 if (index > 0) {
57 e.name = mPermissionNamesPool.itemAt(index);
66 index = mCache.indexOf(e);
67 if (index < 0) {
  /frameworks/native/opengl/libagl/
BufferObjectManager.cpp 91 int32_t index = mBuffers.indexOfKey(t); local
92 if (index >= 0) {
93 buffer_t* bo = mBuffers.valueAt(index);
95 mBuffers.removeItemsAt(index);
  /frameworks/native/services/sensorservice/
BatteryService.cpp 66 ssize_t index = mActivations.indexOf(key); local
67 if (index < 0) {
68 index = mActivations.add(key);
70 Info& info(mActivations.editItemAt(index));
77 ssize_t index = mActivations.indexOf(Info(uid, handle)); local
78 if (index < 0) return false;
79 Info& info(mActivations.editItemAt(index));
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
LineVerifier.java 28 private int index; field in class:LineVerifier
43 if (index >= mLineVerifierElemList.size()) {
44 TestCase.fail("Insufficient number of LineVerifier (" + index + ")");
47 final LineVerifierElem lineVerifier = mLineVerifierElemList.get(index);
50 index++;

Completed in 3268 milliseconds

<<11121314151617181920>>