Home
last modified time | relevance | path

Searched +full:separately +full:- +full:defined (Results 1 – 25 of 486) sorted by relevance

12345678910>>...20

/freebsd-src/contrib/googletest/googlemock/src/
H A Dgmock_main.cc35 #if defined(GTEST_OS_ESP8266) || defined(GTEST_OS_ESP32) || \
36 (defined(GTEST_OS_NRF52) && defined(ARDUINO))
43 // no need for calling testing::InitGoogleTest() separately. in setup()
54 // causes a link error when _tmain is defined in a static library and UNICODE
57 …8/connect.microsoft.com/VisualStudio/feedback/details/394464/wmain-link-error-in-the-static-library
69 // no need for calling testing::InitGoogleTest() separately.
/freebsd-src/sys/contrib/openzfs/include/os/linux/zfs/sys/
H A Dtrace_dbgmsg.h9 * or https://opensource.org/licenses/CDDL-1.0.
22 #if defined(_KERNEL)
23 #if defined(HAVE_DECLARE_EVENT_CLASS)
31 #if !defined(_TRACE_DBGMSG_H) || defined(TRACE_HEADER_MULTI_READ)
46 * be guarded separately.
/freebsd-src/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_cwksp.h2 * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc.
5 * This source code is licensed under both the BSD-style license (found in the
8 * You may select, at your option, one of the above-listed licenses.
14 /*-*************************************
19 #if defined (__cplusplus)
23 /*-*************************************
38 /*-*************************************
56 * - These different internal datastructures have different setup requirements:
58 * - The static objects need to be cleared once and can then be trivially
61 * - Various buffers don't need to be initialized at all--they are always
[all …]
/freebsd-src/crypto/openssl/crypto/ec/curve448/
H A Dcurve448utils.h2 * Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
21 * Internal word types. Somewhat tricky. This could be decided separately per
28 # if (defined(__SIZEOF_INT128__) && (__SIZEOF_INT128__ == 16)) \
29 && !defined(__sparc__) \
30 && (!defined(__SIZEOF_LONG__) || (__SIZEOF_LONG__ == 8))
43 /* "Boolean" type, will be set to all-zero or all-one (i.e. -1u) */
45 /* Double-word size for internal computations */
47 /* Signed double-word size for internal computations */
54 /* "Boolean" type, will be set to all-zero or all-one (i.e. -1u) */
56 /* Double-word size for internal computations */
[all …]
/freebsd-src/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h3 * \file windows-config.h
7 * routines are in separately compiled modules so that they will not
12 * AutoOpts is Copyright (C) 1992-2018 by Bruce Korb - all rights reserved
84 * has been defined.
116 #if defined(HAVE_INTTYPES_H)
119 #elif defined(HAVE_STDINT_H)
123 #elif ! defined(ADDED_EXACT_SIZE_INTEGERS)
144 /* windows-config.h ends here */
/freebsd-src/crypto/openssl/include/openssl/
H A Dopensslv.h5 * Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
41 /* Could be: #define OPENSSL_VERSION_PRE_RELEASE "-alpha.1" */
58 * This is defined in free form.
83 * These strings are defined separately to allow them to be parsable.
H A Dopensslv.h.in2 * {- join("\n * ", @autowarntext) -}
4 * Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
29 # define OPENSSL_VERSION_MAJOR {- $config{major} -}
30 # define OPENSSL_VERSION_MINOR {- $config{minor} -}
31 # define OPENSSL_VERSION_PATCH {- $config{patch} -}
40 /* Could be: #define OPENSSL_VERSION_PRE_RELEASE "-alpha.1" */
41 # define OPENSSL_VERSION_PRE_RELEASE "{- $config{prerelease} -}"
44 # define OPENSSL_VERSION_BUILD_METADATA "{- $config{build_metadata} -}"
57 * This is defined in free form.
59 # define OPENSSL_SHLIB_VERSION {- $config{shlib_version} -}
[all …]
/freebsd-src/usr.sbin/ctld/
H A Dctl.conf.547 .Bd -literal -offset indent
50 .No auth-group Ar name No {
55 .No portal-group Ar name No {
57 .\".Dl listen-iser Ar address
58 .Dl discovery-auth-group Ar name
63 .Dl auth-group Ar name
64 .Dl portal-group Ar name
72 .Bl -tag -width indent
73 .It Ic auth-group Ar name
75 .Sy auth-group
[all …]
/freebsd-src/share/man/man4/
H A Dpt.447 adapter must be separately configured into the system
63 They are defined in the header file
65 .Bl -tag -width 012345678901234
78 .Bl -tag -width /dev/ptQQQ -compact
H A Dses.442 Host Adapter, as well as emulated support for SAF-TE (SCSI Accessible
51 adapter must also be separately configured into the system
77 They are defined in the header file
80 .Bl -tag -width ENCIOC_GETENCSTAT
111 The contents of this page are device-specific.
114 The contents of this page are device-specific.
126 .Bl -tag -width /dev/rsdXXXXX -compact
/freebsd-src/crypto/openssl/crypto/bn/
H A Dbn_mont.c2 * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
20 #define MONT_WORD /* use the faster word-based algorithm */
42 int num = mont->N.top; in bn_mul_mont_fixed_top()
44 #if defined(OPENSSL_BN_ASM_MONT) && defined(MONT_WORD) in bn_mul_mont_fixed_top()
45 if (num > 1 && num <= BN_SOFT_LIMIT && a->top == num && b->top == num) { in bn_mul_mont_fixed_top()
48 if (bn_mul_mont(r->d, a->d, b->d, mont->N.d, mont->n0, num)) { in bn_mul_mont_fixed_top()
49 r->neg = a->neg ^ b->neg; in bn_mul_mont_fixed_top()
50 r->top = num; in bn_mul_mont_fixed_top()
51 r->flags |= BN_FLG_FIXED_TOP; in bn_mul_mont_fixed_top()
57 if ((a->top + b->top) > 2 * num) in bn_mul_mont_fixed_top()
[all …]
/freebsd-src/sys/contrib/zstd/lib/compress/
H A Dzstd_cwksp.h5 * This source code is licensed under both the BSD-style license (found in the
8 * You may select, at your option, one of the above-listed licenses.
14 /*-*************************************
19 #if defined (__cplusplus)
23 /*-*************************************
42 /*-*************************************
54 * expect a well-formed caller to free this.
70 * - These different internal datastructures have different setup requirements:
72 * - The static objects need to be cleared once and can then be trivially
75 * - Various buffers don't need to be initialized at all--they are always
[all …]
/freebsd-src/contrib/llvm-project/libcxx/include/__format/
H A Dformat_args.h1 // -*- C++ -*-
2 //===------
[all...]
/freebsd-src/share/man/man4/man4.arm/
H A Dmge.435 .Bd -ragged -offset indent
43 system-on-chip devices.
48 .Bl -tag -width xxxxxxxxxxxxxxxxxxxx
62 .Bl -tag -width xxxxxxxxxxxxxxxxxxxx
63 .It full-duplex
90 frame interrupt is delayed, if possible, until a threshold-defined period of
92 The following sysctls regulate this behaviour (separately for each path):
93 .Bl -tag -width indent
106 Gigabit Ethernet controllers built into the following Marvell systems-on-chip
111 .Bl -bullet -compact
[all …]
/freebsd-src/contrib/xz/src/common/
H A Dsysdefs.h1 // SPDX-License-Identifier: 0BSD
6 /// \brief Common includes, definitions, system-specific things etc.
27 // available with MinGW-w64 (both 32-bit and 64-bit). Modern MinGW-w64 adds
33 // C99-compatible stdio functions. It's still nice to #define this as UCRT
47 // don't do that, and require including stdint.h separately.
52 // Some pre-C99 systems have SIZE_MAX in limits.h instead of stdint.h. The
53 // limits are also used to figure out some macros missing from pre-C99 systems.
56 // Be more compatible with systems that have non-conforming inttypes.h.
57 // We assume that int is 32-bit and that long is either 32-bit or 64-bit.
63 # error UINT32_C is not defined and unsigned int is not 32-bit.
[all …]
/freebsd-src/contrib/xz/src/liblzma/check/
H A Dcrc32_fast.c1 // SPDX-License-Identifier: 0BSD
17 #if defined(CRC_X86_CLMUL)
20 #elif defined(CRC32_ARM64)
45 --size; in crc32_generic()
51 // Calculate how many bytes must be calculated separately in crc32_generic()
55 // Calculate the CRC32 using the slice-by-eight algorithm. in crc32_generic()
70 // between the two table-lookup pairs. in crc32_generic()
79 while (size-- != 0) in crc32_generic()
91 #if defined(CRC32_GENERIC) && defined(CRC32_ARCH_OPTIMIZED)
97 // If both the generic and arch-optimized implementations are built, then
[all …]
/freebsd-src/contrib/libarchive/tar/test/
H A Dtest_option_n.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
20 /* Test 1: -c without -n */
24 systemf("%s -cf archive.tar -C .. d1 >c.out 2>c.err", testprog));
28 systemf("%s -x
[all...]
/freebsd-src/sys/contrib/device-tree/Bindings/sound/
H A Dfsl-sai.txt10 - compatible : Compatible list, contains "fsl,vf610-sai",
11 "fsl,imx6sx-sai", "fsl,imx6ul-sai",
12 "fsl,imx7ulp-sai", "fsl,imx8mq-sai",
13 "fsl,imx8qm-sai", "fsl,imx8mm-sai",
14 "fsl,imx8mn-sai", "fsl,imx8mp-sai", or
15 "fsl,imx8ulp-sai".
17 - reg : Offset and length of the register set for the device.
19 - clocks : Must contain an entry for each entry in clock-names.
21 - clock-names : Must include the "bus" for register access and
27 - dmas : Generic dma devicetree binding as described in
[all …]
/freebsd-src/contrib/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal_defs.h
/freebsd-src/tests/sys/cddl/zfs/tests/acl/cifs/
H A Dcifs_attr_002_pos.ksh1 #!/usr/local/bin/ksh93 -p
42 # 1. Loop super user and non-super user to run the test case.
44 # 3. Grant user has PRIV_FILE_FLAG_SET/PRIV_FILE_FLAG_CLEAR separately.
51 # CODING_STATUS: COMPLETED (2007-11-05)
67 if [[ -n $gobject ]]; then
73 log_must $RM -rf $mtpt/file.* $mtpt/dir.*
91 if [[ -z $object ]]; then
92 log_fail "Object not defined."
95 if [[ -z $attr ]]; then
97 if [[ -f $object ]]; then
[all …]
/freebsd-src/share/man/man9/
H A Dieee80211_proto.967 The following states are defined for state machines:
68 .Bl -tag -width IEEE80211_S_ASSOC
108 When WPA/802.11i/802.1x is operational authorization may happen separately;
178 single-threads the state machine logic in a dedicated
183 After multi-vap scheduling/coordination is done the per-vap
189 layer using the previously defined method pointer (in OOP-parlance they
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h1 //===-- Socket.h ------------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 #include "lldb/lldb-private.h"
33 #if defined(_WIN32)
75 // implemented separately because the caller may wish to manipulate or query
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineModelFeatureMaps.h1 //===- InlineModelFeatureMaps.h - common model runner defs ------*- C++ -*
[all...]
/freebsd-src/tests/sys/cddl/zfs/tests/history/
H A Dhistory_009_pos.ksh1 #!/usr/local/bin/ksh93 -p
62 # c-$ identifies permission to create at dataset creation time.
63 # C-$ identifies permission sets to grant locally at dataset
66 # s-$@<name> permissions defined in specified set @<name>
67 # S-$@<name> Sets defined in named set @<name>
72 # 3. Separately verify the internal history above is correct.
78 # CODING_STATUS: COMPLETED (2006-12-26)
91 if [[ -f $REAL_HISTORY ]]; then
92 log_must $RM -f $REAL_HISTORY
94 if [[ -f $ADD_HISTORY ]]; then
[all …]
/freebsd-src/contrib/ntp/html/
H A Dfilter.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
4 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
12 <!-- #BeginDate format:En2m -->10-Mar-2014 05:05<!-- #EndDate -->
15 …esses the offset and delay samples produced by the on-wire protocol for each peer process separate…
19 …gram</em> plotting sample points of offset versus delay collected over a 24-hr period. As the de…
20 …ples near the limb lines, as described on the <a href="huffpuff.html">Huff-n'-Puff Filter</a> page…
21-wire protocol are inserted as the youngest stage of an eight-stage shift register, thus discardi…
23 …or each stage, starting from the youngest numbered <em>i</em> = 1, is 2<sup>-<em>i</em></sup>, whi…
24 …d so forth. In practice, the synchronization distance, which is equal to one-half the delay plus t…
29-hr period. The graph on the left shows the raw offsets produced by the on-wired protocol, while t…

12345678910>>...20