Home
last modified time | relevance | path

Searched refs:inner (Results 276 - 300 of 552) sorted by relevance

1...<<11121314151617181920>>...23

/third_party/python/Lib/
H A Dcontextlib.py79 def inner(*args, **kwds): function
82 return inner
95 async def inner(*args, **kwds): function
98 return inner
H A Dtimeit.py70 def inner(_it, _timer{init}):
135 self.inner = local_ns["inner"]
178 timing = self.inner(it, self.timer)
/third_party/rust/crates/clap/src/
H A Dmacros.rs547 $(#[$inner:ident $($args:tt)*])*
571 $(#[$inner $($args)*])*
581 $(#[$inner $($args)*])*
591 $(#[$inner $($args)*])*
/third_party/rust/crates/clap/src/error/
H A Dformat.rs36 } else if let Some(source) = error.inner.source.as_ref() { in format_error()
62 } else if let Some(source) = error.inner.source.as_ref() { in format_error()
112 try_help(&mut styled, error.inner.help_flag); in format_error()
325 if let Some(source) = error.inner.source.as_deref() { in write_dynamic_context()
/kernel/linux/linux-6.6/lib/
H A Dlocking-selftest.c2525 #define GENERATE_2_CONTEXT_TESTCASE(outer, outer_lock, inner, inner_lock) \
2527 static void __maybe_unused inner##_in_##outer(void) \
2529 /* Relies the reversed clean-up ordering: inner first */ \
2531 guard(inner)(inner_lock); \
2537 * o: inner is allowed in outer
2538 * x: inner is disallowed in outer
2540 * \ inner | RCU | RAW_SPIN | SPIN | MUTEX
2563 #define GENERATE_2_CONTEXT_TESTCASE_FOR_ALL_OUTER(inner, inner_lock) \
2564 GENERATE_2_CONTEXT_TESTCASE(HARDIRQ, , inner, inner_lock) \
2565 GENERATE_2_CONTEXT_TESTCASE(NOTTHREADED_HARDIRQ, , inner, inner_loc
[all...]
/third_party/skia/src/core/
H A DSkScan_Hairline.cpp294 static bool geometric_contains(const SkRect& outer, const SkRect& inner) {
295 SkASSERT(!is_inverted(outer) && !is_inverted(inner));
296 return inner.fRight <= outer.fRight && inner.fLeft >= outer.fLeft &&
297 inner.fBottom <= outer.fBottom && inner.fTop >= outer.fTop;
H A DSkStrokerPriv.h32 typedef void (*JoinProc)(SkPath* outer, SkPath* inner,
/third_party/rust/crates/env_logger/src/filter/
H A Dmod.rs69 mod inner; modules
73 mod inner; modules
84 filter: Option<inner::Filter>,
112 filter: Option<inner::Filter>,
292 fn parse_spec(spec: &str) -> (Vec<Directive>, Option<inner::Filter>) { in parse_spec()
350 let filter = filter.and_then(|filter| match inner::Filter::new(filter) { in parse_spec()
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/lag/
H A Dport_sel.h28 struct mlx5_lag_ttc inner; member
/third_party/ltp/tools/sparse/sparse-src/
H A Dscope.h65 extern int is_in_scope(struct scope *outer, struct scope *inner);
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dallowlist-namespaces-basic.rs15 pub mod inner { modules
/third_party/ffmpeg/libavcodec/arm/
H A Dvp8dsp_neon.S273 .macro vp8_loop_filter, inner=0, simple=0
334 .if \inner
341 .if !\inner && !\simple
375 .elseif \inner
376 @ the !is4tap case of filter_common, only used for inner blocks
446 .macro vp8_v_loop_filter16 name, inner=0, simple=0
468 vp8_loop_filter inner=\inner, simple=\simple
492 vp8_v_loop_filter16 _inner, inner=1
495 .macro vp8_v_loop_filter8uv name, inner
[all...]
/third_party/rust/crates/nix/src/sys/
H A Dtermios.rs237 inner: RefCell<libc::termios>,
263 let mut termios = self.inner.borrow_mut();
278 self.inner.borrow()
281 /// Exposes the inner `libc::termios` datastore within `Termios`.
283 /// This is unsafe because if this is used to modify the inner `libc::termios` struct, it will
289 let mut termios = self.inner.borrow_mut();
304 self.inner.as_ptr()
309 let termios = *self.inner.borrow_mut();
329 inner: RefCell::new(termios), in from()
347 termios.inner in from()
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/net/
H A Dpmtu.sh364 inner="${2}"
371 if [ "${inner}" = "4" ]; then
382 if [ "${inner}" = "4" ]; then
399 if [ "${inner}" = "4" ]; then
444 inner=${1}
450 if [ "${inner}" -eq 4 ]; then
461 if [ "${inner}" -eq 4 ]; then
474 if [ "${inner}" = "4" ]; then
1317 inner=${1}
1321 setup namespaces routing ip${inner}i
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
H A DesextcTessellationShaderInvariance.cpp207 /** Retrieves name of a vec2 uniform that stores inner tesselaton level information,
487 /* Retrieve inner/outer tess level uniform locations */ in initTest()
577 /* Configure inner/outer tessellation levels as requested for the iteration */ in iterate()
749 * @param out_inner_tess_levels Deref will be used to store iteration-specific inner
1016 * @param out_inner_tess_levels Deref will be used to store iteration-specific inner
1239 << ". Reference inner tessellation level:" in verifyResultData()
1244 << "), test inner tessellation level:" in verifyResultData()
1252 "the same outer tessellation levels and vertex spacing, but different inner " in verifyResultData()
1295 * @param out_inner_tess_levels Deref will be used to store iteration-specific inner
1355 /** Initializes test iterations for the test. The following modes and inner/oute
[all...]
/third_party/node/deps/openssl/openssl/util/
H A Dcheck-format-test-positives.c136 inner: /*@ inner label normal indent off by 1 */
/third_party/openssl/util/
H A Dcheck-format-test-positives.c136 inner: /*@ inner label normal indent off by 1 */
/third_party/rust/crates/syn/src/
H A Dfile.rs121 tokens.append_all(self.attrs.inner()); in to_tokens()
/kernel/linux/linux-5.10/kernel/locking/
H A Dspinlock_debug.c17 struct lock_class_key *key, short inner) in __raw_spin_lock_init()
24 lockdep_init_map_wait(&lock->dep_map, name, key, 0, inner); in __raw_spin_lock_init()
16 __raw_spin_lock_init(raw_spinlock_t *lock, const char *name, struct lock_class_key *key, short inner) __raw_spin_lock_init() argument
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dtir.c111 bool inner) in mlx5e_tir_builder_build_rss()
128 if (inner) in mlx5e_tir_builder_build_rss()
108 mlx5e_tir_builder_build_rss(struct mlx5e_tir_builder *builder, const struct mlx5e_rss_params_hash *rss_hash, const struct mlx5e_rss_params_traffic_type *rss_tt, bool inner) mlx5e_tir_builder_build_rss() argument
H A Dfs.h161 struct mlx5_ttc_table *mlx5e_fs_get_ttc(struct mlx5e_flow_steering *fs, bool inner);
162 void mlx5e_fs_set_ttc(struct mlx5e_flow_steering *fs, struct mlx5_ttc_table *ttc, bool inner);
/kernel/linux/linux-6.6/kernel/locking/
H A Dspinlock_debug.c17 struct lock_class_key *key, short inner) in __raw_spin_lock_init()
24 lockdep_init_map_wait(&lock->dep_map, name, key, 0, inner); in __raw_spin_lock_init()
16 __raw_spin_lock_init(raw_spinlock_t *lock, const char *name, struct lock_class_key *key, short inner) __raw_spin_lock_init() argument
/third_party/rust/crates/bindgen/bindgen/codegen/
H A Dimpl_debug.rs230 TypeKind::Pointer(inner) => { in impl_debug()
231 let inner_type = ctx.resolve_type(inner).canonical_type(ctx); in impl_debug()
/third_party/typescript/tests/baselines/reference/
H A DerrorSuperPropertyAccess.js73 function inner() {
218 function inner() {
/third_party/python/Lib/unittest/
H A Dresult.py14 def inner(self, *args, **kw): function
18 return inner

Completed in 19 milliseconds

1...<<11121314151617181920>>...23