Home
last modified time | relevance | path

Searched refs:component (Results 1 – 25 of 263) sorted by relevance

1234567891011

/freebsd/contrib/file/magic/Magdir/
H A Ddyadic21 >>>1 byte 0x01 component file 32-bit non-journaled non-checksummed
22 #>>>1 byte 0x01 component file
37 >>>1 byte 0x09 component file 64-bit non-journaled non-checksummed
39 >>>1 byte 0x0b component file 32-bit level 1 journaled non-checksummed
40 >>>1 byte 0x0c component file 64-bit level 1 journaled non-checksummed
41 >>>1 byte 0x0d component file 32-bit level 1 journaled checksummed
42 >>>1 byte 0x0e component file 64-bit level 1 journaled checksummed
43 >>>1 byte 0x0f component file 32-bit level 2 journaled checksummed
44 >>>1 byte 0x10 component file 64-bit level 2 journaled checksummed
45 >>>1 byte 0x11 component file 32-bit level 3 journaled checksummed
[all …]
H A Dmisctools28 # look for Free/Busy component
29 >>>>15 search/278 :VFREEBUSY file, with Free/Busy component
34 # iCalendar calendar without Free/Busy component
36 # look for ALARM component
37 >>>>>15 search/154 :VALARM file, with ALARM component
43 # iCalendar calendar without Free/Busy component and ALARM component
/freebsd/usr.sbin/bsdinstall/scripts/
H A Dpkgbase.in76 -- Creates a dialog for component selection mirroring the
77 -- traditional tarball component selection dialog.
109 local show_component = function (component)
111 if component == "pkg" then return false end
125 -- If we're installing in a jail, and this component
130 if not options.jail and component:match("%-jail$") then
148 -- If we didn't find a reason to hide this component, show it.
152 for component, _ in pairs(components) do
153 if show_component(component) then
154 table.insert(sorted_components, component)
[all …]
/freebsd/contrib/opencsd/decoder/include/common/
H A Dcomp_attach_pt_t.h73 virtual ocsd_err_t attach(T* component);
82 virtual ocsd_err_t detach(T* component);
86 virtual ocsd_err_t replace_first(T* component);
167 template<class T> ocsd_err_t componentAttachPt<T>::attach(T* component) in attach() argument
171 m_comp = component; in attach()
177 template<class T> ocsd_err_t componentAttachPt<T>::replace_first(T* component) in replace_first() argument
182 if(component == 0) in replace_first()
185 return attach(component); in replace_first()
188 template<class T> ocsd_err_t componentAttachPt<T>::detach(T* component) in detach() argument
190 if(m_comp != component) in detach()
/freebsd/crypto/openssh/regress/
H A Dcheck-perm.c38 char component[PATH_MAX]; in safely_chroot() local
43 if (strlen(path) >= sizeof(component)) in safely_chroot()
52 strlcpy(component, path, sizeof(component)); in safely_chroot()
55 memcpy(component, path, cp - path); in safely_chroot()
56 component[cp - path] = '\0'; in safely_chroot()
61 if (stat(component, &st) != 0) in safely_chroot()
63 component, strerror(errno)); in safely_chroot()
67 cp == NULL ? "" : "component ", component); in safely_chroot()
70 cp == NULL ? "" : "component ", component); in safely_chroot()
/freebsd/contrib/kyua/utils/fs/
H A Dpath.cpp63 const std::string component = in.substr(pos, next_pos - pos); in normalize() local
64 if (!component.empty()) { in normalize()
66 out += component; in normalize()
67 else if (component != ".") in normalize()
68 out += "/" + component; in normalize()
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/
H A Dtda1997x.txt8 - YUV422 semi-planar 8bit per component (16 bits total): Y[11:4] CbCr[11:4]
9 - YUV422 semi-planar 10bit per component (20 bits total): Y[11:2] CbCr[11:2]
10 - YUV422 semi-planar 12bit per component (24 bits total): - Y[11:0] CbCr[11:0]
11 - YUV422 BT656 8bit per component (8 bits total): YCbCr[11:4] (2-cycles)
12 - YUV422 BT656 10bit per component (10 bits total): YCbCr[11:2] (2-cycles)
13 - YUV422 BT656 12bit per component (12 bits total): YCbCr[11:0] (2-cycles)
18 - YUV422 semi-planar 12bit per component (24 bits total): Y[11:0] CbCr[11:0]
19 - YUV422 BT656 12bit per component (12 bits total): YCbCr[11:0] (2-cycles)
H A Dnxp,tda1997x.txt8 - YUV422 semi-planar 8bit per component (16 bits total): Y[11:4] CbCr[11:4]
9 - YUV422 semi-planar 10bit per component (20 bits total): Y[11:2] CbCr[11:2]
10 - YUV422 semi-planar 12bit per component (24 bits total): - Y[11:0] CbCr[11:0]
11 - YUV422 BT656 8bit per component (8 bits total): YCbCr[11:4] (2-cycles)
12 - YUV422 BT656 10bit per component (10 bits total): YCbCr[11:2] (2-cycles)
13 - YUV422 BT656 12bit per component (12 bits total): YCbCr[11:0] (2-cycles)
18 - YUV422 semi-planar 12bit per component (24 bits total): Y[11:0] CbCr[11:0]
19 - YUV422 BT656 12bit per component (12 bits total): YCbCr[11:0] (2-cycles)
H A Dtvp514x.txt5 video formats into digital video component. The tvp514x decoder supports analog-
6 to-digital (A/D) conversion of component RGB and YPbPr signals as well as A/D
8 component YCbCr.
H A Dti,tvp514x.txt5 video formats into digital video component. The tvp514x decoder supports analog-
6 to-digital (A/D) conversion of component RGB and YPbPr signals as well as A/D
8 component YCbCr.
/freebsd/contrib/ofed/libmlx5/
H A Dbuf.c327 const char *component) in mlx5_alloc_prefered_buf() argument
355 ret = mlx5_alloc_buf_contig(mctx, buf, size, page_size, component); in mlx5_alloc_prefered_buf()
417 void mlx5_get_alloc_type(const char *component, in mlx5_get_alloc_type() argument
425 snprintf(name, sizeof(name), "%s_ALLOC_TYPE", component); in mlx5_get_alloc_type()
448 const char *component) in mlx5_alloc_get_env_info() argument
459 snprintf(name, sizeof(name), "%s_MAX_LOG2_CONTIG_BSIZE", component); in mlx5_alloc_get_env_info()
470 sprintf(name, "%s_MIN_LOG2_CONTIG_BSIZE", component); in mlx5_alloc_get_env_info()
486 const char *component) in mlx5_alloc_buf_contig() argument
497 component); in mlx5_alloc_buf_contig()
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dbld_princ.c54 char *component = NULL; in build_principal_va() local
62 while (!retval && (component = va_arg(ap, char *))) { in build_principal_va()
76 data[count].length = strlen(component); in build_principal_va()
77 data[count].data = strdup(component); in build_principal_va()
/freebsd/crypto/openssl/crypto/cmp/
H A Dcmp_util.c113 * substitute fallback if component/function name is NULL or empty or contains
126 int OSSL_CMP_print_to_bio(BIO *bio, const char *component, const char *file,
139 if (BIO_printf(bio, "%s:%s:%d:", improve_location_name(component, "CMP"), in OSSL_CMP_print_to_bio()
159 const char *component = improve_location_name(func, ERR_lib_error_string(err)); in OSSL_CMP_print_errors_cb() local
186 OSSL_CMP_print_to_bio(bio, component, file, line, in OSSL_CMP_print_errors_cb()
194 if (log_fn(component, file, line, OSSL_CMP_LOG_ERR, msg) <= 0) in OSSL_CMP_print_errors_cb()
127 OSSL_CMP_print_to_bio(BIO * bio,const char * component,const char * file,int line,OSSL_CMP_severity level,const char * msg) OSSL_CMP_print_to_bio() argument
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzfs_znode.c201 char *component = comp_buf; in zfs_obj_to_path_impl() local
220 component[0] = '/'; in zfs_obj_to_path_impl()
222 strcpy(component + 1, "<xattrdir>"); in zfs_obj_to_path_impl()
225 ZFS_DIRENT_OBJ(-1ULL), component + 1, in zfs_obj_to_path_impl()
231 complen = strlen(component); in zfs_obj_to_path_impl()
234 memcpy(path, component, complen); in zfs_obj_to_path_impl()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPathMappingList.cpp188 auto component = llvm::sys::path::begin(components, style); in AppendPathComponents() local
190 while (component != e && in AppendPathComponents()
191 llvm::sys::path::is_separator(*component->data(), style)) in AppendPathComponents()
192 ++component; in AppendPathComponents()
193 for (; component != e; ++component) in AppendPathComponents()
194 path.AppendPathComponent(*component); in AppendPathComponents()
/freebsd/contrib/ntp/sntp/libevent/cmake/
H A DLibeventConfig.cmake.in4 # LIBEVENT_xxx_FOUND - true if component xxx(see available components) found on the system
24 # If no component provided, all components will be used.
32 # find_package() can handle dependencies automatically. For example, given the 'openssl' component,
75 message(FATAL_ERROR "Your libevent library does not contain a ${_comp} component!\n"
78 message_if_needed(WARNING "Your libevent library does not contain a ${_comp} component!")
138 message_if_needed(STATUS "Found libevent component: ${_event_lib}")
/freebsd/contrib/libevent/cmake/
H A DLibeventConfig.cmake.in4 # LIBEVENT_xxx_FOUND - true if component xxx(see available components) found on the system
24 # If no component provided, all components will be used.
32 # find_package() can handle dependencies automatically. For example, given the 'openssl' component,
75 message(FATAL_ERROR "Your libevent library does not contain a ${_comp} component!\n"
78 message_if_needed(WARNING "Your libevent library does not contain a ${_comp} component!")
138 message_if_needed(STATUS "Found libevent component: ${_event_lib}")
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_CMP_log_open.pod42 typedef int (*OSSL_CMP_log_cb_t)(const char *component,
45 int OSSL_CMP_print_to_bio(BIO *bio, const char *component, const char *file,
62 typedef int (*OSSL_CMP_log_cb_t)(const char *component,
67 some component info (which may be a module name and/or function name) or NULL,
94 OSSL_CMP_print_to_bio() prints the given component info, filename, line number,
96 I<component> usually is a function or module name.
H A DEVP_PKEY_check.pod24 EVP_PKEY_param_check() validates the parameters component of the key
28 EVP_PKEY_param_check_quick() validates the parameters component of the key
34 EVP_PKEY_public_check() validates the public component of the key given by B<ctx>.
36 EVP_PKEY_public_check_quick() validates the public component of the key
42 EVP_PKEY_private_check() validates the private component of the key given by B<ctx>.
H A DOSSL_HTTP_parse_url.pod55 The host (or server) component may be a DNS name or an IP address
57 The port component is optional and defaults to C<0>.
60 The path component is also optional and defaults to C</>.
62 I<ppath>, I<pquery>, and I<pfrag>, is assigned the respective url component.
66 If I<pquery> is NULL, any given query component is handled as part of the path.
75 The port component is optional and defaults to C<443> if the scheme is C<https>,
/freebsd/sys/contrib/device-tree/Bindings/clock/ti/
H A Dcomposite.txt14 The binding must provide a list of the component clocks that shall be
15 merged to this clock. The component clocks shall be of one of the
25 - clocks : link phandles of component clocks
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h188 /// directory component, then the \a file must have the same directory
189 /// component. Otherwise, just it matches just the filename. An empty \a
380 FileSpec CopyByAppendingPathComponent(llvm::StringRef component) const; in IsResolved()
383 void PrependPathComponent(llvm::StringRef component);
386 void AppendPathComponent(llvm::StringRef component);
389 /// Removes the last path component by replacing the current path with its
404 /// A std::vector of llvm::StringRefs for each path component.
/freebsd/crypto/heimdal/doc/
H A Dlayman.asc154 are used to distinguish between component types
156 a given structured type, and component types in
276 component types within a structured type. For instance,
290 one component, the underlying type. Explicit tagging is
302 like a structured type with one component, the underlying
557 component of a structured or CHOICE type.
560 attributes component with an implicit, context-specific tag:
576 Example: The BER encoding of the attributes component of a
600 version component of X.509's Certificate type.
614 component of a SEQUENCE, SET or CHOICE type.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/arm/marvell/
H A Darmada-37xx.txt5 Power Management component is needed:
22 For AVS an other component is needed:
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dname-prefix.txt10 the component.
12 Example: Two instances of the same component.

1234567891011