| /openbsd-src/regress/lib/libcrypto/bn/ |
| H A D | bn_bits.c | 27 char *out_str = NULL; in test_bn_set_bit() local 48 if ((out_str = BN_bn2hex(bn)) == NULL) in test_bn_set_bit() 50 if (strcmp(out_str, "55555555555555555555555555555555") != 0) { in test_bn_set_bit() 51 fprintf(stderr, "FAIL: got 0x%s, want 0x%s\n", out_str, in test_bn_set_bit() 60 free(out_str); in test_bn_set_bit() 69 char *out_str = NULL; in test_bn_clear_bit() local 94 if ((out_str = BN_bn2hex(bn)) == NULL) in test_bn_clear_bit() 96 if (strcmp(out_str, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") != 0) { in test_bn_clear_bit() 97 fprintf(stderr, "FAIL: got 0x%s, want 0x%s\n", out_str, in test_bn_clear_bit() 123 free(out_str); in test_bn_clear_bit() [all …]
|
| H A D | bn_convert.c | 457 char *out_str = NULL; in test_bn_convert() 492 free(out_str); in test_bn_convert() 493 if ((out_str = BN_bn2dec(bn)) == NULL) { in test_bn_convert() 497 if (strcmp(out_str, bct->dec) != 0) { in test_bn_convert() 499 "'%s', want '%s'", i, out_str, bct->dec); in test_bn_convert() 503 free(out_str); in test_bn_convert() 504 if ((out_str = BN_bn2hex(bn)) == NULL) { in test_bn_convert() 508 if (strcmp(out_str, bct->hex) != 0) { in test_bn_convert() 510 "'%s', want '%s'", i, out_str, bct->hex); in test_bn_convert() 585 free(out_str); in test_bn_dec2bn() 441 char *out_str = NULL; test_bn_convert() local [all...] |
| /openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/ |
| H A D | z8k-dis.c | 286 char out_str[100]; in output_instr() local 288 out_str[0] = 0; in output_instr() 293 strcat (out_str, instr_data->instr_asmsrc); in output_instr() 295 (*info->fprintf_func) (info->stream, "%s", out_str); in output_instr() 529 char out_str[80], tmp_str[25]; in unparse_instr() local 531 sprintf (out_str, "%s\t", z8k_table[instr_data->tabl_index].name); in unparse_instr() 537 strcat (out_str, ","); in unparse_instr() 548 strcat (out_str, tmp_str); in unparse_instr() 557 strcat (out_str, tmp_str); in unparse_instr() 566 strcat (out_str, tmp_str); in unparse_instr() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/opcodes/ |
| H A D | z8k-dis.c | 286 char out_str[100]; in output_instr() local 288 out_str[0] = 0; in output_instr() 293 strcat (out_str, instr_data->instr_asmsrc); in output_instr() 295 (*info->fprintf_func) (info->stream, "%s", out_str); in output_instr() 529 char out_str[80], tmp_str[25]; in unparse_instr() local 531 sprintf (out_str, "%s\t", z8k_table[instr_data->tabl_index].name); in unparse_instr() 537 strcat (out_str, ","); in unparse_instr() 548 strcat (out_str, tmp_str); in unparse_instr() 557 strcat (out_str, tmp_str); in unparse_instr() 566 strcat (out_str, tmp_str); in unparse_instr() [all …]
|
| /openbsd-src/gnu/llvm/llvm/bindings/python/llvm/ |
| H A D | disassembler.py | 101 out_str = cast((c_byte * 255)(), c_char_p) 104 c_uint64(pc), out_str, 255) 106 return (result, out_str.value) 122 out_str = cast((c_byte * 255)(), c_char_p) 133 out_str, 255) 138 yield (address, result, out_str.value)
|
| /openbsd-src/gnu/llvm/libcxx/utils/libcxx/sym_check/ |
| H A D | util.py | 46 out_str = '' 55 out_str += pformat(sym, width=100000) + '\n' 57 sys.stdout.write(out_str) 60 f.write(out_str)
|
| /openbsd-src/usr.bin/lex/ |
| H A D | misc.c | 682 out_str(const char *fmt, const char str[]) 823 out_str("/* %s */\\\n", buf); 825 out_str("/* %s */\n", buf); 842 out_str("/*(state = (%s) */", do_copy ? "true" : "false"); 844 out_str("%s\n", buf[strlen(buf) - 1] == '\\' ? "\\" : ""); 848 out_str("/*(state = (%s) */", do_copy ? "true" : "false"); 850 out_str("%s\n", buf[strlen(buf) - 1] == '\\' ? "\\" : ""); 871 out_str("#define YYTABLES_NAME \"%s\"\n", in skelout() 735 out_str(fmt, str) out_str() function
|
| H A D | gen.c | 1479 out_str(fmt, arg); in indent_put2s() 1949 out_str("for ( yyl = %s; yyl < yyleng; ++yyl )\n", in make_tables() 2048 out_str("case YY_STATE_EOF(%s):\n", scname[i]); in make_tables()
|
| H A D | flexdef.h | 904 extern void out_str PROTO ((const char *, const char *));
|
| H A D | dfa.c | 545 out_str ("static yyconst %s *yy_nxt =0;\n", in ntod()
|
| H A D | main.c | 1605 out_str("\n#define YY_DECL int %s::yylex()\n", in readin()
|
| H A D | flex.skl | 958 void yyset_out M4_YY_PARAMS( FILE * out_str M4_YY_PROTO_LAST_ARG ); 2701 void yyset_out YYFARGS1( FILE * ,out_str) 2704 yyout = out_str ;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/ |
| H A D | harness.t | 545 my $out_str = join q<>, @output; 547 like( $out_str, qr<SEGV>, 'SIGSEGV is parsed out' );
|
| /openbsd-src/sbin/unwind/libunbound/util/ |
| H A D | configlexer.c | 3681 void yyset_out (FILE * out_str ); 6871 void yyset_out (FILE * out_str ) in yy_init_globals() 6873 yyout = out_str ; in yy_init_globals() 6854 yyset_out(FILE * out_str) yyset_out() argument
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | gengtype-lex.c | 3459 void yyset_out (FILE * out_str ) in yyset_out() argument 3461 yyout = out_str ; in yyset_out()
|
| H A D | genautomata.c | 1141 char *out_str; local 1172 out_str = obstack_base (&irp); 1179 return out_str;
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Target.cpp | 1902 size_t Target::ReadCStringFromMemory(const Address &addr, std::string &out_str, in ReadCStringFromMemory() argument 1905 out_str.clear(); in ReadCStringFromMemory() 1913 out_str.append(buf, length); in ReadCStringFromMemory() 1922 return out_str.size(); in ReadCStringFromMemory()
|
| H A D | Process.cpp | 1970 size_t Process::ReadCStringFromMemory(addr_t addr, std::string &out_str, in ReadCStringFromMemory() argument 1973 out_str.clear(); in ReadCStringFromMemory() 1979 out_str.append(buf, length); in ReadCStringFromMemory() 1987 return out_str.size(); in ReadCStringFromMemory()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | Target.h | 1049 size_t ReadCStringFromMemory(const Address &addr, std::string &out_str,
|
| H A D | Process.h | 1514 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, std::string &out_str,
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | genautomata.c | 1509 char *out_str; local 1540 out_str = obstack_base (&irp); 1547 return out_str;
|