/device/soc/rockchip/common/sdk_linux/kernel/sched/ |
H A D | fair.c | 1794 * be improved if the source tasks was migrated to the target dst_cpu taking 6193 int target = nr_cpumask_bits; in wake_affine() local 6196 target = wake_affine_idle(this_cpu, prev_cpu, sync); in wake_affine() 6199 if (sched_feat(WA_WEIGHT) && target == nr_cpumask_bits) { in wake_affine() 6200 target = wake_affine_weight(sd, p, this_cpu, prev_cpu, sync); in wake_affine() 6204 if (target == nr_cpumask_bits) { in wake_affine() 6210 return target; in wake_affine() 6397 static int select_idle_core(struct task_struct *p, struct sched_domain *sd, int target) in select_idle_core() argument 6406 if (!test_idle_cores(target, false)) { in select_idle_core() 6415 for_each_cpu_wrap(core, cpus, target) in select_idle_core() 6444 select_idle_smt(struct task_struct *p, struct sched_domain *sd, int target) select_idle_smt() argument 6470 select_idle_core(struct task_struct *p, struct sched_domain *sd, int target) select_idle_core() argument 6475 select_idle_smt(struct task_struct *p, struct sched_domain *sd, int target) select_idle_smt() argument 6487 select_idle_cpu(struct task_struct *p, struct sched_domain *sd, int target) select_idle_cpu() argument 6549 select_idle_capacity(struct task_struct *p, struct sched_domain *sd, int target) select_idle_capacity() argument 6596 select_idle_sibling(struct task_struct *p, int prev, int target) select_idle_sibling() argument [all...] |
/kernel/linux/linux-5.10/kernel/sched/ |
H A D | fair.c | 1764 * be improved if the source tasks was migrated to the target dst_cpu taking 6202 int target = nr_cpumask_bits; in wake_affine() local 6205 target = wake_affine_idle(this_cpu, prev_cpu, sync); in wake_affine() 6207 if (sched_feat(WA_WEIGHT) && target == nr_cpumask_bits) in wake_affine() 6208 target = wake_affine_weight(sd, p, this_cpu, prev_cpu, sync); in wake_affine() 6211 if (target == nr_cpumask_bits) in wake_affine() 6216 return target; in wake_affine() 6392 static int select_idle_core(struct task_struct *p, struct sched_domain *sd, int target) in select_idle_core() argument 6400 if (!test_idle_cores(target, false)) in select_idle_core() 6408 for_each_cpu_wrap(core, cpus, target) { in select_idle_core() 6434 select_idle_smt(struct task_struct *p, struct sched_domain *sd, int target) select_idle_smt() argument 6456 select_idle_core(struct task_struct *p, struct sched_domain *sd, int target) select_idle_core() argument 6461 select_idle_smt(struct task_struct *p, struct sched_domain *sd, int target) select_idle_smt() argument 6473 select_idle_cpu(struct task_struct *p, struct sched_domain *sd, int target) select_idle_cpu() argument 6529 select_idle_capacity(struct task_struct *p, struct sched_domain *sd, int target) select_idle_capacity() argument 6576 select_idle_sibling(struct task_struct *p, int prev, int target) select_idle_sibling() argument [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | js-typed-lowering.cc | 1509 // -- 2: target in ReduceBuiltin() 1522 Node* target = node->InputAt(JSCallOrConstructNode::TargetIndex()); in ReduceBuiltin() local 1555 node->InsertInput(zone, 2, target); in ReduceBuiltin() 1585 Node* target = NodeProperties::GetValueInput(node, 0); in ReduceJSConstructForwardVarargs() local 1586 Type target_type = NodeProperties::GetType(target); in ReduceJSConstructForwardVarargs() 1588 // Check if {target} is a JSFunction. in ReduceJSConstructForwardVarargs() 1616 Node* target = n.target(); in ReduceJSConstruct() local 1617 Type target_type = NodeProperties::GetType(target); in ReduceJSConstruct() 1619 // Check if {target} i in ReduceJSConstruct() 1657 Node* target = NodeProperties::GetValueInput(node, 0); ReduceJSCallForwardVarargs() local 1685 Node* target = n.target(); ReduceJSCall() local [all...] |
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | macro-assembler-arm.cc | 120 void TurboAssembler::Jump(Register target, Condition cond) { bx(target, cond); } in Jump() argument 122 void TurboAssembler::Jump(intptr_t target, RelocInfo::Mode rmode, in Jump() argument 124 mov(pc, Operand(target, rmode), LeaveCC, cond); in Jump() 127 void TurboAssembler::Jump(Address target, RelocInfo::Mode rmode, in Jump() argument 130 Jump(static_cast<intptr_t>(target), rmode, cond); in Jump() 180 void TurboAssembler::Call(Register target, Condition cond) { in Call() argument 183 blx(target, cond); in Call() 186 void TurboAssembler::Call(Address target, RelocInfo::Mode rmode, Condition cond, in Call() argument 213 mov(ip, Operand(target, rmod in Call() 365 StoreReturnAddressAndCall(Register target) StoreReturnAddressAndCall() argument 400 Call(Label* target) Call() argument 2636 CallForDeoptimization(Builtin target, int, Label* exit, DeoptimizeKind kind, Label* ret, Label*) CallRecordWriteStub() argument [all...] |
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-printer.cc | 1406 os << "\n - target: " << Brief(target()); in JSWeakRefPrint() 2015 os << "\n - call target: " << reinterpret_cast<void*>(foreign_address()); in WasmInternalFunctionPrint() 2418 if (HasNewTarget()) os << "\n - needs new target"; in ScopeInfoPrint() 2698 Map target) { in PrintOneTransition() 2714 os << "(transition to " << ElementsKindToString(target.elements_kind()) in PrintOneTransition() 2721 InternalIndex descriptor = target.LastAdded(); in PrintOneTransition() 2722 DescriptorArray descriptors = target.instance_descriptors(); in PrintOneTransition() 2727 os << " -> " << Brief(target); in PrintOneTransition() 2735 Map target in PrintInternal() local 2697 PrintOneTransition(std::ostream& os, Name key, Map target) PrintOneTransition() argument 2748 Map target = Map::cast(raw_transitions_->GetHeapObjectAssumeWeak()); PrintTransitions() local 2773 Map target = GetTarget(i); PrintTransitionTree() local [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | queryutils.cpp | 134 TextureTarget target, in QueryTexLevelParameterBase() 140 const InternalFormat *info = texture->getTextureState().getImageDesc(target, level).format.info; in QueryTexLevelParameterBase() 191 pname, static_cast<uint32_t>(texture->getWidth(target, level))); in QueryTexLevelParameterBase() 195 pname, static_cast<uint32_t>(texture->getHeight(target, level))); in QueryTexLevelParameterBase() 199 pname, static_cast<uint32_t>(texture->getDepth(target, level))); in QueryTexLevelParameterBase() 202 *params = CastFromStateValue<ParamType>(pname, texture->getSamples(target, level)); in QueryTexLevelParameterBase() 206 pname, static_cast<GLint>(texture->getFixedSampleLocations(target, level))); in QueryTexLevelParameterBase() 213 CastFromStateValue<ParamType>(pname, texture->getLevelMemorySize(target, level)); in QueryTexLevelParameterBase() 217 pname, texture->initState(ImageIndex::MakeFromTarget(target, level)) == in QueryTexLevelParameterBase() 1506 TextureTarget target, in QueryTexLevelParameterfv() 133 QueryTexLevelParameterBase(const Texture *texture, TextureTarget target, GLint level, GLenum pname, ParamType *params) QueryTexLevelParameterBase() argument 1505 QueryTexLevelParameterfv(const Texture *texture, TextureTarget target, GLint level, GLenum pname, GLfloat *params) QueryTexLevelParameterfv() argument 1514 QueryTexLevelParameteriv(const Texture *texture, TextureTarget target, GLint level, GLenum pname, GLint *params) QueryTexLevelParameteriv() argument 2751 SetTextureEnv(unsigned int unit, GLES1State *state, TextureEnvTarget target, TextureEnvParameter pname, const GLfloat *params) SetTextureEnv() argument 2841 GetTextureEnv(unsigned int unit, const GLES1State *state, TextureEnvTarget target, TextureEnvParameter pname, GLfloat *params) GetTextureEnv() argument [all...] |
/device/soc/hisilicon/hi3518ev300/mpp/module_init/src/ |
H A D | system_init.c | 128 extern int mount(const char *source, const char *target, in SystemInit()
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/ |
H A D | bcmipv6.h | 122 struct ipv6_addr target; member
|
/drivers/hdf_core/framework/test/fuzztest/devsvcmanagerstub_fuzzer/ |
H A D | devsvcmanagerstub_fuzzer.cpp | 100 reinterpret_cast<HdfRemoteService *>(instance->remote->target), code, dataBuf, replyBuf);
in DevsvcManagerFuzzTest()
|
/kernel/linux/common_modules/tzdriver/core/ |
H A D | ffa_abi.c | 85 out_param->target = ffa_param->data2;
in convert_ffa_param_to_smc_param()
|
/kernel/linux/linux-5.10/tools/testing/selftests/rseq/ |
H A D | rseq.h | 97 #error unsupported target
|
/kernel/linux/linux-5.10/drivers/scsi/ibmvscsi_tgt/ |
H A D | libsrp.h | 98 struct srp_target *target; member
|
/kernel/linux/linux-5.10/drivers/thermal/ |
H A D | gov_fair_share.c | 107 instance->target = get_target_state(tz, cdev, percentage, in fair_share_throttle()
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | xt_CHECKSUM.c | 69 .target = checksum_tg,
|
H A D | xt_NFLOG.c | 65 .target = nflog_tg,
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | swiotlb.h | 64 enum dma_sync_target target);
|
/kernel/linux/linux-5.10/include/net/ |
H A D | codel.h | 100 * @target: target queue size (in time units) 107 codel_time_t target; member 121 * @first_above_time: when we went (or will go) continuously above target
|
/kernel/linux/linux-5.10/tools/perf/arch/powerpc/util/ |
H A D | sym-handling.c | 127 map = get_target_map(pev->target, pev->nsi, pev->uprobes); in arch__post_process_probe_trace_events()
|
/kernel/linux/linux-5.10/sound/soc/intel/common/ |
H A D | sst-dsp.h | 59 u32 target, u32 time, char *operation);
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | probe-file.h | 55 struct probe_cache *probe_cache__new(const char *target, struct nsinfo *nsi);
|
/kernel/linux/linux-5.10/kernel/bpf/preload/iterators/ |
H A D | Makefile | 43 $(Q)$(CLANG) -g -O2 -target bpf $(INCLUDES) \
|
/kernel/linux/linux-5.10/net/bridge/netfilter/ |
H A D | ebt_nflog.c | 55 .target = ebt_nflog_tg,
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/ |
H A D | nv50_fence.c | 57 .target = NV_DMA_V0_TARGET_VRAM, in nv50_fence_context_new()
|
/kernel/linux/linux-6.6/include/net/ |
H A D | codel.h | 98 * @target: target queue size (in time units) 108 codel_time_t target; member 124 * @first_above_time: when we went (or will go) continuously above target
|
/kernel/linux/linux-6.6/drivers/scsi/ibmvscsi_tgt/ |
H A D | libsrp.h | 98 struct srp_target *target; member
|