| /openbsd-src/gnu/usr.bin/binutils/binutils/ |
| H A D | stabs.c | 685 debug_type dtype; in parse_stab_string() local 793 dtype = parse_stab_type (dhandle, info, (const char *) NULL, in parse_stab_string() 795 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string() 802 if (! debug_record_typed_const (dhandle, name, dtype, atoi (p))) in parse_stab_string() 814 dtype = parse_stab_type (dhandle, info, (const char *) NULL, in parse_stab_string() 816 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string() 818 if (! debug_record_label (dhandle, name, dtype, value)) in parse_stab_string() 825 dtype = parse_stab_type (dhandle, info, (const char *) NULL, &p, in parse_stab_string() 827 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string() 829 if (! debug_record_function (dhandle, name, dtype, type == 'F', value)) in parse_stab_string() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/binutils/ |
| H A D | stabs.c | 687 debug_type dtype; in parse_stab_string() local 795 dtype = parse_stab_type (dhandle, info, (const char *) NULL, in parse_stab_string() 797 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string() 804 if (! debug_record_typed_const (dhandle, name, dtype, atoi (p))) in parse_stab_string() 816 dtype = parse_stab_type (dhandle, info, (const char *) NULL, in parse_stab_string() 818 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string() 820 if (! debug_record_label (dhandle, name, dtype, value)) in parse_stab_string() 827 dtype = parse_stab_type (dhandle, info, (const char *) NULL, &p, in parse_stab_string() 829 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string() 831 if (! debug_record_function (dhandle, name, dtype, type == 'F', value)) in parse_stab_string() [all …]
|
| /openbsd-src/lib/libm/src/ |
| H A D | s_lrintl.c | 35 #define dtype long macro 46 dtype 50 dtype d; in fn() 53 d = (dtype)roundit(x); in fn()
|
| H A D | s_lrintf.c | 35 #define dtype long macro 46 dtype 50 dtype d; in fn() 53 d = (dtype)roundit(x); in fn()
|
| H A D | s_lrint.c | 35 #define dtype long macro 46 dtype 50 dtype d; in fn() 53 d = (dtype)roundit(x); in fn()
|
| H A D | s_lroundl.c | 36 #define dtype long macro 55 dtype 61 return ((dtype)x); in fn()
|
| H A D | s_llrintf.c | 9 #define dtype long long macro
|
| H A D | s_llrint.c | 9 #define dtype long long macro
|
| H A D | s_llrintl.c | 9 #define dtype long long macro
|
| H A D | s_llroundl.c | 9 #define dtype long long macro
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/models/ |
| H A D | gen-regalloc-priority-test-model.py | 39 (key, tf.TensorSpec(dtype=tf.int64, shape=(), name=key)) 43 tf.TensorSpec(dtype=tf.float32, shape=(), name=key)) 46 dict((key, tf.TensorSpec(dtype=tf.float32, shape=(), name=key)) 49 dict((key, tf.TensorSpec(dtype=tf.int32, shape=(), name=key)) 63 module.var = tf.Variable(0, dtype=tf.float32)
|
| H A D | gen-inline-oz-test-model.py | 37 tf.TensorSpec(dtype=tf.int64, shape=(), name=key) for key in [ 79 tf.TensorSpec(dtype=tf.float32, shape=(), name=key) 85 tf.TensorSpec(dtype=tf.int32, shape=(), name=key) 106 return {signature['output']: tf.constant(value=1, dtype=tf.int64)}
|
| H A D | gen-regalloc-eviction-test-model.py | 32 (key, tf.TensorSpec(dtype=tf.int64, shape=(NUM_REGISTERS), name=key)) 46 module.var = tf.Variable(0, dtype=tf.int64)
|
| /openbsd-src/usr.bin/ssh/ |
| H A D | dns.c | 308 u_int8_t dtype; in export_dns_rr() local 313 for (dtype = SSHFP_HASH_SHA1; dtype < SSHFP_HASH_MAX; dtype++) { in export_dns_rr() 314 if (alg != -1 && dtype != alg) in export_dns_rr() 316 rdata_digest_type = dtype; in export_dns_rr()
|
| /openbsd-src/gnu/usr.bin/perl/ext/VMS-Filespec/lib/VMS/ |
| H A D | Filespec.pm | 253 my($node,$dev,$dir,$name,$type,$ver,$dnode,$ddev,$ddir,$dname,$dtype,$dver); 279 ($dnode,$ddev,$ddir,$dname,$dtype,$dver) = 285 $type = $dtype if $dtype && !$type;
|
| /openbsd-src/distrib/armv7/miniroot/ |
| H A D | boot.cmd | 2 load ${dtype} ${disk}:1 ${fdtaddr} ${fdtfile} ; 3 load ${dtype} ${disk}:1 ${loadaddr} efi/boot/bootarm.efi ;
|
| /openbsd-src/gnu/usr.bin/perl/t/porting/ |
| H A D | libperl.t | 281 my ($dtype, $symbol, $suffix) = ($1, $2, $3); 285 $symbols->{data}{$dtype}{$symbol}{$symbols->{o}}++; 352 for my $dtype (sort keys %{$symbols{data}}) { 353 for my $symbol (sort keys %{$symbols{data}{$dtype}}) {
|
| /openbsd-src/lib/libcrypto/rsa/ |
| H A D | rsa_sign.c | 271 RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, in RSA_verify() argument 275 return rsa->meth->rsa_verify(dtype, m, m_len, sigbuf, siglen, in RSA_verify() 278 return int_rsa_verify(dtype, m, m_len, NULL, NULL, sigbuf, siglen, rsa); in RSA_verify()
|
| H A D | rsa_local.h | 88 int (*rsa_verify)(int dtype, const unsigned char *m, 135 extern int int_rsa_verify(int dtype, const unsigned char *m,
|
| H A D | rsa_meth.c | 293 (*RSA_meth_get_verify(const RSA_METHOD *meth))(int dtype, in RSA_meth_get_verify() 302 RSA_meth_set_verify(RSA_METHOD *meth, int (*verify)(int dtype, in RSA_meth_set_verify() argument
|
| /openbsd-src/sbin/newfs_msdos/ |
| H A D | newfs_msdos.c | 247 const char *dtype, *bname; in main() local 345 dtype = *argv; in main() 374 getdiskinfo(fd, fname, dtype, oflag, &bpb); in main() 713 getdiskinfo(int fd, const char *fname, const char *dtype, int oflag, in getdiskinfo() argument 740 if (!dtype) { in getdiskinfo() 744 } else if (!(lp = getdiskbyname(dtype))) in getdiskinfo() 745 errx(1, "%s: unknown disk type", dtype); in getdiskinfo()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | class.c | 1776 tree dtype; local 1788 dtype = make_node (RECORD_TYPE); 1790 PUSH_FIELD (dtype, dummy, "top_offset", ptr_type_node); 1791 PUSH_FIELD (dtype, dummy, "type_info", ptr_type_node); 1793 PUSH_FIELD (dtype, dummy, "class", class_ptr_type); 1798 DECL_CONTEXT (tmp_field) = dtype; 1803 PUSH_FIELD (dtype, dummy, "gc_descr", ptr_type_node); 1808 DECL_CONTEXT (tmp_field) = dtype; 1817 PUSH_FIELD (dtype, dummy, "methods", 1819 layout_type (dtype); [all …]
|
| /openbsd-src/usr.sbin/unbound/services/ |
| H A D | localzone.h | 260 * @param dtype: type to lookup, if type DS a zone higher is used for zonecuts. 268 uint8_t* name, size_t len, int labs, uint16_t dclass, uint16_t dtype, 279 * @param dtype: type of the record, if type DS then a zone higher up is found 284 uint8_t* name, size_t len, int labs, uint16_t dclass, uint16_t dtype);
|
| /openbsd-src/sbin/unwind/libunbound/services/ |
| H A D | localzone.h | 260 * @param dtype: type to lookup, if type DS a zone higher is used for zonecuts. 268 uint8_t* name, size_t len, int labs, uint16_t dclass, uint16_t dtype, 279 * @param dtype: type of the record, if type DS then a zone higher up is found 284 uint8_t* name, size_t len, int labs, uint16_t dclass, uint16_t dtype);
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/cp/ |
| H A D | cvt.c | 746 tree dtype = TREE_TYPE (e); local 749 dtype = TYPE_MAIN_VARIANT (dtype); 764 && ! (IS_AGGR_TYPE (dtype) && DERIVED_FROM_P (type, dtype)))
|