Home
last modified time | relevance | path

Searched +full:0 +full:x0000001 (Results 1 – 19 of 19) sorted by relevance

/freebsd/sys/sys/
H A Dbus.h69 DEVICE_PROP_ANY = 0,
98 #define DF_ENABLED 0x01 /* device should be probed/attached */
99 #define DF_FIXEDCLASS 0x02 /* devclass specified at create time */
100 #define DF_WILDCARD 0x04 /* unit was originally wildcard */
101 #define DF_DESCMALLOCED 0x08 /* description was malloced */
102 #define DF_QUIET 0x10 /* don't print verbose attach message */
103 #define DF_DONENOMATCH 0x20 /* don't execute DEVICE_NOMATCH again */
104 #define DF_EXTERNALSOFTC 0x40 /* softc not allocated by us */
105 #define DF_SUSPENDED 0x100 /* Device is suspended. */
106 #define DF_QUIET_CHILDREN 0x200 /* Default to quiet for all my children */
[all …]
H A Dkernel.h96 SI_SUB_DUMMY = 0x0000000, /* not executed; for linker */
97 SI_SUB_TUNABLES = 0x0700000, /* establish tunable values */
98 SI_SUB_COPYRIGHT = 0x0800001, /* first use of console */
99 SI_SUB_VM = 0x1000000, /* virtual memory system init */
100 SI_SUB_COUNTER = 0x1100000, /* counter(9) is initialized */
101 SI_SUB_KMEM = 0x1800000, /* kernel memory */
102 SI_SUB_HYPERVISOR = 0x1A40000, /*
107 SI_SUB_WITNESS = 0x1A80000, /* witness initialization */
108 SI_SUB_MTX_POOL_DYNAMIC = 0x1AC0000, /* dynamic mutex pool */
109 SI_SUB_LOCK = 0x1B00000, /* various locks */
[all …]
/freebsd/contrib/file/src/
H A Dmagic.h.in32 #define MAGIC_NONE 0x0000000 /* No flags */
33 #define MAGIC_DEBUG 0x0000001 /* Turn on debugging */
34 #define MAGIC_SYMLINK 0x0000002 /* Follow symlinks */
35 #define MAGIC_COMPRESS 0x0000004 /* Check inside compressed files */
36 #define MAGIC_DEVICES 0x0000008 /* Look at the contents of devices */
37 #define MAGIC_MIME_TYPE 0x0000010 /* Return the MIME type */
38 #define MAGIC_CONTINUE 0x0000020 /* Return all matches */
39 #define MAGIC_CHECK 0x0000040 /* Print warnings to stderr */
40 #define MAGIC_PRESERVE_ATIME 0x0000080 /* Restore access time on exit */
41 #define MAGIC_RAW 0x0000100 /* Don't convert unprintable chars */
[all …]
/freebsd/sys/i386/include/
H A Dpmap_base.h35 #define MAPDEV_SETATTR 0x0000001 /* Modify existing attrs. */
/freebsd/sys/contrib/device-tree/Bindings/arm/
H A Dpsci.yaml29 to #0.
70 # HVC #0, with the register assignments specified in this binding.
118 It should also be noted that, in PSCI firmware v1.0 the OS-Initiated
151 cpu_suspend = <0x95c10000>;
152 cpu_off = <0x95c10001>;
153 cpu_on = <0x95c10002>;
154 migrate = <0x95c10003>;
182 cpu_on = <0x95c10002>;
183 cpu_off = <0x95c10001>;
191 #size-cells = <0>;
[all...]
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dpci.h77 #define PCIE_CONFIG_FLAG_ENABLE_L1 0x0000001
102 ATH10K_PCI_IRQ_AUTO = 0,
142 * 0xdeadbeef readouts.
203 #define BAR_NUM 0
205 #define CDC_WAR_MAGIC_STR 0xceef0000
/freebsd/sys/compat/linux/
H A Dlinux_ioctl.h38 #define LINUX_IOC_VOID 0
39 #define LINUX_IOC_IN 0x40000000
40 #define LINUX_IOC_OUT 0x80000000
46 #define LINUX_BLKROSET 0x125d
47 #define LINUX_BLKROGET 0x125e
48 #define LINUX_BLKRRPART 0x125f
49 #define LINUX_BLKGETSIZE 0x1260
50 #define LINUX_BLKFLSBUF 0x1261
51 #define LINUX_BLKRASET 0x1262
52 #define LINUX_BLKRAGET 0x1263
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DMemory.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
33 MemoryBlock() : Address(nullptr), AllocatedSize(0) {} in MemoryBlock()
44 unsigned Flags = 0;
55 MF_READ = 0x1000000,
56 MF_WRITE = 0x2000000,
57 MF_EXEC = 0x4000000,
58 MF_RWE_MASK = 0x7000000,
70 MF_HUGE_HINT = 0x0000001
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dhotfoot.dts18 dcr-parent = <&{/cpus/cpu@0}>;
29 #size-cells = <0>;
31 cpu@0 {
34 reg = <0x00000000>;
35 clock-frequency = <0>; /* Filled in by zImage */
36 timebase-frequency = <0>; /* Filled in by zImage */
37 i-cache-line-size = <0x20>;
38 d-cache-line-size = <0x20>;
39 i-cache-size = <0x4000>;
40 d-cache-size = <0x4000>;
[all …]
/freebsd/sys/security/mac/
H A Dmac_internal.h98 0, arg0, arg1, arg2, arg3); \
101 } while (0)
104 MAC_CHECK_PROBE4(name, error, arg0, arg1, arg2, 0)
106 MAC_CHECK_PROBE3(name, error, arg0, arg1, 0)
108 MAC_CHECK_PROBE2(name, error, arg0, 0)
127 } while (0)
148 #define MAC_FLAG_INITIALIZED 0x0000001 /* Is initialized for use. */
160 #define MPC_OBJECT_CRED 0x0000000000000001
161 #define MPC_OBJECT_PROC 0x0000000000000002
162 #define MPC_OBJECT_VNODE 0x0000000000000004
[all …]
/freebsd/stand/kshim/
H A Dbsd_kernel.h42 #define nitems(x) (sizeof((x)) / sizeof((x)[0]))
44 #define isdigit(x) ((x) >= '0' && (x) <= '9')
45 #define panic(...) do { printf("USB PANIC: " __VA_ARGS__); while (1) ; } while (0)
46 #define rebooting 0
47 #define M_USB 0
48 #define M_USBDEV 0
53 #define USB_BUS_EXPLORE_PROC(bus) (usb_process + 0)
72 #define sysctl_ctx_init(ctx) do { (void)(ctx); } while (0)
73 #define sysctl_ctx_free(ctx) do { (void)(ctx); } while (0)
81 #define SCHEDULER_STOPPED(x) (0)
[all …]
/freebsd/sbin/routed/
H A Ddefs.h47 * do not advertise if ipforwarding=0
103 #define EPOCH NEVER /* bias time by this to avoid <0 */
123 #define INADDR_ALLROUTERS_GROUP 0xe0000002 /* 224.0.0.2 */
127 #define MIN_PreferenceLevel 0x80000000
162 # define RS_IF 0x001 /* for network interface */
163 # define RS_NET_INT 0x002 /* authority route */
164 # define RS_NET_SYN 0x004 /* fake net route for subnet */
166 # define RS_SUBNET 0x008 /* subnet route from any source */
167 # define RS_LOCAL 0x010 /* loopback for pt-to-pt */
168 # define RS_MHOME 0x020 /* from -m */
[all …]
/freebsd/sbin/fsck_ffs/
H A Dfsck.h87 } while (0)
105 #define USTATE 0x1 /* inode not allocated */
106 #define FSTATE 0x2 /* inode is file */
107 #define FZLINK 0x3 /* inode is file with a link count of zero */
108 #define DSTATE 0x4 /* inode is directory */
109 #define DZLINK 0x5 /* inode is directory with a zero link count */
110 #define DFOUND 0x6 /* directory found during descent */
111 /* 0x7 UNUSED - see S_IS_DVALID() definition */
112 #define DCLEAR 0x8 /* directory is to be cleared */
113 #define FCLEAR 0x
[all...]
/freebsd/crypto/heimdal/lib/hx509/
H A Dks_p11.c139 memset(&mechanism, 0, sizeof(mechanism)); in p11_rsa_private_encrypt()
177 memset(&mechanism, 0, sizeof(mechanism)); in p11_rsa_private_decrypt()
225 new_method = RSA_meth_new("hx509 PKCS11 PKCS#1 RSA", 0); in get_p11_rsa_pkcs1_method()
273 hx509_set_error_string(context, 0, HX509_PKCS11_NO_MECH, in p11_mech_info()
278 if (i == 0) { in p11_mech_info()
279 hx509_set_error_string(context, 0, HX509_PKCS11_NO_MECH, in p11_mech_info()
283 slot->mechs.list = calloc(i, sizeof(slot->mechs.list[0])); in p11_mech_info()
285 hx509_set_error_string(context, 0, ENOMEM, in p11_mech_info()
292 hx509_set_error_string(context, 0, HX509_PKCS11_NO_MECH, in p11_mech_info()
301 hx509_set_error_string(context, 0, ENOMEM, in p11_mech_info()
[all …]
/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dacl_common.c52 #define ACL_SYNCHRONIZE_SET_DENY 0x0000001
53 #define ACL_SYNCHRONIZE_SET_ALLOW 0x0000002
54 #define ACL_SYNCHRONIZE_ERR_DENY 0x0000004
55 #define ACL_SYNCHRONIZE_ERR_ALLOW 0x0000008
57 #define ACL_WRITE_OWNER_SET_DENY 0x0000010
58 #define ACL_WRITE_OWNER_SET_ALLOW 0x0000020
59 #define ACL_WRITE_OWNER_ERR_DENY 0x0000040
60 #define ACL_WRITE_OWNER_ERR_ALLOW 0x0000080
62 #define ACL_DELETE_SET_DENY 0x0000100
63 #define ACL_DELETE_SET_ALLOW 0x0000200
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dfilesystems5 0 name partid
6 >0 ubyte 0x00 Unused
7 >0 ubyte 0x01 12-bit FAT
8 >0 ubyte 0x02 XENIX /
9 >0 ubyte 0x03 XENIX /usr
10 >0 ubyte 0x04 16-bit FAT, less than 32M
11 >0 ubyte 0x05 extended partition
12 >0 ubyte 0x06 16-bit FAT, more than 32M
13 >0 ubyte 0x07 OS/2 HPFS, NTFS, QNX2, Adv. UNIX
14 >0 ubyte 0x08 AIX or os, or etc.
[all …]
/freebsd/sys/dev/ath/ath_hal/
H A Dah.h70 HAL_OK = 0, /* No error */
92 AH_FALSE = 0, /* NB: lots of code assumes false is zero */
97 HAL_CAP_REG_DMN = 0, /* current regulatory domain */
226 HAL_LED_INIT = 0,
239 HAL_TX_QUEUE_INACTIVE = 0, /* queue is inactive/unused */
257 HAL_RX_QUEUE_HP = 0, /* high priority recv queue */
271 HAL_WME_AC_BK = 0, /* background access category */
289 HAL_TXQ_TXOKINT_ENABLE = 0x0001, /* enable TXOK interrupt */
290 HAL_TXQ_TXERRINT_ENABLE = 0x0001, /* enable TXERR interrupt */
291 HAL_TXQ_TXDESCINT_ENABLE = 0x0002, /* enable TXDESC interrupt */
[all …]
/freebsd/usr.sbin/ctladm/
H A Dctladm.c123 CTLADM_ARG_NONE = 0x0000000,
124 CTLADM_ARG_AUTOSENSE = 0x0000001,
125 CTLADM_ARG_DEVICE = 0x0000002,
126 CTLADM_ARG_ARRAYSIZE = 0x0000004,
127 CTLADM_ARG_BACKEND = 0x0000008,
128 CTLADM_ARG_CDBSIZE = 0x0000010,
129 CTLADM_ARG_DATALEN = 0x0000020,
130 CTLADM_ARG_FILENAME = 0x0000040,
131 CTLADM_ARG_LBA = 0x0000080,
132 CTLADM_ARG_PC = 0x0000100,
[all …]
/freebsd/contrib/sqlite3/
H A Dsqlite3.c130 #define HAVE_LOG2 0
163 #define SQLITE_OS_OTHER 0
166 #define SQLITE_ENABLE_LOCKING_STYLE 0
170 #define OS_VXWORKS 0
213 ** value of 0 means that compiler is not being used. The
215 ** optimizations, and hence set all compiler macros to 0
227 # define GCC_VERSION 0
232 # define MSVC_VERSION 0
240 # if MSVC_VERSION==0 || MSVC_VERSION>=1800
243 # define SQLITE_HAVE_C99_MATH_FUNCS (0)
[all …]