HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 301 - 325 of 960) sorted by null

<<11121314151617181920>>

  /external/stlport/src/
cxa.c 61 size_t idx; member in struct:exit_function_list
121 for (i = 0; i < l->idx; ++i)
124 if ( i < l->idx )
127 if (l->idx < sizeof (l->fns) / sizeof (l->fns[0])) {
128 i = l->idx++;
139 l->idx = 1;
174 for (f = &funcs->fns[funcs->idx - 1]; f >= &funcs->fns[0]; --f) {
  /frameworks/base/libs/rs/java/Film/res/raw/
filmimage.c 16 int dx, dy, idx; local
47 idx = newPart * 5 + 1;
48 storeI32(con, 2, idx, dx);
49 storeI32(con, 2, idx + 1, dy);
50 storeI32(con, 2, idx + 2, maxLife);
51 storeI32(con, 2, idx + 3, x << 16);
52 storeI32(con, 2, idx + 4, y << 16);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp 72 int idx; local
78 for (idx = 0; idx < nLayers; idx++)
80 decCtrl->volbuf[idx] = volbuf[idx];
81 decCtrl->volbuf_size[idx] = volbuf_size[idx];
145 for (idx = 0; idx < nLayers; idx++
529 int idx; local
555 int idx; local
769 int idx; local
876 int idx = -1; local
1036 int idx; local
1245 int idx; local
    [all...]
  /external/opencore/baselibs/media_data_structures/src/
access_unit.cpp 132 BufferState * AccessUnit::GetBufferState(const uint32 idx)const
134 return rep->GetBufferState(idx);
161 bool AccessUnit::seek(int & idx, int & offset, uint8 * & ptr, bool & boundaryReached,
164 return rep->seek(idx, offset, ptr, boundaryReached, delta_in_bytes);
168 bool AccessUnit::match_bit_pattern_no_state(const int idx, const int offset, const uint8 * pattern,
171 return rep->match_bit_pattern_no_state(idx, offset, pattern, pattern_size_in_bits);
175 int32 AccessUnit::match_bit_pattern_with_state(const int32 idx, const int32 offset, const uint8 * pattern,
178 return rep->match_bit_pattern_with_state(idx, offset, pattern, pattern_size_in_bits, state);
186 BufferFragment * AccessUnit::GetMediaFragment(const uint32 idx) const
188 return rep->GetMediaFragment(idx);
    [all...]
access_unit.h 69 OSCL_IMPORT_REF BufferState * GetBufferState(const uint32 idx)const;
72 OSCL_IMPORT_REF BufferFragment * GetMediaFragment(const uint32 idx)const;
99 int32 match_bit_pattern_with_state(const int32 idx, const int32 offset, const uint8 * pattern,
106 // else return true and change idx, offset and ptr to the new position.
109 OSCL_IMPORT_REF bool seek(int & idx, int & offset, uint8 * & ptr, bool & boundaryReached,
117 OSCL_IMPORT_REF bool match_bit_pattern_no_state(const int idx, const int offset, const uint8 * pattern,
  /external/freetype/src/base/
ftdebug.c 114 FT_Trace_Get_Name( FT_Int idx )
119 if ( idx < max )
120 return ft_trace_toggles[idx];
235 FT_Trace_Get_Name( FT_Int idx )
237 FT_UNUSED( idx );
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_file.c 65 int idx; local
73 for (idx = 0; idx < strLength; ++idx)
308 int idx; local
313 for (idx = 0; idx < strLength; ++idx)
315 if (ent->d_name[idx] != strData[idx])
    [all...]
  /external/icu4c/test/cintltst/
stdnmtst.c 175 int32_t idx, len, repeatTimes = 3; local
191 for (idx = 0; idx < enumCount; idx++) {
193 testName = expected[idx];
195 || len != (int32_t)uprv_strlen(expected[idx]))
198 idx, enumName, testName, len, u_errorName(err));
226 int32_t idx, repeatTimes = 3; local
243 for (idx = 0; idx < enumCount; idx++)
    [all...]
cldrtest.c 35 int32_t idx, graphmeSize; local
44 for (idx = 0; idx < origItemCount; idx++) {
45 graphmeSize = uset_getItem(origSet, idx,
121 int32_t idx; local
134 for (idx = 0; idx < minSize && sameArray; idx++) {
135 if (subRootBundleArr[idx] != subBundleArr[idx])
170 int32_t idx; local
579 int32_t idx; local
646 int32_t idx; local
671 int32_t idx; local
950 int32_t idx; local
    [all...]
  /dalvik/vm/analysis/
DexVerify.c 69 u4 idx; local
84 for (idx = 0; idx < count; idx++) {
89 pClassDef = dexGetClassDef(pDexFile, idx);
345 u4 idx; local
348 idx = decInsn.vB; // 2nd item
349 if (idx >= pDvmDex->pHeader->typeIdsSize) {
351 idx, pDvmDex->pHeader->typeIdsSize);
355 classDescriptor = dexStringByTypeIdx(pDvmDex->pDexFile, idx);
375 u4 idx; local
415 u4 idx; local
439 u4 idx; local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
BufferedBlockCipher.java 47 int idx = name.indexOf('/') + 1; local
49 pgpCFB = (idx > 0 && name.startsWith("PGP", idx));
57 partialBlockOkay = (idx > 0 && (name.startsWith("CFB", idx) || name.startsWith("OFB", idx) || name.startsWith("OpenPGP", idx) || name.startsWith("SIC", idx) || name.startsWith("GCTR", idx)));
  /dalvik/libdex/
DexFile.h 612 DEX_INLINE const DexStringId* dexGetStringId(const DexFile* pDexFile, u4 idx) {
613 assert(idx < pDexFile->pHeader->stringIdsSize);
614 return &pDexFile->pStringIds[idx];
617 DEX_INLINE const char* dexStringById(const DexFile* pDexFile, u4 idx) {
618 const DexStringId* pStringId = dexGetStringId(pDexFile, idx);
624 const char* dexStringAndSizeById(const DexFile* pDexFile, u4 idx,
628 DEX_INLINE const DexTypeId* dexGetTypeId(const DexFile* pDexFile, u4 idx) {
629 assert(idx < pDexFile->pHeader->typeIdsSize);
630 return &pDexFile->pTypeIds[idx];
637 DEX_INLINE const char* dexStringByTypeIdx(const DexFile* pDexFile, u4 idx) {
    [all...]
  /external/strace/
bjm.c 137 size_t idx; local
144 for (idx=0; idx<ret; idx++) {
145 if (idx!=0)
162 size_t idx; local
169 for (idx=0; idx<ret; idx++) {
  /frameworks/base/awt/java/awt/image/
SampleModel.java 146 int idx = 0; local
163 bdata[idx++] = bbuf[n];
185 sdata[idx++] = sbuf[n];
206 idata[idx++] = ibuf[n];
227 fdata[idx++] = fbuf[n];
248 ddata[idx++] = dbuf[n];
298 int idx = 0; local
306 bbuf[n] = ((byte[])obj)[idx++];
320 sbuf[n] = ((short[])obj)[idx++];
332 ibuf[n] = ((int[])obj)[idx++]
628 int idx = 0; local
668 int idx = 0; local
703 int idx = 0; local
743 int idx = 0; local
778 int idx = 0; local
818 int idx = 0; local
868 int idx = 0; local
905 int idx = 0; local
936 int idx = 0; local
973 int idx = 0; local
1004 int idx = 0; local
1041 int idx = 0; local
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ProgramVertex.java 68 int idx = 0; local
71 tmp[idx++] = 0;
72 tmp[idx++] = mInputs[i].mID;
75 tmp[idx++] = 1;
76 tmp[idx++] = mOutputs[i].mID;
79 tmp[idx++] = 2;
80 tmp[idx++] = mConstants[i].mID;
82 tmp[idx++] = 3;
83 tmp[idx++] = mTextureCount;
  /external/elfutils/lib/
fixedsizehash.h 124 size_t idx = 1 + hval % htab->nslots; local
126 if (htab->table[idx].hval != 0)
131 if (htab->table[idx].hval == hval
132 && COMPARE (data, ENTRYP (htab->table[idx])) == 0)
133 return &htab->table[idx];
140 if (idx <= hash)
141 idx = htab->nslots + idx - hash;
143 idx -= hash;
145 if (htab->table[idx].hval == hva
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
dec_alg_codebook.cpp 195 int32 mask, idx; local
204 idx = index & mask;
213 dec_2p_2N1(idx, (int16)(N - 1), j, pos);
216 tmp = N << 1; /* idx = (index >> (2*N)) & mask; */
217 idx = (index >> tmp) & mask;
219 dec_1p_N1(idx, N, offset, pos + 2);
232 int32 mask, idx; local
239 idx = index & mask;
248 dec_2p_2N1(idx, (int16)(N - 1), j, pos);
253 idx = (index >> (N << 1)) & mask; /* idx = (index >> (2*N)) & mask; *
319 int32 idx; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
dec_alg_codebook.cpp 195 int32 mask, idx; local
204 idx = index & mask;
213 dec_2p_2N1(idx, (int16)(N - 1), j, pos);
216 tmp = N << 1; /* idx = (index >> (2*N)) & mask; */
217 idx = (index >> tmp) & mask;
219 dec_1p_N1(idx, N, offset, pos + 2);
232 int32 mask, idx; local
239 idx = index & mask;
248 dec_2p_2N1(idx, (int16)(N - 1), j, pos);
253 idx = (index >> (N << 1)) & mask; /* idx = (index >> (2*N)) & mask; *
319 int32 idx; local
    [all...]
  /external/icu4c/io/
ustream.cpp 82 int32_t idx = 0; local
131 buffer[idx++] = ch;
132 while (idx > 0) {
133 stream.putback(buffer[--idx]);
153 idx = 0;
156 buffer[idx++] = ch;
  /system/core/nexus/
InterfaceConfig.cpp 58 void InterfaceConfig::setDns(int idx, struct in_addr *addr) {
59 memcpy(&mDns[idx], addr, sizeof(struct in_addr));
86 int InterfaceConfig::InterfaceDnsProperty::set(int idx, struct in_addr *value) {
87 memcpy(&mCfg->mDns[idx], value, sizeof(struct in_addr));
90 int InterfaceConfig::InterfaceDnsProperty::get(int idx, struct in_addr *buf) {
91 memcpy(buf, &mCfg->mDns[idx], sizeof(struct in_addr));
  /external/opencore/oscl/oscl/osclutil/src/
oscl_media_data.h 176 BufferFragment * GetFragment(const int32 idx);
178 BufferState * GetBufferState(const int32 idx);
195 // BufferFragment * GetFragment(const uint32 idx) const;
261 template <class ChainClass, uint32 max_frags> inline BufferFragment * BufFragGroup<ChainClass, max_frags> :: GetFragment(const int32 idx)
263 if (idx < (int)num_fragments && idx >= 0)
265 return & fragments[idx];
273 template <class ChainClass, uint32 max_frags> inline BufferState * BufFragGroup<ChainClass, max_frags> :: GetBufferState(const int32 idx)
275 if (idx < (int)num_fragments && idx >= 0
    [all...]
  /dalvik/vm/
IndirectRefTable.c 95 * Make sure that the entry at "idx" is correctly paired with "iref".
97 static bool checkEntry(IndirectRefTable* pRef, IndirectRef iref, int idx)
99 Object* obj = pRef->table[idx];
100 IndirectRef checkRef = dvmObjectToIndirectRef(pRef, obj, idx, pRef->kind);
230 int idx = dvmIndirectRefToIndex(iref); local
236 if (idx >= topIndex) {
239 idx, topIndex);
243 Object* obj = pRef->table[idx];
248 if (!checkEntry(pRef, iref, idx))
279 int idx = dvmIndirectRefToIndex(iref) local
    [all...]
  /external/opencore/fileformats/mp4/parser/src/
trackfragmentrandomaccess.cpp 215 for (uint32 idx = 0; idx < _entry_count ; idx++)
223 PVMF_MP4FFPARSER_LOGMEDIASAMPELSTATEVARIABLES((0, "TrackFragmentRandom Access Point _sample_number[%d] =%d", idx, pTFRAEntries->_sample_number));
224 PVMF_MP4FFPARSER_LOGMEDIASAMPELSTATEVARIABLES((0, "TrackFragmentRandom Access Point TimeStamp [%d] =%d", idx, pTFRAEntries->getTimeStamp()));
225 PVMF_MP4FFPARSER_LOGMEDIASAMPELSTATEVARIABLES((0, "TrackFragmentRandom Access Point MoofOffset [%d] =%d", idx, pTFRAEntries->getTimeMoofOffset()));
226 PVMF_MP4FFPARSER_LOGMEDIASAMPELSTATEVARIABLES((0, "TrackFragmentRandom Access Point _traf_number [%d] =%d", idx, pTFRAEntries->_traf_number));
227 PVMF_MP4FFPARSER_LOGMEDIASAMPELSTATEVARIABLES((0, "TrackFragmentRandom Access Point _trun_number [%d] =%d", idx, pTFRAEntries->_trun_number));
  /external/openssl/crypto/ecdh/
ecdh.h 99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);
  /external/openssl/include/openssl/
ecdh.h 99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);

Completed in 1202 milliseconds

<<11121314151617181920>>