Searched refs:tmp (Results 151 - 175 of 1738) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Drsa.c245 struct bignum *tmp, *a = NULL, *b = NULL; local
252 tmp = bignum_init();
253 if (tmp == NULL)
256 if (bignum_set_unsigned_bin(tmp, in, inlen) < 0)
258 if (bignum_cmp(key->n, tmp) < 0) {
266 * up calculation. This is equivalent to tmp = tmp^d mod n
282 /* a = tmp^dmp1 mod p */
283 if (bignum_exptmod(tmp, key->dmp1, key->p, a) < 0)
286 /* b = tmp
[all...]
/external/iproute2/tc/
H A Df_flow.c101 __u32 tmp; local
108 if (get_u32(&tmp, argv, 0) == 0)
116 tmp = ntohl(addr.data[0]);
119 tmp = ntohl(addr.data[3]);
127 tmp = -tmp;
128 *addend = tmp;
141 __u32 tmp; local
167 if (get_u32(&tmp, *argv, 0)) {
171 transfer_bitop(&mask, &xor, tmp,
[all...]
/external/dropbear/libtomcrypt/src/prngs/
H A Dfortuna.c68 unsigned char tmp[MAXBLOCKSIZE]; local
77 sha256_done(&md, tmp);
84 if ((err = sha256_done(&prng->fortuna.pool[x], tmp)) != CRYPT_OK) {
85 sha256_done(&md, tmp);
89 if ((err = sha256_process(&md, tmp, 32)) != CRYPT_OK) {
90 sha256_done(&md, tmp);
95 sha256_done(&md, tmp);
119 zeromem(tmp, sizeof(tmp));
133 unsigned char tmp[MAXBLOCKSIZ local
173 unsigned char tmp[2]; local
228 unsigned char tmp[16]; local
287 unsigned char tmp[32]; local
[all...]
/external/openssl/crypto/aes/
H A Daes_ige.c121 aes_block_t tmp, tmp2; local
130 load_block(tmp, in);
132 tmp2.data[n] = tmp.data[n] ^ iv.data[n];
138 iv2 = tmp;
157 aes_block_t tmp; local
162 tmp.data[n] = inp->data[n] ^ iv2p->data[n];
163 AES_decrypt((unsigned char *)tmp.data, (unsigned char *)outp->data, key);
177 aes_block_t tmp, tmp2; local
186 load_block(tmp, in);
187 tmp2 = tmp;
220 unsigned char tmp[AES_BLOCK_SIZE]; local
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dadd.h8 unsigned long tmp = s1; \
15 : "+d" (tmp), "=d" (cc) \
16 : "d" (tmp), "Q" (s2) \
18 printf(#insn " " #CARRY " + %16.16lX + %16.16lX = %16.16lX (cc=%d)\n", s1, s2, tmp, cc); \
23 unsigned long tmp = s1; \
30 : "+d" (tmp), "=d" (cc) \
31 : "d" (tmp), "d" (s2) \
33 printf(#insn " " #CARRY " + %16.16lX + %16.16lX = %16.16lX (cc=%d)\n", s1, s2, tmp, cc); \
38 unsigned long tmp = s1; \
45 : "+d" (tmp), "
[all...]
/external/dropbear/libtomcrypt/testprof/
H A Dkatja_test.c7 unsigned char in[1024], out[1024], tmp[1024]; local
29 mp_to_unsigned_bin(key.N, tmp);
32 fprintf(stderr, "%02x ", tmp[cnt]);
37 mp_to_unsigned_bin(key.p, tmp);
40 fprintf(stderr, "%02x ", tmp[cnt]);
45 mp_to_unsigned_bin(key.q, tmp);
48 fprintf(stderr, "%02x ", tmp[cnt]);
72 DO(katja_decrypt_key(out, len, tmp, &len2, NULL, 0, hash_idx, &stat2, &key));
81 DO(katja_decrypt_key(out, len, tmp, &len2, NULL, 0, hash_idx, &stat, &key));
86 if (len2 != kat_msgsize || memcmp(tmp, i
[all...]
/external/qemu/target-arm/
H A Dneon_helper.c158 uint32_t tmp = (uint32_t)src1 + (uint32_t)src2; \
159 if (tmp != (type)tmp) { \
163 dest = tmp; \
196 int32_t tmp = (uint32_t)src1 + (uint32_t)src2; \
197 if (tmp != (type)tmp) { \
200 tmp = (1 << (sizeof(type) * 8 - 1)) - 1; \
202 tmp = 1 << (sizeof(type) * 8 - 1); \
205 dest = tmp; \
675 uint64_t tmp = val; local
731 int64_t tmp = val; local
873 uint64_t tmp = val; local
969 int64_t tmp = val; local
1387 uint64_t tmp; local
1401 uint64_t tmp; local
1445 uint64_t tmp; local
1529 uint64_t tmp; local
1543 uint64_t tmp; local
1557 uint64_t tmp; local
1566 uint64_t tmp; local
1597 uint64_t tmp; local
1612 uint64_t tmp; local
1627 uint64_t tmp; local
1637 uint64_t tmp; local
1647 uint16_t tmp; local
[all...]
/external/apache-http/src/org/apache/http/entity/
H A DBasicHttpEntity.java128 byte[] tmp = new byte[2048];
129 while ((l = instream.read(tmp)) != -1) {
130 outstream.write(tmp, 0, l);
H A DFileEntity.java80 byte[] tmp = new byte[4096];
82 while ((l = instream.read(tmp)) != -1) {
83 outstream.write(tmp, 0, l);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DDERApplicationSpecific.java61 byte[] tmp = new byte[data.length - lenBytes];
62 System.arraycopy(data, lenBytes, tmp, 0, tmp.length);
63 this.octets = tmp;
142 byte[] tmp = replaceTagNumber(derTagNo, orig);
146 tmp[0] |= DERTags.CONSTRUCTED;
149 return new ASN1InputStream(tmp).readObject();
217 byte[] tmp = new byte[input.length - index + 1];
219 System.arraycopy(input, index, tmp, 1, tmp
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
H A DRSACoreEngine.java130 byte[] tmp = new byte[output.length - 1];
132 System.arraycopy(output, 1, tmp, 0, tmp.length);
134 return tmp;
139 byte[] tmp = new byte[getOutputBlockSize()];
141 System.arraycopy(output, 0, tmp, tmp.length - output.length, output.length);
143 return tmp;
150 byte[] tmp = new byte[output.length - 1];
152 System.arraycopy(output, 1, tmp,
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dscoped_ptr.h85 T* tmp = b.ptr; local
87 ptr = tmp;
91 T* tmp = ptr; local
93 return tmp;
163 T* tmp = b.ptr; local
165 ptr = tmp;
169 T* tmp = ptr; local
171 return tmp;
231 T* tmp = b.ptr; local
233 ptr = tmp;
237 T* tmp = ptr; local
[all...]
/external/clang/include/clang/Driver/
H A DMakefile8 $(ObjDir)/Options.inc.tmp : Options.td OptParser.td $(CLANG_TBLGEN) $(ObjDir)/.dir
12 $(ObjDir)/CC1Options.inc.tmp : CC1Options.td OptParser.td $(CLANG_TBLGEN) $(ObjDir)/.dir
16 $(ObjDir)/CC1AsOptions.inc.tmp : CC1AsOptions.td OptParser.td $(CLANG_TBLGEN) $(ObjDir)/.dir
/external/oauth/core/src/main/java/net/oauth/client/
H A DExcerptInputStream.java29 byte[] tmp = new byte[total];
30 System.arraycopy(excerpt, 0, tmp, 0, total);
31 excerpt = tmp;
/external/openssl/crypto/bio/
H A Db_dump.c81 char buf[288+1],tmp[20],str[128+1]; local
110 BIO_snprintf(tmp,sizeof tmp,"%04x - ",i*dump_width);
111 BUF_strlcat(buf,tmp,sizeof buf);
121 BIO_snprintf(tmp,sizeof tmp,"%02x%c",ch,
123 BUF_strlcat(buf,tmp,sizeof buf);
133 BIO_snprintf(tmp,sizeof tmp,"%c",
136 BIO_snprintf(tmp,sizeo
[all...]
/external/srtp/crypto/replay/
H A Dut_sim.c71 uint32_t tmp; local
73 tmp = utc->buffer[0];
79 return tmp;
/external/v8/src/
H A Ddiy-fp.cc50 uint64_t tmp = (bd >> 32) + (ad & kM32) + (bc & kM32); local
51 // By adding 1U << 31 to tmp we round the final result.
53 tmp += 1U << 31;
54 uint64_t result_f = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/String/
H A Dregress-179068.js124 var tmp = new Array(count);
127 tmp[--count] = str;
129 return String.prototype.concat.apply("", tmp);
/external/webkit/Source/JavaScriptCore/wtf/qt/
H A DStringQt.cpp65 QString tmp; local
66 stream >> tmp; local
67 str = tmp;
/external/webrtc/src/system_wrappers/interface/
H A Dscoped_ptr.h85 T* tmp = b.ptr; local
87 ptr = tmp;
91 T* tmp = ptr; local
93 return tmp;
163 T* tmp = b.ptr; local
165 ptr = tmp;
169 T* tmp = ptr; local
171 return tmp;
231 T* tmp = b.ptr; local
233 ptr = tmp;
237 T* tmp = ptr; local
[all...]
/external/srec/portable/src/
H A Dphashtable.c78 PHashTable *tmp; local
86 if ((tmp = NEW(PHashTable, memTag)) == NULL)
91 tmp->args.capacity = PHASH_TABLE_DEFAULT_CAPACITY;
92 tmp->args.maxLoadFactor = PHASH_TABLE_DEFAULT_MAX_LOAD_FACTOR;
93 tmp->args.hashFunction = PHASH_TABLE_DEFAULT_HASH_FUNCTION;
94 tmp->args.compFunction = PHASH_TABLE_DEFAULT_COMP_FUNCTION;
98 memcpy(&tmp->args, args, sizeof(PHashTableArgs));
100 if (tmp->args.hashFunction == PHASH_TABLE_DEFAULT_HASH_FUNCTION)
101 tmp->args.hashFunction = hashString;
103 if (tmp
131 PHashTableEntryBlock *tmp, *block; local
279 PHashTableEntry *entry, *tmp, *next; local
[all...]
/external/icu4c/
H A Dconfigure.mk16 ( $(AUTOCONF) && mv configure configure.tmp && sed -e 's%^ac_cr=.*%ac_cr=`echo X |tr X "\\015"`%' < configure.tmp > configure && chmod a+rx $@ && rm configure.tmp ) || ( rm $@ ; "echo configure build failed" ; /usr/bin/false )
/external/skia/tests/
H A DDataRefTest.cpp52 SkData* tmp = SkData::NewSubset(r1, strlen(str), 10); local
53 assert_len(reporter, tmp, 0);
54 tmp->unref();
55 tmp = SkData::NewSubset(r1, 0, 0);
56 assert_len(reporter, tmp, 0);
57 tmp->unref();
/external/valgrind/main/helgrind/tests/
H A Dtc11_XCHG.c79 int tmp; \
80 while ((tmp = *(int*)(& _addr)), \
81 ! __sync_bool_compare_and_swap((int*)&_addr, tmp, _lval)) \
83 _lval = tmp; \
89 do { int tmp = *(int*)(& _addr); \
91 _lval = tmp; \
/external/aac/libFDK/include/
H A DFDK_trigFcts.h180 FIXP_STP tmp; local
183 tmp = SINETAB[s];
184 sl = (LONG)tmp.v.re;
185 cl = (LONG)tmp.v.im;
187 FIXP_STP tmp; local
188 tmp = SINETAB[s];
189 sl = (LONG)tmp.v.im;
190 cl = (LONG)tmp.v.re;

Completed in 655 milliseconds

1234567891011>>