HomeSort by relevance Sort by last modified time
    Searched refs:stmp (Results 1 - 12 of 12) sorted by null

  /toolchain/binutils/binutils-2.25/gas/
cgen.c 376 symbolS * stmp = NULL; local
465 stmp = symbol_create (FAKE_LABEL_NAME, expr_section, 0,
467 symbol_set_value_expression (stmp, & exp);
470 stmp = make_expr_symbol (& exp);
476 stmp = expr_build_binary (O_subtract, stmp, expr_build_dot ());
485 if (stmp->bsym && (stmp->bsym->section == expr_section)
486 && ! S_IS_LOCAL (stmp))
489 stmp->bsym->flags |= BSF_SRELC
833 symbolS * stmp = 0; local
    [all...]
write.c 271 symbolS *stmp = make_expr_symbol (exp); local
275 exp->X_add_symbol = stmp;
    [all...]
  /external/boringssl/src/crypto/x509/
x509_att.c 282 ASN1_STRING *stmp = NULL; local
286 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype,
288 if(!stmp) {
292 atype = stmp->type;
294 if(!(stmp = ASN1_STRING_type_new(attrtype))) goto err;
295 if(!ASN1_STRING_set(stmp, data, len)) goto err;
313 ASN1_TYPE_set(ttmp, atype, stmp);
a_strex.c 549 ASN1_STRING stmp, *str = &stmp; local
557 stmp.data = NULL;
558 stmp.length = 0;
559 stmp.flags = 0;
562 *out = stmp.data;
563 return stmp.length;
by_dir.c 292 X509_OBJECT stmp,*tmp; local
297 stmp.type=type;
302 stmp.data.x509= &data.x509.st_x509;
309 stmp.data.crl= &data.crl.st_crl;
429 if (sk_X509_OBJECT_find(xl->store_ctx->objs, &idx, &stmp)) {
x509_lu.c 304 X509_OBJECT stmp,*tmp; local
316 j=X509_LOOKUP_by_subject(lu,type,name,&stmp);
324 tmp= &stmp;
439 X509_OBJECT stmp; local
445 stmp.type=type;
449 stmp.data.x509= &x509_s;
454 stmp.data.crl= &crl_s;
464 if (!sk_X509_OBJECT_find(h, &idx, &stmp))
472 pstmp = &stmp;
  /external/boringssl/src/crypto/asn1/
tasn_dec.c 927 ASN1_STRING *stmp; local
1031 stmp = ASN1_STRING_type_new(utype);
1032 if (!stmp)
1037 *pval = (ASN1_VALUE *)stmp;
1041 stmp = (ASN1_STRING *)*pval;
1042 stmp->type = utype;
1047 if (stmp->data)
1048 OPENSSL_free(stmp->data);
1049 stmp->data = (unsigned char *)cont; /* UGLY CAST! RL */
1050 stmp->length = len
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/aec/
echo_cancellation.c 448 int stmp; local
507 stmp = metrics->erl.average + metrics->erle.average;
509 stmp = kOffsetLevel;
511 metrics->rerl.average = stmp;
514 metrics->rerl.instant = stmp;
515 metrics->rerl.max = stmp;
516 metrics->rerl.min = stmp;
  /toolchain/binutils/binutils-2.25/bfd/
Makefile.am 967 $(BFD_H): stmp-bfd-h ; @true
969 stmp-bfd-h: bfd-in3.h
974 touch stmp-bfd-h
997 $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
998 stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES)
1002 touch stmp-bin2-h
1004 $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
1005 stmp-lbfd-h: $(LIBBFD_H_FILES)
1009 touch stmp-lbfd-h
1011 $(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @tru
    [all...]
  /external/boringssl/src/crypto/evp/
p_rsa_asn1.c 479 ASN1_STRING *stmp = NULL; local
487 !ASN1_item_pack(algtmp, ASN1_ITEM_rptr(X509_ALGOR), &stmp)) {
494 X509_ALGOR_set0(*palg, OBJ_nid2obj(NID_mgf1), V_ASN1_SEQUENCE, stmp);
495 stmp = NULL;
498 ASN1_STRING_free(stmp);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherProvider.java 252 SQLiteStatement stmp = null; local
254 stmp = mOpenHelper.getWritableDatabase().compileStatement(
257 stmp.bindLong(1, screenId);
260 valuesInserted.put(LauncherSettings.BaseLauncherColumns._ID, stmp.executeInsert());
266 Utilities.closeSilently(stmp);
    [all...]
  /external/opencv3/modules/calib3d/src/
dls.cpp 127 double stmp[3]; local
128 stmp[0] = eigenvec_r.at<double>(9, k);
129 stmp[1] = eigenvec_r.at<double>(3, k);
130 stmp[2] = eigenvec_r.at<double>(1, k);
132 cv::Mat H = Hessian(stmp);
140 // sols(:,i) = stmp;
141 cv::Mat stmp_mat(3, 1, CV_64F, &stmp);
    [all...]

Completed in 1038 milliseconds