OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
numpy
/
core
/
include
/
numpy
/
random
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
bitgen.h
389 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
distributions.h
9.41 KB
10/28/2024 05:59:24 AM
rw-r--r--
Editing: bitgen.h
Close
#ifndef _RANDOM_BITGEN_H #define _RANDOM_BITGEN_H #pragma once #include <stddef.h> #include <stdbool.h> #include <stdint.h> /* Must match the declaration in numpy/random/<any>.pxd */ typedef struct bitgen { void *state; uint64_t (*next_uint64)(void *st); uint32_t (*next_uint32)(void *st); double (*next_double)(void *st); uint64_t (*next_raw)(void *st); } bitgen_t; #endif