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

<<11121314151617181920>>

  /external/dropbear/libtomcrypt/src/modes/f8/
f8_test_mode.c 43 int err, idx;
45 idx = find_cipher("aes");
46 if (idx == -1) {
47 idx = find_cipher("rijndael");
48 if (idx == -1) return CRYPT_NOP;
52 if ((err = f8_start(idx, IV, key, sizeof(key), salt, sizeof(salt), 0, &f8)) != CRYPT_OK) {
  /external/elfutils/libelf/
elf_strptr.c 29 elf_strptr (elf, idx, offset)
31 size_t idx;
55 if (idx < runp->max)
57 if (idx < runp->cnt)
58 strscn = &runp->data[idx];
67 idx -= runp->max;
  /external/skia/include/core/
SkTDStack.h 60 const T& index(int idx) const
62 SkASSERT(fRec && fCount > idx);
63 return fRec->fSlots[fCount - idx - 1];
65 T& index(int idx)
67 SkASSERT(fRec && fCount > idx);
68 return fRec->fSlots[fCount - idx - 1];
  /frameworks/base/include/utils/
AssetDir.h 53 const String8& getFileName(int idx) {
54 return mFileInfo->itemAt(idx).getFileName();
56 const String8& getSourceName(int idx) {
57 return mFileInfo->itemAt(idx).getSourceName();
63 FileType getFileType(int idx) {
64 return mFileInfo->itemAt(idx).getFileType();
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 314 int idx = bytes.getUnsignedByte(offset + 1); local
315 Constant cst = pool.get(idx);
322 int idx = bytes.getUnsignedShort(offset + 1); local
323 Constant cst = pool.get(idx);
330 int idx = bytes.getUnsignedShort(offset + 1); local
331 Constant cst = pool.get(idx);
336 int idx = bytes.getUnsignedByte(offset + 1); local
337 visitor.visitLocal(ByteOps.ILOAD, offset, 2, idx,
342 int idx = bytes.getUnsignedByte(offset + 1); local
343 visitor.visitLocal(ByteOps.ILOAD, offset, 2, idx,
348 int idx = bytes.getUnsignedByte(offset + 1); local
354 int idx = bytes.getUnsignedByte(offset + 1); local
360 int idx = bytes.getUnsignedByte(offset + 1); local
369 int idx = opcode - ByteOps.ILOAD_0; local
378 int idx = opcode - ByteOps.LLOAD_0; local
387 int idx = opcode - ByteOps.FLOAD_0; local
396 int idx = opcode - ByteOps.DLOAD_0; local
405 int idx = opcode - ByteOps.ALOAD_0; local
447 int idx = bytes.getUnsignedByte(offset + 1); local
453 int idx = bytes.getUnsignedByte(offset + 1); local
459 int idx = bytes.getUnsignedByte(offset + 1); local
465 int idx = bytes.getUnsignedByte(offset + 1); local
471 int idx = bytes.getUnsignedByte(offset + 1); local
480 int idx = opcode - ByteOps.ISTORE_0; local
489 int idx = opcode - ByteOps.LSTORE_0; local
498 int idx = opcode - ByteOps.FSTORE_0; local
507 int idx = opcode - ByteOps.DSTORE_0; local
516 int idx = opcode - ByteOps.ASTORE_0; local
633 int idx = bytes.getUnsignedByte(offset + 1); local
695 int idx = bytes.getUnsignedByte(offset + 1); local
748 int idx = bytes.getUnsignedShort(offset + 1); local
754 int idx = bytes.getUnsignedShort(offset + 1); local
769 int idx = bytes.getUnsignedShort(offset + 1); local
1072 int idx = bytes.getUnsignedShort(offset + 2); local
    [all...]
  /dalvik/vm/
Hash.h 185 int idx; member in struct:HashIter
188 int i = pIter->idx +1;
195 pIter->idx = i;
199 pIter->idx = -1;
203 return (pIter->idx >= pIter->pHashTable->tableSize);
206 assert(pIter->idx >= 0 && pIter->idx < pIter->pHashTable->tableSize);
207 return pIter->pHashTable->pEntries[pIter->idx].data;
  /external/freetype/src/truetype/
ttgload.h 39 FT_UInt idx,
46 FT_UInt idx,
  /external/openssl/crypto/x509/
x509_trs.c 114 int idx; local
116 idx = X509_TRUST_get_by_id(id);
117 if(idx == -1) return default_trust(id, x, flags);
118 pt = X509_TRUST_get0(idx);
128 X509_TRUST * X509_TRUST_get0(int idx)
130 if(idx < 0) return NULL;
131 if(idx < (int)X509_TRUST_COUNT) return trstandard + idx;
132 return sk_X509_TRUST_value(trtable, idx - X509_TRUST_COUNT);
138 int idx; local
161 int idx; local
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/output/
ProxyOutputStream.java 46 * @param idx the byte to write
49 public void write(int idx) throws IOException {
50 out.write(idx);
NullWriter.java 44 * @param idx The character to write
46 public void write(int idx) {
  /system/core/nexus/
PropertyManager.h 45 int doSet(Property *p, int idx, const char *value);
46 int doGet(Property *p, int idx, char *buffer, size_t max);
  /frameworks/base/core/jni/
android_util_XmlBlock.cpp 193 jint token, jint idx)
201 return (jint)st->getAttributeNamespaceID(idx);
205 jint token, jint idx)
213 return (jint)st->getAttributeNameID(idx);
217 jint token, jint idx)
225 return (jint)st->getAttributeNameResID(idx);
229 jint token, jint idx)
237 return (jint)st->getAttributeDataType(idx);
241 jint token, jint idx)
249 return (jint)st->getAttributeData(idx);
284 jint idx = (jint)st->indexOfAttribute(ns16, nsLen, name16, nameLen); local
303 ssize_t idx = st->indexOfID(); local
316 ssize_t idx = st->indexOfClass(); local
329 ssize_t idx = st->indexOfStyle(); local
    [all...]
  /external/dropbear/libtomcrypt/src/math/fp/
ltc_ecc_fp_mulmod.c 1224 int idx, err; local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
BitSet.java 784 int idx = actualArrayLength - 1;
785 while (idx >= 0 && bits[idx] == 0) {
786 --idx;
788 actualArrayLength = idx + 1;
789 if (idx == -1) {
793 long val = bits[idx];
797 return (idx << OFFSET) + i + 1;
804 int idx = actualArrayLength - 1;
805 while (idx >= 0 && bits[idx] == 0)
    [all...]
  /external/freetype/src/sfnt/
ttpost.h 34 FT_UInt idx,
  /external/iproute2/ip/
tunnel.h 30 char * tnl_ioctl_get_ifname(int idx);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/
ol_ltp.h 113 Word16 idx, /* i : index */
pitch_ol.h 110 Word16 idx, /* i : frame index */
  /external/opencore/fileformats/mp4/parser/src/
trackfragmentatom.cpp 203 for (uint32 idx = 0; idx < trackExtendAtomVec->size(); idx++)
205 TrackExtendsAtom* pTrackExtendAtom = (*trackExtendAtomVec)[idx];
222 for (uint32 idx = 0; idx < trackExtendAtomVec->size(); idx++)
224 TrackExtendsAtom* pTrackExtendAtom = (*trackExtendAtomVec)[idx];
335 for (uint32 idx = 0; idx < trackExtendAtomVec->size(); idx++
    [all...]
  /frameworks/base/libs/rs/
rsElement.h 49 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
50 const char * getFieldName(uint32_t idx) const {return mFields[idx].name.string();}
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
ol_ltp.h 113 Word16 idx, /* i : index */
pitch_ol.h 110 Word16 idx, /* i : frame index */
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmcdc.h 61 #define CDC_SET_IF_IDX(hdr, idx) \
62 ((hdr)->flags = (((hdr)->flags & ~CDCF_IOC_IF_MASK) | ((idx) << CDCF_IOC_IF_SHIFT)))
92 #define BDC_SET_IF_IDX(hdr, idx) \
93 ((hdr)->flags2 = (((hdr)->flags2 & ~BDC_FLAG2_IF_MASK) | ((idx) << BDC_FLAG2_IF_SHIFT)))
  /build/tools/soslim/
soslim.c 51 size_t idx; /* general-purporse section index */ local
142 shdr_info[cnt].idx = 1;
226 shdr_info[cnt].idx = 0;
233 shdr_info[cnt].idx = 0;
240 shdr_info[shdr_info[cnt].shdr.sh_link].idx = 0;
254 shdr_info[0].idx = 2;
266 if (shdr_info[cnt].idx == 0) {
273 && shdr_info[shdr_info[cnt].shdr.sh_info].idx != 0) {
280 if (shdr_info[cnt].idx == 1) {
362 if (shdr_info[scnidx].idx == 0
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
pvdec_api.cpp 73 int idx; local
79 for (idx = 0; idx < nLayers; idx++)
81 decCtrl->volbuf[idx] = volbuf[idx];
82 decCtrl->volbuf_size[idx] = volbuf_size[idx];
146 for (idx = 0; idx < nLayers; idx++
530 int idx; local
556 int idx; local
770 int idx; local
877 int idx = -1; local
1037 int idx; local
1246 int idx; local
    [all...]

Completed in 962 milliseconds

<<11121314151617181920>>