Searched defs:tmp (Results 276 - 300 of 1328) sorted by relevance

<<11121314151617181920>>

/external/libselinux/src/
H A Dstringrep.c249 access_vector_t tmp = av; local
255 while (tmp) {
256 if (tmp & 1) {
266 tmp >>= 1;
278 tmp = av;
287 while (tmp) {
288 if (tmp & 1)
291 tmp >>= 1;
/external/libvpx/libvpx/libmkv/
H A DEbmlWriter.c163 unsigned char tmp = 0; local
171 Ebml_Write(glob, &tmp, 1);
/external/libvpx/libvpx/nestegg/halloc/src/
H A Dhalloc.c237 hlist_item_t * i, * tmp; local
247 hlist_for_each_safe(i, tmp, &p->children)
/external/libvpx/libvpx/vp8/common/
H A Dfindnearmv.c120 int tmp; local
121 tmp = cnt[CNT_NEAREST];
123 cnt[CNT_NEAR] = tmp;
124 tmp = near_mvs[CNT_NEAREST].as_int;
126 near_mvs[CNT_NEAR].as_int = tmp;
/external/libvpx/libvpx/vp8/decoder/
H A Donyxd_if.c425 MODE_INFO* tmp = pbi->common.prev_mi; local
428 pbi->common.mi = tmp;
/external/libvpx/libvpx/vp8/encoder/
H A Dmr_dissim.c45 != cm->ref_frame_sign_bias[tmp->mbmi.ref_frame]) \
86 MODE_INFO *tmp = cm->mip + cm->mode_info_stride; local
91 tmp++;
96 if(tmp->mbmi.ref_frame !=INTRA_FRAME)
103 const MODE_INFO *here = tmp;
203 store_mode_info->mode = tmp->mbmi.mode;
204 store_mode_info->ref_frame = tmp->mbmi.ref_frame;
205 store_mode_info->mv.as_int = tmp->mbmi.mv.as_int;
207 tmp++;
/external/libxslt/libxslt/
H A Dattrvt.c360 xmlChar *ret = NULL, *tmp; local
374 tmp = xsltEvalXPathStringNs(ctxt, comp, cur->nsNr, cur->nsList);
375 if (tmp != NULL) {
377 ret = xmlStrcat(ret, tmp);
378 xmlFree(tmp);
380 ret = tmp;
H A Dnamespaces.c737 xmlNsPtr ret = NULL, tmp; local
766 tmp = xmlSearchNs(node->doc, node, cur->prefix);
767 if ((tmp != NULL) && (xmlStrEqual(tmp->href, cur->href))) {
/external/linux-tools-perf/util/added/
H A Drbtree.c96 register struct rb_node *tmp; local
98 tmp = parent;
100 node = tmp;
121 register struct rb_node *tmp; local
123 tmp = parent;
125 node = tmp;
/external/linux-tools-perf/util/ui/browsers/
H A Dmap.c139 char tmp[BITS_PER_LONG / 4]; local
154 mb.addrlen = snprintf(tmp, sizeof(tmp), "%" PRIx64, maxaddr);
/external/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h162 T* tmp = other.Obj; local
164 Obj = tmp;
H A DStatistic.h153 bool tmp = Initialized; local
155 if (!tmp) RegisterStatistic();
/external/llvm/include/llvm/Support/
H A DInstIterator.h90 InstIterator tmp = *this; ++*this; return tmp; local
102 InstIterator tmp = *this; --*this; return tmp; local
/external/marisa-trie/tools/
H A Dcmdopt.c12 char *tmp; local
14 tmp = h->argv[h->optind];
18 h->argv[i] = tmp;
/external/marisa-trie/v0_1_5/tools/
H A Dcmdopt.c12 char *tmp; local
14 tmp = h->argv[h->optind];
18 h->argv[i] = tmp;
/external/openssh/
H A Ddh.c198 BIGNUM *tmp; local
209 if ((tmp = BN_new()) == NULL) {
213 if (!BN_sub(tmp, dh->p, BN_value_one()) ||
214 BN_cmp(dh_pub, tmp) != -1) { /* pub_exp > p-2 */
215 BN_clear_free(tmp);
219 BN_clear_free(tmp);
H A Dmonitor_mm.c64 struct mm_share *tmp, *tmp2; local
67 tmp = xmalloc(sizeof(struct mm_share));
69 tmp = mm_xmalloc(mm->mmalloc, sizeof(struct mm_share));
70 tmp->address = address;
71 tmp->size = size;
73 tmp2 = RB_INSERT(mmtree, head, tmp);
78 return (tmp);
172 struct mm_share *mms, *tmp; local
192 tmp = mm_make_entry(mm, &mm->rb_allocated, mms->address, size);
206 return (tmp
214 struct mm_share *mms, *prev, tmp; local
[all...]
/external/openssl/crypto/bn/
H A Dbn_div.c185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
227 tmp=BN_CTX_get(ctx);
233 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
291 if (!bn_wexpand(tmp,(div_n+1))) goto err;
406 l0=bn_mul_words(tmp->d,sdiv->d,div_n,q);
407 tmp->d[div_n]=l0;
411 if (bn_sub_words(wnum.d, wnum.d, tmp->d, div_n+1))
421 * that q != 0, but if q == 0 then tmp is
H A Dbn_gcd.c348 BIGNUM *tmp; local
403 tmp=A; /* keep the BIGNUM object, the value does not matter */
429 /* most of the time D is very small, so we can optimize tmp := D*X+Y */
432 if (!BN_add(tmp,X,Y)) goto err;
438 if (!BN_lshift1(tmp,X)) goto err;
442 if (!BN_lshift(tmp,X,2)) goto err;
446 if (!BN_copy(tmp,X)) goto err;
447 if (!BN_mul_word(tmp,D->d[0])) goto err;
451 if (!BN_mul(tmp,D,X,ctx)) goto err;
453 if (!BN_add(tmp,tm
560 BIGNUM *tmp; local
[all...]
/external/openssl/crypto/dh/
H A Ddh_key.c207 BIGNUM *tmp; local
220 tmp = BN_CTX_get(ctx);
247 if (!dh->meth->bn_mod_exp(dh, tmp, pub_key, dh->priv_key,dh->p,ctx,mont))
253 ret=BN_bn2bin(tmp,key);
/external/openssl/crypto/ecdsa/
H A Decs_ossl.c226 BIGNUM *kinv=NULL, *s, *m=NULL,*tmp=NULL,*order=NULL; local
253 (tmp = BN_new()) == NULL || (m = BN_new()) == NULL)
302 if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx))
307 if (!BN_mod_add_quick(s, tmp, m, order))
344 if (tmp)
345 BN_clear_free(tmp);
427 /* u1 = m * tmp mod order */
/external/openssl/crypto/objects/
H A Dobj_xref.c93 nid_triple tmp; local
95 tmp.sign_id = signid;
99 int idx = sk_nid_triple_find(sig_app, &tmp);
107 rv = OBJ_bsearch_sig(&tmp, sigoid_srt,
122 nid_triple tmp; local
123 const nid_triple *t=&tmp;
126 tmp.hash_id = dig_nid;
127 tmp.pkey_id = pkey_nid;
131 int idx = sk_nid_triple_find(sigx_app, &tmp);
/external/openssl/crypto/x509/
H A Dx509_trs.c138 X509_TRUST tmp; local
142 tmp.trust = id;
144 idx = sk_X509_TRUST_find(trtable, &tmp);
/external/openssl/crypto/x509v3/
H A Dv3_lib.c99 X509V3_EXT_METHOD tmp; local
100 const X509V3_EXT_METHOD *t = &tmp, * const *ret;
103 tmp.ext_nid = nid;
107 idx = sk_X509V3_EXT_METHOD_find(ext_list, &tmp);
H A Dv3_prn.c91 char *tmp; local
93 tmp = OPENSSL_malloc(len);
94 if (tmp)
96 ascii2ebcdic(tmp, nval->value, len);
97 BIO_printf(out, "%s:%s", nval->name, tmp);
98 OPENSSL_free(tmp);
135 char *tmp; local
137 tmp = OPENSSL_malloc(len);
138 if (tmp)
140 ascii2ebcdic(tmp, valu
[all...]

Completed in 2489 milliseconds

<<11121314151617181920>>