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

<<11121314151617181920>>

  /external/dropbear/libtomcrypt/src/mac/omac/
omac_test.c 76 int x, err, idx;
81 if ((idx = find_cipher("aes")) == -1) {
82 if ((idx = find_cipher("rijndael")) == -1) {
89 if ((err = omac_memory(idx, tests[x].key, tests[x].keylen, tests[x].msg, tests[x].msglen, out, &len)) != CRYPT_OK) {
  /external/dropbear/libtomcrypt/src/mac/xcbc/
xcbc_test.c 100 int err, x, idx;
103 if ((idx = find_cipher("aes")) == -1) {
104 if ((idx = find_cipher("rijndael")) == -1) {
111 if ((err = xcbc_memory(idx, tests[x].K, 16, tests[x].M, tests[x].msglen, T, &taglen)) != CRYPT_OK) {
  /external/dropbear/libtomcrypt/src/modes/ctr/
ctr_test.c 51 int idx, err, x;
56 if ((idx = find_cipher("aes")) == -1) {
57 if ((idx = find_cipher("rijndael")) == -1) {
63 if ((err = ctr_start(idx, tests[x].IV, tests[x].key, tests[x].keylen, 0, CTR_COUNTER_BIG_ENDIAN|LTC_CTR_RFC3686, &ctr)) != CRYPT_OK) {
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_ansi_x963_export.c 41 if (ltc_ecc_is_valid_idx(key->idx) == 0) {
ecc_ansi_x963_import.c 70 /* determine the idx */
80 /* set the idx */
81 key->idx = x;
88 key->idx = -1;
  /external/e2fsprogs/debugfs/
set_fields.c 188 char *arg, *delim, *idx, *tmp; local
206 idx = strchr(arg, '[');
207 if (idx) {
208 *idx++ = 0;
209 delim = idx + strlen(idx) - 1;
210 if (!*idx || *delim != ']')
211 idx = 0;
218 if (idx) {
219 array_idx = strtol(idx, &tmp, 0)
408 char name[40], idx[40]; local
    [all...]
  /external/elfcopy/
elfcopy.h 34 new file, the idx field has the following meaning:
39 Elf32_Word idx; member in struct:shdr_info_t
  /external/freetype/include/freetype/internal/services/
svsfnt.h 59 FT_UInt idx,
  /external/openssl/crypto/asn1/
x_x509.c 159 int X509_set_ex_data(X509 *r, int idx, void *arg)
161 return(CRYPTO_set_ex_data(&r->ex_data,idx,arg));
164 void *X509_get_ex_data(X509 *r, int idx)
166 return(CRYPTO_get_ex_data(&r->ex_data,idx));
  /external/openssl/crypto/ecdh/
ech_lib.c 231 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg)
237 return(CRYPTO_set_ex_data(&ecdh->ex_data,idx,arg));
240 void *ECDH_get_ex_data(EC_KEY *d, int idx)
246 return(CRYPTO_get_ex_data(&ecdh->ex_data,idx));
  /external/openssl/crypto/ecdsa/
ecs_lib.c 245 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg)
251 return(CRYPTO_set_ex_data(&ecdsa->ex_data,idx,arg));
254 void *ECDSA_get_ex_data(EC_KEY *d, int idx)
260 return(CRYPTO_get_ex_data(&ecdsa->ex_data,idx));
ecdsa.h 241 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg);
242 void *ECDSA_get_ex_data(EC_KEY *d, int idx);
  /external/openssl/crypto/txt_db/
txt_db.h 102 char **TXT_DB_get_by_index(TXT_DB *db, int idx, char **value);
txt_db.c 195 char **TXT_DB_get_by_index(TXT_DB *db, int idx, char **value)
200 if (idx >= db->num_fields)
205 lh=db->index[idx];
219 LHASH *idx; local
228 if ((idx=lh_new(hash,cmp)) == NULL)
238 if ((r=lh_insert(idx,r)) != NULL)
243 lh_free(idx);
248 db->index[field]=idx;
  /external/openssl/crypto/x509v3/
pcy_cache.c 264 int idx; local
267 idx = sk_X509_POLICY_DATA_find(cache->data, &tmp);
268 if (idx == -1)
270 return sk_X509_POLICY_DATA_value(cache->data, idx);
  /external/openssl/include/openssl/
txt_db.h 102 char **TXT_DB_get_by_index(TXT_DB *db, int idx, char **value);
ecdsa.h 241 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg);
242 void *ECDSA_get_ex_data(EC_KEY *d, int idx);
  /external/srec/portable/src/
pmemory.c 179 int idx = initialIdx; local
183 if (gMemoryMap[idx].tag == NULL)
186 gMemoryMap[idx].tag = key;
187 gMemoryMap[idx].curAlloc = 0;
188 gMemoryMap[idx].maxAlloc = 0;
189 gMemoryMap[idx].crc = crc;
190 gMemoryMap[idx].first = NULL;
191 gMemoryMap[idx].last = NULL;
194 pfprintf(gFile, L("pmem|newtag|%s|%d|\n"), key, idx);
196 return idx;
577 int idx; local
    [all...]
  /frameworks/base/libs/rs/
rsVertexArray.h 61 void logAttrib(uint32_t idx, uint32_t slot) const;
  /packages/apps/Email/src/com/android/exchange/adapter/
Serializer.java 187 int idx = 0; local
190 buf[idx++] = (byte) (i & 0x7f);
194 while (idx > 1) {
195 out.write(buf[--idx] | 0x80);
  /system/core/sh/
exec.c 119 shellexec(char **argv, char **envp, const char *path, int idx, int vforked)
130 if (--idx < 0 && pathopt == NULL) {
379 int idx; local
385 idx = cmdp->param.index;
390 } while (--idx >= 0);
430 int idx; local
510 idx = -1;
514 idx++;
528 if (fullname[0] == '/' && idx <= prev) {
529 if (idx < prev
697 int idx; local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
TypeListItem.java 101 int idx = typeIds.indexOf(one); local
103 " " + Hex.u2(idx) + " // " + one.toHuman());
  /development/tools/zoneinfo/
generate 35 cp zoneinfo.dat zoneinfo.idx ../../../bionic/libc/zoneinfo
  /external/icu4c/i18n/
cpdtrans.h 117 * @param idx index into chain, from 0 to <code>getCount() - 1</code>
121 virtual const Transliterator& getTransliterator(int32_t idx) const;
169 virtual void handleTransliterate(Replaceable& text, UTransPosition& idx,
dcfmtsym.cpp 315 int32_t idx; local
317 for (idx = 0; idx < (int32_t)(sizeof(TYPE_MAPPING)/sizeof(TYPE_MAPPING[0])); idx++) {
318 if (TYPE_MAPPING[idx][1] < numberElementsLength) {
319 fSymbols[TYPE_MAPPING[idx][0]].setTo(TRUE, numberElements[TYPE_MAPPING[idx][1]], numberElementsStrLen[TYPE_MAPPING[idx][1]]);

Completed in 902 milliseconds

<<11121314151617181920>>