Home
last modified time | relevance | path

Searched full:dependent (Results 1 – 25 of 1811) sorted by relevance

12345678910>>...73

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDependenceFlags.h24 // Note that C++ standard doesn't define the instantiation-dependent term,
34 // considered dependent on how that error is resolved.
62 /// - is a dependent type (C++ [temp.dep.type])
64 Dependent = 4, enumerator
75 DependentInstantiation = Dependent | Instantiation,
87 Dependent = 4, \
91 DependentInstantiation = Dependent | Instantiation, \
125 Dependent = Type | Value, in LLVM_COMMON_DEPENDENCE() enumerator
137 // that semantically depends on an instantiation-dependent entity should in LLVM_COMMON_DEPENDENCE()
138 // always be instantiated when that instantiation-dependent entity is. in LLVM_COMMON_DEPENDENCE()
[all …]
H A DTemplateName.h191 /// Some template names are dependent. For example, consider:
202 /// hence is represented as a dependent template name.
233 /// A dependent template name that has not been resolved to a
272 /// declaration because it is a dependent name, or if it refers to a
281 /// specific set of function templates because it is a dependent name or
308 /// Retrieve the underlying dependent template name
320 /// Determines whether this is a dependent template name.
440 /// the template name would be a dependent name and we would express
481 /// Represents a dependent template name that cannot be
484 /// This kind of template name refers to a dependent template name,
[all …]
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Drtree.h135 rtree_ctx_t *rtree_ctx, uintptr_t key, bool dependent, bool init_missing); in rtree_leafkey()
170 * dependent: Reading a value on behalf of a pointer to a valid allocation
174 * !dependent: An arbitrary read, e.g. on behalf of ivsalloc(), may not be in rtree_leaf_elm_bits_read() argument
175 * dependent on a previous rtree write, which means a stale read in rtree_leaf_elm_bits_read()
181 rtree_leaf_elm_t *elm, bool dependent) { in rtree_leaf_elm_bits_extent_get()
182 return (uintptr_t)atomic_load_p(&elm->le_bits, dependent in rtree_leaf_elm_bits_extent_get()
240 bool dependent) { in rtree_leaf_elm_slab_read()
242 uintptr_t bits = rtree_leaf_elm_bits_read(tsdn, rtree, elm, dependent); in rtree_leaf_elm_slab_read()
247 unsigned metadata_bits = atomic_load_u(&elm->le_metadata, dependent
259 contents.edata = (edata_t *)atomic_load_p(&elm->le_edata, dependent in rtree_leaf_elm_extent_write()
212 rtree_leaf_elm_extent_read(tsdn_t * tsdn,rtree_t * rtree,rtree_leaf_elm_t * elm,bool dependent) rtree_leaf_elm_extent_read() argument
225 rtree_leaf_elm_szind_read(tsdn_t * tsdn,rtree_t * rtree,rtree_leaf_elm_t * elm,bool dependent) rtree_leaf_elm_szind_read() argument
237 rtree_leaf_elm_slab_read(tsdn_t * tsdn,rtree_t * rtree,rtree_leaf_elm_t * elm,bool dependent) rtree_leaf_elm_slab_read() argument
328 rtree_leaf_elm_lookup(tsdn_t * tsdn,rtree_t * rtree,rtree_ctx_t * rtree_ctx,uintptr_t key,bool dependent,bool init_missing) rtree_leaf_elm_lookup() argument
405 rtree_read(tsdn_t * tsdn,rtree_t * rtree,rtree_ctx_t * rtree_ctx,uintptr_t key,bool dependent) rtree_read() argument
417 rtree_extent_read(tsdn_t * tsdn,rtree_t * rtree,rtree_ctx_t * rtree_ctx,uintptr_t key,bool dependent) rtree_extent_read() argument
428 rtree_szind_read(tsdn_t * tsdn,rtree_t * rtree,rtree_ctx_t * rtree_ctx,uintptr_t key,bool dependent) rtree_szind_read() argument
444 rtree_extent_szind_read(tsdn_t * tsdn,rtree_t * rtree,rtree_ctx_t * rtree_ctx,uintptr_t key,bool dependent,extent_t ** r_extent,szind_t * r_szind) rtree_extent_szind_read() argument
493 rtree_szind_slab_read(tsdn_t * tsdn,rtree_t * rtree,rtree_ctx_t * rtree_ctx,uintptr_t key,bool dependent,szind_t * r_szind,bool * r_slab) rtree_szind_slab_read() argument
[all...]
/freebsd/contrib/jemalloc/src/
H A Drtree.c106 rtree_child_node_tryread(rtree_node_elm_t *elm, bool dependent) { in rtree_node_init()
109 if (dependent) { in rtree_node_init()
117 assert(!dependent || node != NULL); in rtree_node_init()
123 unsigned level, bool dependent) { in rtree_node_init()
126 node = rtree_child_node_tryread(elm, dependent); in rtree_node_init()
127 if (!dependent && unlikely(!rtree_node_valid(node))) {
130 assert(!dependent || node != NULL); in rtree_leaf_init()
135 rtree_child_leaf_tryread(rtree_node_elm_t *elm, bool dependent) { in rtree_leaf_init()
138 if (dependent) { in rtree_leaf_init()
146 assert(!dependent || lea in rtree_leaf_init()
165 rtree_child_node_tryread(rtree_node_elm_t * elm,bool dependent) rtree_child_node_tryread() argument
182 rtree_child_node_read(tsdn_t * tsdn,rtree_t * rtree,rtree_node_elm_t * elm,unsigned level,bool dependent) rtree_child_node_read() argument
194 rtree_child_leaf_tryread(rtree_node_elm_t * elm,bool dependent) rtree_child_leaf_tryread() argument
211 rtree_child_leaf_read(tsdn_t * tsdn,rtree_t * rtree,rtree_node_elm_t * elm,unsigned level,bool dependent) rtree_child_leaf_read() argument
224 rtree_leaf_elm_lookup_hard(tsdn_t * tsdn,rtree_t * rtree,rtree_ctx_t * rtree_ctx,uintptr_t key,bool dependent,bool init_missing) rtree_leaf_elm_lookup_hard() argument
[all...]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DComputeDependence.cpp49 // dependent member of the current instantiation is value-dependent. An in computeDependence()
50 // expression of the form & cast-expression is also value-dependent if in computeDependence()
78 // Never type-dependent (C++ [temp.dep.expr]p3). in computeDependence()
79 // Value-dependent if the argument is type-dependent. in computeDependence()
86 // Value-dependent if the argument is type-dependent. in computeDependence()
90 // dependent because decl's alignment is dependent. in computeDependence()
143 // Cast expressions are type-dependent if the type is in computeDependence()
144 // dependent (C++ [temp.dep.expr]p3). in computeDependence()
145 // Cast expressions are value-dependent if the type is in computeDependence()
146 // dependent or if the subexpression is value-dependent. in computeDependence()
[all …]
/freebsd/share/man/man9/
H A Dcpu_machdep.936 .Nd machine-dependent interfaces to handle CPU and thread state
113 releases machine-dependent resources other than the address space for the
119 copies and updates machine-dependent state
157 copies machine-dependent state (for example, the pcb and user registers) from
272 handles any machine-dependent
277 handles any machine-dependent
346 These functions support the management of machine-dependent thread
373 initializes machine-dependent fields in
389 releases any machine-dependent resources for the last thread in a
397 cleans any machine-dependent state in
[all …]
H A Dpmap.931 .Nd machine-dependent portion of virtual memory subsystem
39 module is the machine-dependent portion of the
43 architecture-dependent implementation.
48 is responsible for managing hardware-dependent objects such as page tables,
51 Machine-dependent code must provide the header file
/freebsd/sys/dev/isp/
H A DDriverManual.txt42 and MD (Machine Dependent) portions. The original design therefore was
221 and bus specific outer modules (machine dependent).
237 dependent module (where configuration is begun from and bus specific
244 soft state structure contains a machine/bus dependent vector (mdvec)
250 The machine dependent outer module must provide functional entry points
257 The machine dependent outer module code must also provide a set of
297 dependent vector as well as any other platform specific information that
306 Part of the isp_reset call may cause callbacks out to the bus dependent
309 Channel HBA). The reason this is considered 'bus dependent' is that
310 only the bus dependent module may have the information that says how
[all …]
/freebsd/lib/libsys/
H A Dsysarch.235 .Nd architecture-dependent system call
46 performs the architecture-dependent function
58 for the architecture-dependent
67 its functions using the architecture-dependent
70 See the manual pages for specific architecture-dependent system calls
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DADL.h1 //===- llvm/ADT/ADL.h - Argument dependent lookup utilities -----*- C++ -*-===//
76 /// function found through Argument-Dependent Lookup (ADL).
84 /// functions found through Argument-Dependent Lookup (ADL).
92 /// function found through Argument-Dependent Lookup (ADL).
100 /// functions found through Argument-Dependent Lookup (ADL).
108 /// Argument-Dependent Lookup (ADL).
116 /// Argument-Dependent Lookup (ADL).
/freebsd/usr.bin/top/
H A Dmachine.h5 * This file defines the interface between top and the machine-dependent
6 * module. It is NOT machine dependent and should not need to be changed
37 * the system_info struct is filled in by a machine dependent routine.
80 /* routines defined by the machine dependent module */
91 /* non-int routines typically used by the machine dependent module */
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Drsend_006_pos.ksh37 # Rename snapshot name will not change the dependent order.
43 # 4. Verify snapshot name will not change the dependent order.
63 log_assert "Rename snapshot name will not change the dependent order."
83 log_pass "Rename snapshot name will not change the dependent order."
H A Drsend_007_pos.ksh37 # Rename parent filesystem name will not change the dependent order.
42 # 3. Verify renamed dataset will not change the snapshot dependent order.
63 log_assert "Rename parent filesystem name will not change the dependent order."
98 log_pass "Rename parent filesystem name will not change the dependent order."
/freebsd/sys/dev/hptmv/
H A DmvOs.h75 /* System dependent typedefs */
87 /* System dependent macro for flushing CPU write cache */
90 /* System dependent little endian from / to CPU conversions */
97 /* System dependent register read / write in byte/word/dword variants */
105 /* System dependent structure */
/freebsd/tests/sys/cddl/zfs/tests/rsend/
H A Drsend_006_pos.ksh36 # Rename snapshot name will not change the dependent order.
42 # 4. Verify snapshot name will not change the dependent order.
71 log_assert "Rename snapshot name will not change the dependent order."
91 log_pass "Rename snapshot name will not change the dependent order."
H A Drsend_007_pos.ksh36 # Rename parent filesystem name will not change the dependent order.
41 # 3. Verify renamed dataset will not change the snapshot dependent order.
71 log_assert "Rename parent filesystem name will not change the dependent order."
108 log_pass "Rename parent filesystem name will not change the dependent order."
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td8 /// A type node that is only used to represent dependent types in C++. For
10 /// where the base template-id is dependent (such as `T::foo<U>`). Code
11 /// that only works with non-dependent types can ignore these type nodes.
31 /// A type node that only represents a canonical type in some dependent cases.
36 /// and so remains canonical. Code which only works with non-dependent
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/
H A Dzfs_destroy_003_pos.ksh132 "with dependent clone outside it."
137 log_fail "'zfs destroy -r' fails to keep dependent " \
143 "with dependent clone outside it."
150 "without dependent clone outside it."
/freebsd/share/mk/
H A Dbsd.README127 Flags dependent on source file name.
129 Flags dependent on output file name.
133 Flags dependent on source file name.
135 Flags dependent on output file name.
139 Flags dependent on source file name.
141 Flags dependent on output file name.
143 Flags dependent on compiler added to CFLAGS.
151 Flags dependent on compiler added to CXXFLAGS.
155 Flags dependent on source file name.
157 Flags dependent on output file name.
[all …]
/freebsd/contrib/elftoolchain/libelf/
H A Dgelf_getsyminfo.342 These convenience functions are used to retrieve and update class-dependent
64 retrieves class-dependent record at index
77 to class-dependent form, and writes it to the record at index
H A Dgelf_getcap.342 These convenience functions are used to retrieve and update class-dependent
64 retrieves the class-dependent entry at index
77 to class-dependent form, and writes it to the entry at index
H A Dgelf_getdyn.342 These convenience functions are used to retrieve and update class-dependent
66 retrieves the class-dependent entry at index
79 to class-dependent form, and writes it to the entry at index
H A Dgelf_getmove.342 These convenience functions are used to retrieve and update class-dependent
64 retrieves class-dependent move record at index
77 to class-dependent form, and writes it to the move record at index
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_unshare/
H A Dzfs_unshare_003_pos.ksh37 # Verify that a file system and its dependent are unshared when turn off sharenfs
88 log_assert "Verify that a file system and its dependent are unshared."
94 log_pass "A file system and its dependent are both unshared as expected."
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_destroy/
H A Dzfs_destroy_003_pos.ksh139 "with clone dependent outside it."
145 "dependent outside the hirearchy."
150 "with clone dependent outside it."
157 "without clone dependent outside it."

12345678910>>...73