| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/digest/ |
| H A D | hmac.d | 40 import std.string : representation; 42 auto secret = "secret".representation; 44 .representation 98 import std.string : representation; 99 auto hmac = HMAC!SHA1("My s3cR3T keY".representation); 100 hmac.put("Hello, world".representation); 135 import std.string : representation; 137 auto hmac = HMAC!SHA1("My s3cR3T keY".representation); 138 hmac.put(data1.representation); 140 hmac.put(data2.representation); // start over [all …]
|
| H A D | package.d | 1163 import std.string : representation; 1166 auto secret = "A7GZIP6TAQA6OHM7KZ42KB9303CEY0MOV5DD6NTV".representation; 1167 auto data = "data".representation; 1171 auto hex3 = "data1".representation.hmac!SHA1(secret).toHexString; 1181 import std.string : representation; 1185 auto hex1 = "02CA3484C375EDD3C0F08D3F50D119E61077".representation; 1186 auto hex2 = "02CA3484C375EDD3C0F08D3F50D119E610779018".representation; 1190 auto hex1 = "02CA3484C375EDD3C0F08D3F50D119E610779018"w.representation; 1191 auto hex2 = "02CA3484C375EDD3C0F08D3F50D119E610779018"d.representation;
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/ |
| H A D | hmac.d | 40 import std.string : representation; 42 auto secret = "secret".representation; 44 .representation 96 import std.string : representation; 97 auto hmac = HMAC!SHA1("My s3cR3T keY".representation); 98 hmac.put("Hello, world".representation); 133 import std.string : representation; 135 auto hmac = HMAC!SHA1("My s3cR3T keY".representation); 136 hmac.put(data1.representation); 138 hmac.put(data2.representation); // start over [all …]
|
| H A D | package.d | 1120 import std.string : representation; 1123 auto secret = "A7GZIP6TAQA6OHM7KZ42KB9303CEY0MOV5DD6NTV".representation; 1124 auto data = "data".representation; 1128 string hex3 = "data1".representation.hmac!SHA1(secret).toHexString; 1138 import std.string : representation; 1142 auto hex1 = "02CA3484C375EDD3C0F08D3F50D119E61077".representation; 1143 auto hex2 = "02CA3484C375EDD3C0F08D3F50D119E610779018".representation; 1147 auto hex1 = "02CA3484C375EDD3C0F08D3F50D119E610779018"w.representation; 1148 auto hex2 = "02CA3484C375EDD3C0F08D3F50D119E610779018"d.representation;
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/config/arm/ |
| H A D | unwind-arm.c | 159 _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Get() argument 167 if (representation != _UVRSD_UINT32 in _Unwind_VRS_Get() 189 _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Set() argument 197 if (representation != _UVRSD_UINT32 in _Unwind_VRS_Set() 220 _Unwind_VRS_DataRepresentation representation) in _Unwind_VRS_Pop() argument 232 if (representation != _UVRSD_UINT32) in _Unwind_VRS_Pop() 263 if ((representation != _UVRSD_VFPX && representation != _UVRSD_DOUBLE) in _Unwind_VRS_Pop() 264 || start + count > (representation == _UVRSD_VFPX ? 16 : 32) in _Unwind_VRS_Pop() 265 || (representation == _UVRSD_VFPX && start >= 16)) in _Unwind_VRS_Pop() 275 if (num_vfpv3_regs && representation != _UVRSD_DOUBLE) in _Unwind_VRS_Pop() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/arm/ |
| H A D | unwind-arm.c | 159 _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Get() argument 167 if (representation != _UVRSD_UINT32 in _Unwind_VRS_Get() 189 _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Set() argument 197 if (representation != _UVRSD_UINT32 in _Unwind_VRS_Set() 220 _Unwind_VRS_DataRepresentation representation) in _Unwind_VRS_Pop() argument 232 if (representation != _UVRSD_UINT32) in _Unwind_VRS_Pop() 263 if ((representation != _UVRSD_VFPX && representation != _UVRSD_DOUBLE) in _Unwind_VRS_Pop() 264 || start + count > (representation == _UVRSD_VFPX ? 16 : 32) in _Unwind_VRS_Pop() 265 || (representation == _UVRSD_VFPX && start >= 16)) in _Unwind_VRS_Pop() 275 if (num_vfpv3_regs && representation != _UVRSD_DOUBLE) in _Unwind_VRS_Pop() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
| H A D | trans-const.cc | 310 if (expr->representation.string) in gfc_conv_constant_to_tree() 313 gfc_build_string_const (expr->representation.length, in gfc_conv_constant_to_tree() 314 expr->representation.string)); in gfc_conv_constant_to_tree() 319 if (expr->representation.string) in gfc_conv_constant_to_tree() 322 gfc_build_string_const (expr->representation.length, in gfc_conv_constant_to_tree() 323 expr->representation.string)); in gfc_conv_constant_to_tree() 328 if (expr->representation.string) in gfc_conv_constant_to_tree() 332 gfc_build_string_const (expr->representation.length, in gfc_conv_constant_to_tree() 333 expr->representation.string)); in gfc_conv_constant_to_tree() 345 if (expr->representation.string) in gfc_conv_constant_to_tree() [all …]
|
| H A D | target-memory.cc | 117 *siz = e->representation.length; in gfc_element_size() 308 if (source->representation.string) in gfc_target_encode_expr() 310 memcpy (buffer, source->representation.string, in gfc_target_encode_expr() 311 source->representation.length); in gfc_target_encode_expr() 312 return source->representation.length; in gfc_target_encode_expr() 589 result->representation.length = in gfc_target_interpret_expr() 595 result->representation.length = in gfc_target_interpret_expr() 601 result->representation.length = in gfc_target_interpret_expr() 607 result->representation.length = in gfc_target_interpret_expr() 613 result->representation.length = in gfc_target_interpret_expr() [all …]
|
| H A D | arith.cc | 2564 src_len = src->representation.length - src->ts.u.pad; in hollerith2representation() 2574 result->representation.string = XCNEWVEC (char, result_len + 1); in hollerith2representation() 2575 memcpy (result->representation.string, src->representation.string, in hollerith2representation() 2579 memset (&result->representation.string[src_len], ' ', result_len - src_len); in hollerith2representation() 2581 result->representation.string[result_len] = '\0'; /* For debugger */ in hollerith2representation() 2582 result->representation.length = result_len; in hollerith2representation() 2602 result->representation.string = XCNEWVEC (char, result_len + 1); in character2representation() 2605 result->representation.string[i] = (char) src->value.character.string[i]; in character2representation() 2608 memset (&result->representation.string[src_len], ' ', in character2representation() 2611 result->representation.string[result_len] = '\0'; /* For debugger. */ in character2representation() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| H A D | trans-const.c | 310 if (expr->representation.string) in gfc_conv_constant_to_tree() 313 gfc_build_string_const (expr->representation.length, in gfc_conv_constant_to_tree() 314 expr->representation.string)); in gfc_conv_constant_to_tree() 319 if (expr->representation.string) in gfc_conv_constant_to_tree() 322 gfc_build_string_const (expr->representation.length, in gfc_conv_constant_to_tree() 323 expr->representation.string)); in gfc_conv_constant_to_tree() 328 if (expr->representation.string) in gfc_conv_constant_to_tree() 332 gfc_build_string_const (expr->representation.length, in gfc_conv_constant_to_tree() 333 expr->representation.string)); in gfc_conv_constant_to_tree() 345 if (expr->representation.string) in gfc_conv_constant_to_tree() [all …]
|
| H A D | target-memory.c | 117 *siz = e->representation.length; in gfc_element_size() 309 if (source->representation.string) in gfc_target_encode_expr() 311 memcpy (buffer, source->representation.string, in gfc_target_encode_expr() 312 source->representation.length); in gfc_target_encode_expr() 313 return source->representation.length; in gfc_target_encode_expr() 589 result->representation.length = in gfc_target_interpret_expr() 595 result->representation.length = in gfc_target_interpret_expr() 601 result->representation.length = in gfc_target_interpret_expr() 607 result->representation.length = in gfc_target_interpret_expr() 613 result->representation.length = in gfc_target_interpret_expr() [all …]
|
| H A D | arith.c | 2514 src_len = src->representation.length - src->ts.u.pad; in hollerith2representation() 2524 result->representation.string = XCNEWVEC (char, result_len + 1); in hollerith2representation() 2525 memcpy (result->representation.string, src->representation.string, in hollerith2representation() 2529 memset (&result->representation.string[src_len], ' ', result_len - src_len); in hollerith2representation() 2531 result->representation.string[result_len] = '\0'; /* For debugger */ in hollerith2representation() 2532 result->representation.length = result_len; in hollerith2representation() 2552 result->representation.string = XCNEWVEC (char, result_len + 1); in character2representation() 2555 result->representation.string[i] = (char) src->value.character.string[i]; in character2representation() 2558 memset (&result->representation.string[src_len], ' ', in character2representation() 2561 result->representation.string[result_len] = '\0'; /* For debugger. */ in character2representation() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/c6x/ |
| H A D | unwind-c6x.c | 86 _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Get() argument 94 if (representation != _UVRSD_UINT32) in _Unwind_VRS_Get() 117 _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Set() argument 125 if (representation != _UVRSD_UINT32) in _Unwind_VRS_Set()
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/config/c6x/ |
| H A D | unwind-c6x.c | 86 _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Get() argument 94 if (representation != _UVRSD_UINT32) in _Unwind_VRS_Get() 117 _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Set() argument 125 if (representation != _UVRSD_UINT32) in _Unwind_VRS_Set()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | PKCS12_add_friendlyname_asc.pod | 24 PKCS12_add_friendlyname_asc() adds an ASCII string representation of the PKCS#9 27 PKCS12_add_friendlyname_utf8() adds a UTF-8 string representation of the PKCS#9 30 PKCS12_add_friendlyname_uni() adds a Unicode string representation of the PKCS#9
|
| H A D | BN_bn2bin.pod | 65 hexadecimal number representation and converts them to a B<BIGNUM> and 67 B<a> is NULL, it only computes the length of valid representation. 78 the most significant bit signals a negative number (the representation 81 BN_bn2mpi() stores the representation of B<a> at B<to>, where B<to> 85 BN_mpi2bn() converts the B<len> bytes long representation at B<s> to 104 BN_bn2mpi() returns the length of the representation. BN_mpi2bn()
|
| /netbsd-src/external/bsd/openldap/dist/doc/rfc/ |
| H A D | rfc4514.txt | 32 representation used in the Lightweight Directory Access Protocol 33 (LDAP) to transfer distinguished names. The string representation is 34 designed to give a clean representation of commonly used 68 This document defines the string representation of Distinguished 71 representation to a string. Section 3 details how to convert a DN 72 from a string to an ASN.1 structured representation. 75 from its ASN.1 structured representation to a string, all algorithms 78 This document does not define a canonical string representation for 136 distinguished name from an ASN.1-structured representation to a UTF-8 137 [RFC3629] encoded Unicode [Unicode] character string representation. [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | BN_bn2bin.pod | 57 hexadecimal number representation and converts them to a B<BIGNUM> and 59 B<a> is NULL, it only computes the length of valid representation. 70 the most significant bit signals a negative number (the representation 73 BN_bn2mpi() stores the representation of B<a> at B<to>, where B<to> 77 BN_mpi2bn() converts the B<len> bytes long representation at B<s> to 96 BN_bn2mpi() returns the length of the representation. BN_mpi2bn()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
| H A D | cfg.texi | 16 intermediate code representation (the RTL or @code{GIMPLE} instruction 24 In GCC, the representation of control flow is maintained throughout 35 intermediate representation for instructions cannot be easily done 39 * Basic Blocks:: The definition and representation of basic blocks. 40 * Edges:: Types of edges and their representation. 101 both representations, stored in intermediate representation specific 110 In the RTL representation of a function, the instruction stream 119 In the RTL function representation, the instructions contained in a 143 For the @code{GIMPLE} representation, the PHI nodes and statements 154 of the current function in the GIMPLE representation. [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
| H A D | cfg.texi | 16 intermediate code representation (the RTL or @code{GIMPLE} instruction 24 In GCC, the representation of control flow is maintained throughout 35 intermediate representation for instructions cannot be easily done 39 * Basic Blocks:: The definition and representation of basic blocks. 40 * Edges:: Types of edges and their representation. 101 both representations, stored in intermediate representation specific 110 In the RTL representation of a function, the instruction stream 119 In the RTL function representation, the instructions contained in a 143 For the @code{GIMPLE} representation, the PHI nodes and statements 154 of the current function in the GIMPLE representation. [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/ |
| H A D | 2000-12-06-MeetingSummary.txt | 4 We met to discuss the LLVM instruction format and bytecode representation: 21 common case and inflate the instruction representation with another 39 representation. This is one example of an analysis result that may be 43 to the order of occurrence in the bytecode representation.
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/avr/ |
| H A D | constraints.md | 220 "Fixed-point or integer constant with bit representation 0x0" 225 "Fixed-point or integer constant with bit representation 0x1" 231 "Fixed-point or integer constant with bit representation -0x1" 237 "Fixed-point or integer constant with bit representation 0x2" 243 "Fixed-point or integer constant with bit representation -0x2"
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/docs/DesignDocs/ |
| H A D | FileTimeType.rst | 39 our own filesystem clock which specifies the period and representation of 58 But what type can we use as the arithmetic representation that is capable 140 64 bit representation requires limiting the resolution to seconds. 146 representation, not design it. 188 As we've discussed, ``file_time_type`` needs a representation that uses more 210 // woops! chrono::seconds and chrono::nanoseconds use a 64 bit representation 238 to the particular eccentricities of the representation, hopefully only in such 242 representation we choose. But some representations may be quirkier than others, 279 number of ticks stored using ``rep``. The representation is unaware of the 318 and maximum values for a custom representation. It looks like this: [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/avr/ |
| H A D | constraints.md | 220 "Fixed-point or integer constant with bit representation 0x0" 225 "Fixed-point or integer constant with bit representation 0x1" 231 "Fixed-point or integer constant with bit representation -0x1" 237 "Fixed-point or integer constant with bit representation 0x2" 243 "Fixed-point or integer constant with bit representation -0x2"
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/GlobalISel/ |
| H A D | index.rst | 24 representation, which has a compile-time cost. 26 GlobalISel directly operates on the post-isel representation used by the 28 It does require extensions to that representation to support arbitrary
|