| /freebsd-14.2/contrib/arm-optimized-routines/math/test/rtest/ |
| H A D | semi.h | 15 char *test_fmod(uint32 *a, uint32 *b, uint32 *out); 16 char *test_ldexp(uint32 *x, uint32 *n, uint32 *out); 17 char *test_frexp(uint32 *x, uint32 *out, uint32 *nout); 18 char *test_modf(uint32 *x, uint32 *iout, uint32 *fout); 21 char *test_fmodf(uint32 *a, uint32 *b, uint32 *out); 22 char *test_ldexpf(uint32 *x, uint32 *n, uint32 *out); 23 char *test_frexpf(uint32 *x, uint32 *out, uint32 *nout); 24 char *test_modff(uint32 *x, uint32 *iout, uint32 *fout); 26 char *test_copysign(uint32 *x, uint32 *y, uint32 *out); 27 char *test_copysignf(uint32 *x, uint32 *y, uint32 *out); [all …]
|
| H A D | semi.c | 130 char *test_fmod(uint32 *a, uint32 *b, uint32 *out) { in test_fmod() 204 char *test_fmodf(uint32 *a, uint32 *b, uint32 *out) { in test_fmodf() 271 char *test_ldexp(uint32 *x, uint32 *np, uint32 *out) { in test_ldexp() 349 char *test_ldexpf(uint32 *x, uint32 *np, uint32 *out) { in test_ldexpf() 419 char *test_frexp(uint32 *x, uint32 *out, uint32 *nout) { in test_frexp() 489 char *test_modf(uint32 *x, uint32 *fout, uint32 *iout) { in test_modf() 557 char *test_copysign(uint32 *x, uint32 *y, uint32 *out) in test_copysign() 569 char *test_copysignf(uint32 *x, uint32 *y, uint32 *out) in test_copysignf() 811 char *test_isgreater(uint32 *x, uint32 *y, uint32 *out) in test_isgreater() 825 char *test_isless(uint32 *x, uint32 *y, uint32 *out) in test_isless() [all …]
|
| H A D | intern.h | 24 typedef char * (*testsemi1)(uint32 *, uint32 *); 25 typedef char * (*testsemi2)(uint32 *, uint32 *, uint32 *); 26 typedef char * (*testsemi2f)(uint32 *, uint32 *, uint32 *); 27 typedef char * (*testldexp)(uint32 *, uint32 *, uint32 *); 28 typedef char * (*testfrexp)(uint32 *, uint32 *, uint32 *); 29 typedef char * (*testmodf)(uint32 *, uint32 *, uint32 *); 30 typedef char * (*testclassify)(uint32 *, uint32 *); 31 typedef char * (*testclassifyf)(uint32 *, uint32 *); 39 typedef void (*casegen)(uint32 *, uint32, uint32); 81 uint32 caseparam1, caseparam2;
|
| H A D | dotest.c | 26 static void cases_biased(uint32 *, uint32, uint32); 29 static void cases_uniform(uint32 *, uint32, uint32); 33 static void log_cases(uint32 *, uint32, uint32); 35 static void log1p_cases(uint32 *, uint32, uint32); 37 static void minmax_cases(uint32 *, uint32, uint32); 39 static void atan2_cases(uint32 *, uint32, uint32); 41 static void pow_cases(uint32 *, uint32, uint32); 43 static void rred_cases(uint32 *, uint32, uint32); 45 static void cases_semi1(uint32 *, uint32, uint32); 47 static void cases_semi2(uint32 *, uint32, uint32); [all …]
|
| H A D | random.c | 11 static uint32 seedbuf[55]; 24 uint32 base_random(void) { in base_random() 30 uint32 random32(void) { in random32() 31 uint32 a, b, b1, b2; in random32() 35 uint32 b3 = b1 | b2; in random32() 60 static uint32 random_upto_makemask(uint32 limit) { in random_upto_makemask() 69 static uint32 random_upto_internal(uint32 limit, uint32 mask) { in random_upto_internal() 70 uint32 ret; in random_upto_internal() 77 uint32 random_upto(uint32 limit) { in random_upto() 82 uint32 random_upto_biased(uint32 limit, int bias) { in random_upto_biased() [all …]
|
| H A D | wrappers.h | 17 const uint32 *ieee_ops[2]; 18 uint32 *ieee_result; 52 int size, const uint32 *ieee); 56 int size, const uint32 *ieee); 60 int size, uint32 *ieee); 65 int size, uint32 *ieee); 76 const uint32 *wrapper_get_ieee(wrapperctx *ctx, int op); 81 const uint32 *wrapper_get_ieee_r(wrapperctx *ctx, int op); 90 void wrapper_set_sign(wrapperctx *ctx, uint32 sign); 91 void wrapper_set_sign_r(wrapperctx *ctx, uint32 sign); [all …]
|
| H A D | random.h | 10 uint32 random32(void); 11 uint32 random_upto(uint32 limit); 12 uint32 random_upto_biased(uint32 limit, int bias);
|
| /freebsd-14.2/crypto/openssl/test/recipes/04-test_params_conversion_data/ |
| H A D | native_types.txt | 4 uint32=0 11 uint32=6 18 uint32=invalid 23 type=uint32 26 uint32=0 30 type=uint32 33 uint32=6 38 type=uint32 46 type=uint32 57 uint32=6 [all …]
|
| /freebsd-14.2/contrib/libpcap/ |
| H A D | rpcap-protocol.h | 138 typedef unsigned int uint32; /* 32-bit unsigned integer */ typedef 150 uint32 plen; /* Length of the payload of this RPCAP message */ 165 uint32 byte_order_magic; /* RPCAP_BYTE_ORDER_MAGIC, in server byte order */ 190 uint32 flags; /* Interface flags */ 251 uint32 addr; /* IPv4 address */ 263 uint32 flowinfo; /* IPv6 flow information */ 265 uint32 scope_id; /* Scope zone index */ 292 uint32 read_timeout; /* Read timeout in milliseconds */ 319 uint32 caplen; /* Length of portion present in the capture */ 320 uint32 len; /* Real length of this packet (off wire) */ [all …]
|
| /freebsd-14.2/crypto/openssh/ |
| H A D | PROTOCOL.mux | 11 uint32 packet type 69 uint32 request id 75 uint32 escape char 94 uint32 session id 105 uint32 session id 106 uint32 exit value 118 uint32 session id 125 uint32 request id 143 uint32 request id 149 uint32 server pid [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/memory-controllers/ddr/ |
| H A D | jedec,lpddr3-timings.yaml | 24 $ref: /schemas/types.yaml#/definitions/uint32 29 $ref: /schemas/types.yaml#/definitions/uint32 34 $ref: /schemas/types.yaml#/definitions/uint32 39 $ref: /schemas/types.yaml#/definitions/uint32 45 $ref: /schemas/types.yaml#/definitions/uint32 50 $ref: /schemas/types.yaml#/definitions/uint32 55 $ref: /schemas/types.yaml#/definitions/uint32 60 $ref: /schemas/types.yaml#/definitions/uint32 65 $ref: /schemas/types.yaml#/definitions/uint32 70 $ref: /schemas/types.yaml#/definitions/uint32 [all …]
|
| H A D | jedec,lpddr2-timings.yaml | 17 $ref: /schemas/types.yaml#/definitions/uint32 22 $ref: /schemas/types.yaml#/definitions/uint32 27 $ref: /schemas/types.yaml#/definitions/uint32 33 $ref: /schemas/types.yaml#/definitions/uint32 38 $ref: /schemas/types.yaml#/definitions/uint32 44 $ref: /schemas/types.yaml#/definitions/uint32 53 $ref: /schemas/types.yaml#/definitions/uint32 58 $ref: /schemas/types.yaml#/definitions/uint32 63 $ref: /schemas/types.yaml#/definitions/uint32 68 $ref: /schemas/types.yaml#/definitions/uint32 [all …]
|
| H A D | jedec,lpddr3.yaml | 31 $ref: /schemas/types.yaml#/definitions/uint32 42 $ref: /schemas/types.yaml#/definitions/uint32 49 $ref: /schemas/types.yaml#/definitions/uint32 56 $ref: /schemas/types.yaml#/definitions/uint32 63 $ref: /schemas/types.yaml#/definitions/uint32 69 $ref: /schemas/types.yaml#/definitions/uint32 75 $ref: /schemas/types.yaml#/definitions/uint32 82 $ref: /schemas/types.yaml#/definitions/uint32 88 $ref: /schemas/types.yaml#/definitions/uint32 94 $ref: /schemas/types.yaml#/definitions/uint32 [all …]
|
| /freebsd-14.2/usr.sbin/bsnmpd/modules/snmp_hostres/ |
| H A D | hostres_begemot.c | 48 value->v.uint32 = storage_tbl_refresh; in op_begemot() 52 value->v.uint32 = fs_tbl_refresh; in op_begemot() 56 value->v.uint32 = disk_storage_tbl_refresh; in op_begemot() 60 value->v.uint32 = network_tbl_refresh; in op_begemot() 64 value->v.uint32 = swins_tbl_refresh; in op_begemot() 68 value->v.uint32 = swrun_tbl_refresh; in op_begemot() 84 storage_tbl_refresh = value->v.uint32; in op_begemot() 89 fs_tbl_refresh = value->v.uint32; in op_begemot() 99 network_tbl_refresh = value->v.uint32; in op_begemot() 104 swins_tbl_refresh = value->v.uint32; in op_begemot() [all …]
|
| /freebsd-14.2/lib/libsdp/ |
| H A D | util.c | 293 uint32_t uint32; in sdp_print() member 322 SDP_GET32(value.uint32, start); in sdp_print() 374 SDP_GET32(value.uint32, start); in sdp_print() 389 SDP_GET32(value.uint32, start); in sdp_print() 390 printf("str32 %*.*s\n", value.uint32, value.uint32, start); in sdp_print() 391 start += value.uint32; in sdp_print() 412 SDP_GET32(value.uint32, start); in sdp_print() 415 start += value.uint32; in sdp_print() 434 start += value.uint32; in sdp_print() 449 printf("url32 %*.*s\n", value.uint32, value.uint32, start); in sdp_print() [all …]
|
| /freebsd-14.2/contrib/bc/tests/bc/ |
| H A D | lib2.txt | 313 uint32(0) 323 uint32(1) 335 uint32(127) 347 uint32(128) 359 uint32(129) 371 uint32(255) 383 uint32(256) 392 uint32(32767) 401 uint32(32768) 410 uint32(32769) [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | intel,ixp4xx-expansion-peripheral-props.yaml | 20 $ref: /schemas/types.yaml#/definitions/uint32 25 $ref: /schemas/types.yaml#/definitions/uint32 30 $ref: /schemas/types.yaml#/definitions/uint32 35 $ref: /schemas/types.yaml#/definitions/uint32 40 $ref: /schemas/types.yaml#/definitions/uint32 46 $ref: /schemas/types.yaml#/definitions/uint32 51 $ref: /schemas/types.yaml#/definitions/uint32 56 $ref: /schemas/types.yaml#/definitions/uint32 61 $ref: /schemas/types.yaml#/definitions/uint32 66 $ref: /schemas/types.yaml#/definitions/uint32 [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/mmc/ |
| H A D | sdhci-am654.yaml | 63 $ref: /schemas/types.yaml#/definitions/uint32 69 $ref: /schemas/types.yaml#/definitions/uint32 75 $ref: /schemas/types.yaml#/definitions/uint32 81 $ref: /schemas/types.yaml#/definitions/uint32 87 $ref: /schemas/types.yaml#/definitions/uint32 93 $ref: /schemas/types.yaml#/definitions/uint32 99 $ref: /schemas/types.yaml#/definitions/uint32 105 $ref: /schemas/types.yaml#/definitions/uint32 111 $ref: /schemas/types.yaml#/definitions/uint32 117 $ref: /schemas/types.yaml#/definitions/uint32 [all …]
|
| /freebsd-14.2/contrib/bsnmp/snmp_mibII/ |
| H A D | mibII_interfaces.c | 301 value->v.uint32 = in op_ifentry() 306 value->v.uint32 = ifp->mib.ifmd_data.ifi_ibytes; in op_ifentry() 315 value->v.uint32 = ifp->mib.ifmd_data.ifi_imcasts; in op_ifentry() 319 value->v.uint32 = ifp->mib.ifmd_data.ifi_iqdrops; in op_ifentry() 323 value->v.uint32 = ifp->mib.ifmd_data.ifi_ierrors; in op_ifentry() 331 value->v.uint32 = ifp->mib.ifmd_data.ifi_obytes; in op_ifentry() 344 value->v.uint32 = ifp->mib.ifmd_snd_drops; in op_ifentry() 352 value->v.uint32 = ifp->mib.ifmd_snd_len; in op_ifentry() 446 value->v.uint32 = 0; in op_ifxtable() 454 value->v.uint32 = 0; in op_ifxtable() [all …]
|
| H A D | mibII_ip.c | 281 value->v.uint32 = ipstat.ips_total; in op_ipstat() 296 value->v.uint32 = ipstat.ips_forward; in op_ipstat() 300 value->v.uint32 = ipstat.ips_noproto; in op_ipstat() 304 value->v.uint32 = ip_idrop; in op_ipstat() 308 value->v.uint32 = ipstat.ips_delivered; in op_ipstat() 312 value->v.uint32 = ipstat.ips_localout; in op_ipstat() 316 value->v.uint32 = ipstat.ips_odropped; in op_ipstat() 320 value->v.uint32 = ipstat.ips_noroute; in op_ipstat() 328 value->v.uint32 = ipstat.ips_fragments; in op_ipstat() 336 value->v.uint32 = ipstat.ips_fragdropped in op_ipstat() [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/regulator/ |
| H A D | anatop-regulator.yaml | 22 $ref: /schemas/types.yaml#/definitions/uint32 26 $ref: /schemas/types.yaml#/definitions/uint32 30 $ref: /schemas/types.yaml#/definitions/uint32 34 $ref: /schemas/types.yaml#/definitions/uint32 38 $ref: /schemas/types.yaml#/definitions/uint32 42 $ref: /schemas/types.yaml#/definitions/uint32 46 $ref: /schemas/types.yaml#/definitions/uint32 50 $ref: /schemas/types.yaml#/definitions/uint32 54 $ref: /schemas/types.yaml#/definitions/uint32 58 $ref: /schemas/types.yaml#/definitions/uint32
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/power/supply/ |
| H A D | charger-manager.yaml | 25 $ref: /schemas/types.yaml#/definitions/uint32 39 $ref: /schemas/types.yaml#/definitions/uint32 49 $ref: /schemas/types.yaml#/definitions/uint32 53 $ref: /schemas/types.yaml#/definitions/uint32 62 $ref: /schemas/types.yaml#/definitions/uint32 69 $ref: /schemas/types.yaml#/definitions/uint32 73 $ref: /schemas/types.yaml#/definitions/uint32 77 $ref: /schemas/types.yaml#/definitions/uint32 85 $ref: /schemas/types.yaml#/definitions/uint32 89 $ref: /schemas/types.yaml#/definitions/uint32 [all …]
|
| /freebsd-14.2/include/rpcsvc/ |
| H A D | nfs_prot.x | 391 uint32 seconds; 392 uint32 nseconds; 600 uint32 access; 605 uint32 access; 1058 uint32 rtmax; 1059 uint32 rtpref; 1060 uint32 rtmult; 1061 uint32 wtmax; 1062 uint32 wtpref; 1063 uint32 wtmult; [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/input/touchscreen/ |
| H A D | touchscreen.yaml | 15 $ref: /schemas/types.yaml#/definitions/uint32 20 $ref: /schemas/types.yaml#/definitions/uint32 25 $ref: /schemas/types.yaml#/definitions/uint32 29 $ref: /schemas/types.yaml#/definitions/uint32 33 $ref: /schemas/types.yaml#/definitions/uint32 38 $ref: /schemas/types.yaml#/definitions/uint32 42 $ref: /schemas/types.yaml#/definitions/uint32 46 $ref: /schemas/types.yaml#/definitions/uint32 51 $ref: /schemas/types.yaml#/definitions/uint32 56 $ref: /schemas/types.yaml#/definitions/uint32
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/gpio/ |
| H A D | xlnx,gpio-xilinx.yaml | 51 $ref: /schemas/types.yaml#/definitions/uint32 55 $ref: /schemas/types.yaml#/definitions/uint32 59 $ref: /schemas/types.yaml#/definitions/uint32 63 $ref: /schemas/types.yaml#/definitions/uint32 67 $ref: /schemas/types.yaml#/definitions/uint32 73 $ref: /schemas/types.yaml#/definitions/uint32 79 $ref: /schemas/types.yaml#/definitions/uint32 86 $ref: /schemas/types.yaml#/definitions/uint32 93 $ref: /schemas/types.yaml#/definitions/uint32 101 $ref: /schemas/types.yaml#/definitions/uint32 [all …]
|