Home
last modified time | relevance | path

Searched refs:target (Results 2201 - 2225 of 6932) sorted by relevance

1...<<81828384858687888990>>...278

/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_blitter.h55 const char *src_target = util_str_tex_target((blit)->src.resource->target, true); \
56 const char *dst_target = util_str_tex_target((blit)->dst.resource->target, true); \
/third_party/mesa3d/src/gallium/drivers/i915/
H A Di915_resource.c11 if (template->target == PIPE_BUFFER) in i915_resource_create()
26 if (template->target == PIPE_BUFFER) in i915_resource_from_handle()
/third_party/rust/crates/bindgen/bindgen/
H A Dfeatures.rs14 /// Represents the version of the Rust language to target.
54 "Got an invalid rust target. Accepted values ", in from_str()
62 fn from(target: RustTarget) -> Self { in from()
63 match target { in from()
90 #[deprecated = "This rust target is deprecated. If you have a good reason to use this target please report it at https://github.com/rust-lang/rust-bindgen/issues"] => Stable_1_0 => 1.0;
93 #[deprecated = "This rust target is deprecated. If you have a good reason to use this target please report it at https://github.com/rust-lang/rust-bindgen/issues"] => Stable_1_17 => 1.17;
96 #[deprecated = "This rust target is deprecated. If you have a good reason to use this target pleas
[all...]
/third_party/skia/src/gpu/
H A DGrEagerVertexAllocator.h40 GrEagerDynamicVertexAllocator(GrMeshDrawTarget* target, in GrEagerDynamicVertexAllocator() argument
43 : fTarget(target) in GrEagerDynamicVertexAllocator()
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djutils.c150 jzero_far(void *target, size_t bytestozero) in jzero_far() argument
154 MEMZERO(target, bytestozero); in jzero_far()
/third_party/skia/third_party/externals/brotli/js/
H A Dpolyfill.js18 Array.prototype.copyWithin = function(target, start, end) {
21 var to = target | 0;
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dverify_hmtx.cc70 bool VerifyHMTX(Table* original, Table* target) { in VerifyHMTX() argument
72 EXPECT_TRUE(VerifyHMTX(target)); in VerifyHMTX()
H A Dverify_maxp.cc66 bool VerifyMAXP(Table* original, Table* target) { in VerifyMAXP() argument
68 EXPECT_TRUE(VerifyMAXP(target)); in VerifyMAXP()
H A Dverify_name.cc62 bool VerifyNAME(Table* original, Table* target) { in VerifyNAME() argument
64 EXPECT_TRUE(VerifyNAME(target)); in VerifyNAME()
/third_party/skia/experimental/graphite/src/
H A DDrawPass.h53 TextureProxy* target() const { return fTarget.get(); } in target() function in skgpu::DrawPass
72 // has already begun a correctly configured render pass matching this pass's target.
78 DrawPass(sk_sp<TextureProxy> target,
/third_party/rust/crates/syn/
H A Dbuild.rs53 if let Some(target) = env::var_os("TARGET") { in unstable()
54 cmd.arg("--target").arg(target); in unstable()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dcapture_gles_ext_autogen.h112 GLenum target,
133 GLenum target,
302 GLenum target,
323 GLenum target,
532 GLenum target,
539 GLenum target,
583 GLenum target,
623 GLenum target,
638 GLenum target,
910 GLenum target,
[all...]
/kernel/linux/linux-5.10/tools/perf/
H A Dbuiltin-record.c24 #include "util/target.h"
893 if (opts->initial_delay || target__has_cpu(&opts->target)) { in record__open()
930 evsel__open_strerror(pos, &opts->target, errno, msg, sizeof(msg)); in record__open()
1276 if (target__none(&rec->opts.target)) in record__switch_output()
1327 if (target__none(&rec->opts.target)) in record__switch_output()
1503 err = __machine__synthesize_threads(machine, tool, &opts->target, rec->evlist->core.threads, in record__synthesize()
1551 if (perf_evlist__start_sb_thread(rec->sb_evlist, &rec->opts.target)) { in record__setup_sb_evlist()
1692 err = perf_evlist__prepare_workload(rec->evlist, &opts->target, in __cmd_record()
1789 if (!target__none(&opts->target) && !opts->initial_delay) in __cmd_record()
1966 if (done && !disabled && !target__none(&opts->target)) { in __cmd_record()
[all...]
/third_party/python/Lib/unittest/
H A Dmock.py688 f'Cannot autospec attr {name!r} from target '
690 f'[target={self!r}, attr={result.spec!r}]')
1299 f'target has already been mocked out. [spec_set={spec_set!r}]')
1399 target = self.getter()
1406 original = target.__dict__[name]
1408 original = getattr(target, name, DEFAULT)
1412 if name in _builtins and isinstance(target, ModuleType):
1417 "%s does not have the attribute %r" % (target, name)
1427 self.target = self.getter()
1527 if _is_instance_mock(self.target)
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath9k/
H A Deeprom.c37 int16_t ath9k_hw_interpolate(u16 target, u16 srcLeft, u16 srcRight, in ath9k_hw_interpolate() argument
45 rv = (int16_t) (((target - srcLeft) * targetRight + in ath9k_hw_interpolate()
46 (srcRight - target) * targetLeft) / in ath9k_hw_interpolate()
52 bool ath9k_hw_get_lower_upper_index(u8 target, u8 *pList, u16 listSize, in ath9k_hw_get_lower_upper_index() argument
57 if (target <= pList[0]) { in ath9k_hw_get_lower_upper_index()
61 if (target >= pList[listSize - 1]) { in ath9k_hw_get_lower_upper_index()
67 if (pList[i] == target) { in ath9k_hw_get_lower_upper_index()
71 if (target < pList[i + 1]) { in ath9k_hw_get_lower_upper_index()
/kernel/linux/linux-5.10/security/apparmor/
H A Dmount.c695 struct aa_label *target = NULL; in aa_pivotroot() local
708 target = fn_label_build(label, profile, GFP_KERNEL, in aa_pivotroot()
711 if (!target) { in aa_pivotroot()
715 } else if (!IS_ERR(target)) { in aa_pivotroot()
716 error = aa_replace_current_label(target); in aa_pivotroot()
718 /* TODO: audit target */ in aa_pivotroot()
719 aa_put_label(target); in aa_pivotroot()
722 aa_put_label(target); in aa_pivotroot()
725 error = PTR_ERR(target); in aa_pivotroot()
/kernel/linux/linux-5.10/drivers/gpu/drm/ttm/
H A Dttm_memory.c242 uint64_t target; in ttm_zones_above_swap_target() local
248 target = zone->swap_limit; in ttm_zones_above_swap_target()
250 target = zone->emer_mem; in ttm_zones_above_swap_target()
252 target = zone->max_mem; in ttm_zones_above_swap_target()
254 target = (extra > target) ? 0ULL : target; in ttm_zones_above_swap_target()
256 if (zone->used_mem > target) in ttm_zones_above_swap_target()
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath9k/
H A Deeprom.c37 int16_t ath9k_hw_interpolate(u16 target, u16 srcLeft, u16 srcRight, in ath9k_hw_interpolate() argument
45 rv = (int16_t) (((target - srcLeft) * targetRight + in ath9k_hw_interpolate()
46 (srcRight - target) * targetLeft) / in ath9k_hw_interpolate()
52 bool ath9k_hw_get_lower_upper_index(u8 target, u8 *pList, u16 listSize, in ath9k_hw_get_lower_upper_index() argument
57 if (target <= pList[0]) { in ath9k_hw_get_lower_upper_index()
61 if (target >= pList[listSize - 1]) { in ath9k_hw_get_lower_upper_index()
67 if (pList[i] == target) { in ath9k_hw_get_lower_upper_index()
71 if (target < pList[i + 1]) { in ath9k_hw_get_lower_upper_index()
/kernel/linux/linux-6.6/security/apparmor/
H A Dmount.c723 struct aa_label *target = NULL; in aa_pivotroot() local
736 target = fn_label_build(label, profile, GFP_KERNEL, in aa_pivotroot()
740 if (!target) { in aa_pivotroot()
744 } else if (!IS_ERR(target)) { in aa_pivotroot()
745 error = aa_replace_current_label(target); in aa_pivotroot()
747 /* TODO: audit target */ in aa_pivotroot()
748 aa_put_label(target); in aa_pivotroot()
751 aa_put_label(target); in aa_pivotroot()
754 error = PTR_ERR(target); in aa_pivotroot()
/third_party/f2fs-tools/lib/
H A Dlibf2fs_io.c266 long entry, least_used, target; in dcache_find() local
270 target = least_used = entry = blk % n; /* simple modulo hash */ in dcache_find()
273 if (!dcache_valid[target] || dcache_blk[target] == blk) in dcache_find()
274 return target; /* found target or empty cache slot */ in dcache_find()
275 if (dcache_lastused[target] < dcache_lastused[least_used]) in dcache_find()
276 least_used = target; in dcache_find()
277 target = dcache_relocate(entry, try); /* next target */ in dcache_find()
[all...]
/third_party/mesa3d/src/gallium/frontends/d3d10umd/
H A DResource.cpp271 templat.target = translate_texture_target( pCreateResource->ResourceDimension, in CreateResource()
273 pResource->buffer = templat.target == PIPE_BUFFER; in CreateResource()
293 if (templat.target != PIPE_BUFFER) { in CreateResource()
296 templat.target, in CreateResource()
613 } else if (src_resource->target == PIPE_BUFFER && in areResourcesCompatible()
614 dst_resource->target == PIPE_BUFFER) { in areResourcesCompatible()
671 assert(dst_resource->target == src_resource->target); in ResourceCopy()
/third_party/node/src/crypto/
H A Dcrypto_x509.cc508 void X509Certificate::Initialize(Environment* env, Local<Object> target) { in Initialize() argument
509 SetMethod(env->context(), target, "parseX509", X509Certificate::Parse); in Initialize()
511 NODE_DEFINE_CONSTANT(target, X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT); in Initialize()
512 NODE_DEFINE_CONSTANT(target, X509_CHECK_FLAG_NEVER_CHECK_SUBJECT); in Initialize()
513 NODE_DEFINE_CONSTANT(target, X509_CHECK_FLAG_NO_WILDCARDS); in Initialize()
514 NODE_DEFINE_CONSTANT(target, X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS); in Initialize()
515 NODE_DEFINE_CONSTANT(target, X509_CHECK_FLAG_MULTI_LABEL_WILDCARDS); in Initialize()
516 NODE_DEFINE_CONSTANT(target, X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS); in Initialize()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Ddependency_graph.cc315 if (call->target.name) { in TraverseExpression()
316 if (!IsIntrinsic(call->target.name->symbol)) { in TraverseExpression()
317 AddGlobalDependency(call->target.name, in TraverseExpression()
318 call->target.name->symbol, "function", in TraverseExpression()
322 utils::Lookup(graph_.resolved_symbols, call->target.name)); in TraverseExpression()
325 if (call->target.type) { in TraverseExpression()
326 TraverseType(call->target.type); in TraverseExpression()
329 utils::Lookup(graph_.resolved_symbols, call->target.type)); in TraverseExpression()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DRopeByteString.java402 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal()
404 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy); in copyToInternal()
406 right.copyToInternal(target, sourceOffset - leftLength, targetOffset, numberToCopy); in copyToInternal()
409 left.copyToInternal(target, sourceOffset, targetOffset, leftLength); in copyToInternal()
410 right.copyToInternal(target, 0, targetOffset + leftLength, numberToCopy - leftLength); in copyToInternal()
415 public void copyTo(ByteBuffer target) { in copyTo() argument
416 left.copyTo(target); in copyTo()
417 right.copyTo(target); in copyTo()
401 copyToInternal( byte[] target, int sourceOffset, int targetOffset, int numberToCopy) copyToInternal() argument
/third_party/python/Lib/test/
H A Dtest_bisect.py241 # a target list, the targetlist remains sorted.
245 target = []
247 mod.insort_left(target, x, key=keyfunc)
249 sorted(target, key=keyfunc),
250 target
252 target = []
254 mod.insort_right(target, x, key=keyfunc)
256 sorted(target, key=keyfunc),
257 target

Completed in 23 milliseconds

1...<<81828384858687888990>>...278