Home
last modified time | relevance | path

Searched refs:tmpstr (Results 1 – 10 of 10) sorted by relevance

/minix3/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dgen_decode.c214 const char *forwstr, const char *tmpstr, const char *dertype, in decode_type() argument
422 tmpstr, in decode_type()
423 tmpstr, in decode_type()
424 tmpstr, in decode_type()
425 tmpstr, in decode_type()
437 tmpstr, in decode_type()
438 tmpstr, tmpstr, name, in decode_type()
439 tmpstr, tmpstr, forwstr, in decode_type()
440 tmpstr, tmpstr, in decode_type()
441 tmpstr, name, tmpstr, in decode_type()
[all …]
H A Dgen_length.c66 const char *variable, const char *tmpstr) in length_type() argument
164 "%s = 0;\n", tmpstr, variable, variable); in length_type()
166 fprintf (codefile, "ret += %s_oldret;\n", tmpstr); in length_type()
195 tmpstr, variable, variable); in length_type()
199 "%s = 0;\n", tmpstr, variable, variable); in length_type()
202 if (asprintf (&sname, "%s_S_Of", tmpstr) < 0 || sname == NULL) in length_type()
206 variable, tmpstr); in length_type()
211 "}\n", variable, tmpstr); in length_type()
251 if (asprintf(&tname, "%s_tag", tmpstr) < 0 || tname == NULL) in length_type()
H A Dgen_encode.c110 encode_type (const char *name, const Type *t, const char *tmpstr) in encode_type() argument
279 fprintf (codefile, "size_t %s_oldret HEIMDAL_UNUSED_ATTRIBUTE = ret;\n", tmpstr); in encode_type()
282 fprintf (codefile, "ret += %s_oldret;\n", tmpstr); in encode_type()
363 name, tmpstr); in encode_type()
366 if (asprintf (&sname, "%s_S_Of", tmpstr) < 0 || sname == NULL) in encode_type()
372 tmpstr); in encode_type()
392 if (asprintf (&tname, "%s_tag", tmpstr) < 0 || tname == NULL) in encode_type()
431 fprintf (codefile, "size_t %s_oldret = ret;\n", tmpstr); in encode_type()
434 fprintf (codefile, "ret += %s_oldret;\n", tmpstr); in encode_type()
/minix3/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Da_time.c80 ASN1_STRING tmpstr; in IMPLEMENT_ASN1_MSTRING()
85 tmpstr = *(ASN1_STRING *)a; in IMPLEMENT_ASN1_MSTRING()
86 len = tmpstr.length; in IMPLEMENT_ASN1_MSTRING()
87 ebcdic2ascii(tmp, tmpstr.data, in IMPLEMENT_ASN1_MSTRING()
89 tmpstr.data = tmp; in IMPLEMENT_ASN1_MSTRING()
90 a = (ASN1_GENERALIZEDTIME *)&tmpstr; in IMPLEMENT_ASN1_MSTRING()
H A Da_gentm.c77 ASN1_STRING tmpstr = *(ASN1_STRING *)a;
79 len = tmpstr.length;
80 ebcdic2ascii(tmp, tmpstr.data, (len >= sizeof tmp) ? sizeof tmp : len);
81 tmpstr.data = tmp;
83 a = (ASN1_GENERALIZEDTIME *)&tmpstr;
/minix3/usr.bin/menuc/
H A Dmdb.c114 char *sys_prefix, *tmpstr; in write_menu_file() local
358 tmpstr = menus[i]->info->helpstr; in write_menu_file()
359 if (*tmpstr != '"') in write_menu_file()
360 (void)fprintf(out_file, "%s", tmpstr); in write_menu_file()
363 if (tmpstr[1] == '\n') in write_menu_file()
364 *++tmpstr = '"'; in write_menu_file()
366 while (*tmpstr) { in write_menu_file()
367 if (*tmpstr != '\n') { in write_menu_file()
368 fputc(*tmpstr++, out_file); in write_menu_file()
372 tmpstr++; in write_menu_file()
/minix3/common/lib/libprop/
H A Dprop_number.c197 char tmpstr[32]; in _prop_number_externalize() local
204 snprintf(tmpstr, sizeof(tmpstr), "0x%" PRIx64, in _prop_number_externalize()
207 snprintf(tmpstr, sizeof(tmpstr), "%" PRIi64, in _prop_number_externalize()
211 _prop_object_externalize_append_cstring(ctx, tmpstr) == false || in _prop_number_externalize()
/minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/
H A Dreferences.mm34 void f4(NSString &tmpstr) {
35 f3(&tmpstr);
/minix3/crypto/external/bsd/libsaslc/dist/src/
H A Dxsess.c178 char *tmpstr; in saslc__sess_choose_mech() local
195 if ((tmpstr = strdup(mechs)) == NULL) in saslc__sess_choose_mech()
198 normalize_list_string(tmpstr); in saslc__sess_choose_mech()
199 rv = saslc__list_parse(&list, tmpstr); in saslc__sess_choose_mech()
200 free(tmpstr); in saslc__sess_choose_mech()
/minix3/minix/drivers/bus/pci/
H A Dpci.c265 char tmpstr[20]; in ntostr() local
270 tmpstr[0]= '0'; in ntostr()
277 tmpstr[i]= '0' + (n%10); in ntostr()
287 **str= tmpstr[i-1]; in ntostr()