Home
last modified time | relevance | path

Searched refs:target (Results 3851 - 3875 of 7861) sorted by relevance

1...<<151152153154155156157158159160>>...315

/kernel/linux/linux-6.6/kernel/
H A Dexit.c1469 * target task dies. Only continued and exited can happen. in wait_consider_task()
1558 struct task_struct *target) in is_effectively_child()
1561 !ptrace ? target->real_parent : target->parent; in is_effectively_child()
1569 * and tracee lists to find the target task.
1574 struct task_struct *target; in do_wait_pid() local
1578 target = pid_task(wo->wo_pid, PIDTYPE_TGID); in do_wait_pid()
1579 if (target && is_effectively_child(wo, ptrace, target)) { in do_wait_pid()
1580 retval = wait_consider_task(wo, ptrace, target); in do_wait_pid()
1557 is_effectively_child(struct wait_opts *wo, bool ptrace, struct task_struct *target) is_effectively_child() argument
[all...]
/kernel/linux/linux-6.6/net/vmw_vsock/
H A Daf_vsock.c1084 int target = sock_rcvlowat(sk, 0, INT_MAX); in vsock_poll() local
1086 vsk, target, &data_ready_now); in vsock_poll()
1934 size_t target) in vsock_connectible_wait_data()
1964 err = transport->notify_recv_pre_block(vsk, target, recv_data); in vsock_connectible_wait_data()
2004 size_t target; in __vsock_stream_recvmsg() local
2013 /* We must not copy less than target bytes into the user's buffer in __vsock_stream_recvmsg()
2016 * makes it impossible to handle cases where target is greater than the in __vsock_stream_recvmsg()
2019 target = sock_rcvlowat(sk, flags & MSG_WAITALL, len); in __vsock_stream_recvmsg()
2020 if (target >= transport->stream_rcvhiwat(vsk)) { in __vsock_stream_recvmsg()
2027 err = transport->notify_recv_init(vsk, target, in __vsock_stream_recvmsg()
1930 vsock_connectible_wait_data(struct sock *sk, struct wait_queue_entry *wait, long timeout, struct vsock_transport_recv_notify_data *recv_data, size_t target) vsock_connectible_wait_data() argument
[all...]
/third_party/skia/src/core/
H A DSkAAClip.cpp268 bool applyClipOp(SkAAClip* target, const SkAAClip& other, SkClipOp op);
269 bool blitPath(SkAAClip* target, const SkPath& path, bool doAA);
377 bool finish(SkAAClip* target) { in finish() argument
390 return target->setEmpty(); in finish()
421 target->freeRuns(); in finish()
422 target->fBounds = fBounds; in finish()
423 target->fRunHead = head; in finish()
424 return target->trimBounds(); in finish()
824 bool SkAAClip::Builder::applyClipOp(SkAAClip* target, const SkAAClip& other, SkClipOp op) {
825 this->operateY(*target, othe
[all...]
/third_party/python/Python/
H A Dpylifecycle.c254 * C locale and for any of the coercion target locales is "surrogateescape".
301 const char *locale_name; /* The locale to try as a coercion target */
315 const _LocaleCoercionTarget *target = NULL; in _Py_IsLocaleCoercionTarget() local
316 for (target = _TARGET_LOCALES; target->locale_name; target++) { in _Py_IsLocaleCoercionTarget()
317 if (strcmp(ctype_loc, target->locale_name) == 0) { in _Py_IsLocaleCoercionTarget()
331 _coerce_default_locale_settings(int warn, const _LocaleCoercionTarget *target) in _coerce_default_locale_settings() argument
333 const char *newloc = target->locale_name; in _coerce_default_locale_settings()
369 const _LocaleCoercionTarget *target in _Py_CoerceLegacyLocale() local
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor.cc288 PyObject *target) { in CopyToPythonProto()
291 CMessage* message = reinterpret_cast<CMessage*>(target); in CopyToPythonProto()
292 if (!PyObject_TypeCheck(target, CMessage_Type) || in CopyToPythonProto()
614 static PyObject* CopyToProto(PyBaseDescriptor *self, PyObject *target) { in CopyToProto() argument
615 return CopyToPythonProto<DescriptorProto>(_GetDescriptor(self), target); in CopyToProto()
1127 static PyObject* CopyToProto(PyBaseDescriptor *self, PyObject *target) { in CopyToProto() argument
1128 return CopyToPythonProto<EnumDescriptorProto>(_GetDescriptor(self), target); in CopyToProto()
1420 static PyObject* CopyToProto(PyFileDescriptor *self, PyObject *target) { in CopyToProto() argument
1421 return CopyToPythonProto<FileDescriptorProto>(_GetDescriptor(self), target); in CopyToProto()
1706 static PyObject* CopyToProto(PyBaseDescriptor *self, PyObject *target) { in CopyToProto() argument
287 CopyToPythonProto(const DescriptorClass *descriptor, PyObject *target) CopyToPythonProto() argument
1820 CopyToProto(PyBaseDescriptor *self, PyObject *target) CopyToProto() argument
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
H A Dmutex_test.cc141 int target; member
148 return cxt->g0 == this->target || cxt->g0 == cxt->iterations; in MyTurn()
153 mc.target = c; in TestAwait()
164 mc.target += cxt->threads; in TestAwait()
170 int target = c; in TestSignalAll() local
174 while (cxt->g0 != target && cxt->g0 != cxt->iterations) { in TestSignalAll()
181 target += cxt->threads; in TestSignalAll()
188 int target = c; in TestSignal() local
192 while (cxt->g0 != target && cxt->g0 != cxt->iterations) { in TestSignal()
199 target in TestSignal()
205 int target = c; TestCVTimeout() local
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fDepthStencilTests.cpp245 void generateBaseClearAndDepthCommands (const TestRenderTarget& target, vector<ClearCommand>& clearCommands, vector<RenderCommand>& renderCommands) in generateBaseClearAndDepthCommands() argument
254 int cellL0Width = target.width/numL0CellsX; in generateBaseClearAndDepthCommands()
255 int cellL0Height = target.height/numL0CellsY; in generateBaseClearAndDepthCommands()
263 throw tcu::NotSupportedError("Too small render target"); in generateBaseClearAndDepthCommands()
266 clearCommands.push_back(ClearCommand(rr::WindowRectangle(0, 0, target.width, target.height), GL_COLOR_BUFFER_BIT, Vec4(0.0f, 0.0f, 0.0f, 1.0f), 0)); in generateBaseClearAndDepthCommands()
269 getStencilTestValues(target.stencilBits, numL0CellsX*numL0CellsY, &stencilValues[0]); in generateBaseClearAndDepthCommands()
312 void generateDepthVisualizeCommands (const TestRenderTarget& target, vector<RenderCommand>& commands) in generateDepthVisualizeCommands() argument
324 cmd.rect = rr::WindowRectangle(0, 0, target.width, target in generateDepthVisualizeCommands()
336 generateStencilVisualizeCommands(const TestRenderTarget& target, vector<RenderCommand>& commands) generateStencilVisualizeCommands() argument
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fDepthStencilTests.cpp245 void generateBaseClearAndDepthCommands (const TestRenderTarget& target, vector<ClearCommand>& clearCommands, vector<RenderCommand>& renderCommands) in generateBaseClearAndDepthCommands() argument
254 int cellL0Width = target.width/numL0CellsX; in generateBaseClearAndDepthCommands()
255 int cellL0Height = target.height/numL0CellsY; in generateBaseClearAndDepthCommands()
263 throw tcu::NotSupportedError("Too small render target"); in generateBaseClearAndDepthCommands()
266 clearCommands.push_back(ClearCommand(rr::WindowRectangle(0, 0, target.width, target.height), GL_COLOR_BUFFER_BIT, Vec4(0.0f, 0.0f, 0.0f, 1.0f), 0)); in generateBaseClearAndDepthCommands()
269 getStencilTestValues(target.stencilBits, numL0CellsX*numL0CellsY, &stencilValues[0]); in generateBaseClearAndDepthCommands()
312 void generateDepthVisualizeCommands (const TestRenderTarget& target, vector<RenderCommand>& commands) in generateDepthVisualizeCommands() argument
324 cmd.rect = rr::WindowRectangle(0, 0, target.width, target in generateDepthVisualizeCommands()
336 generateStencilVisualizeCommands(const TestRenderTarget& target, vector<RenderCommand>& commands) generateStencilVisualizeCommands() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_soa.c2318 * however the target information is NOT there and comes from the in emit_sample()
2466 unsigned unit, target; in emit_fetch_texels() local
2491 target = bld->sv[unit].Resource; in emit_fetch_texels()
2494 target = inst->Texture.Texture; in emit_fetch_texels()
2497 switch (target) { in emit_fetch_texels()
2525 if (target != TGSI_TEXTURE_BUFFER && in emit_fetch_texels()
2526 target != TGSI_TEXTURE_2D_MSAA && in emit_fetch_texels()
2527 target != TGSI_TEXTURE_2D_ARRAY_MSAA && in emit_fetch_texels()
2534 if (target == TGSI_TEXTURE_2D_MSAA || in emit_fetch_texels()
2535 target in emit_fetch_texels()
2612 enum tgsi_texture_type target; emit_size_query() local
3376 target_to_dims_layer(enum tgsi_texture_type target, unsigned *dims, unsigned *layer_coord) target_to_dims_layer() argument
3421 enum tgsi_texture_type target = emit_data->inst->Memory.Texture; img_load_emit() local
3570 enum tgsi_texture_type target = emit_data->inst->Memory.Texture; img_store_emit() local
3689 enum tgsi_texture_type target = emit_data->inst->Memory.Texture; resq_emit() local
3720 enum tgsi_texture_type target = emit_data->inst->Memory.Texture; img_atomic_emit() local
[all...]
/base/hiviewdfx/hidumper/frameworks/native/include/executor/
H A Dfile_stream_dumper.h34 void BuildFileNames(const std::string& target, bool arg_pid, int pid,
/base/global/resource_management/frameworks/resmgr/include/
H A Dlocale_matcher.h68 * Whether the current resLocale more specific than target resLocale
70 * @param target the target resLocale
71 * @return 0 means current resLocale same to target resLocale,
72 * 1 means current resLocale more specific than target resLocale, else -1
74 static int8_t IsMoreSpecificThan(const ResLocale *current, const ResLocale *target);
/base/global/resource_management_lite/frameworks/resmgr_lite/include/
H A Dlocale_matcher.h68 * Whether the current resLocale more specific than target resLocale
70 * @param target the target resLocale
71 * @return 0 means current resLocale same to target resLocale,
72 * 1 means current resLocale more specific than target resLocale, else -1
74 static int8_t IsMoreSpecificThan(const ResLocale *current, const ResLocale *target);
/foundation/ability/ability_lite/services/abilitymgr_lite/include/
H A Dability_mission_record.h40 void RemovePageAbility(const PageAbilityRecord &target);
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/components/
H A Danimation_track_component.h48 /** Animation target */
49 DEFINE_PROPERTY(CORE_NS::EntityReference, target, "Target Entity", 0, )
/foundation/communication/ipc/interfaces/innerkits/ipc_napi_common/include/
H A Dnapi_remote_object.h60 * @param target Indicates the IRemoteObject pointer object.
64 napi_value NAPI_ohos_rpc_CreateJsRemoteObject(napi_env env, const sptr<IRemoteObject> target);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/include/
H A Dcommunicator_type_define.h29 using OnConnectCallback = std::function<void(const std::string &target, bool isConnect)>;
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/singlever/
H A Dsingle_ver_relational_sync_task_context.h42 void CopyTargetData(const ISyncTarget *target, const TaskParam &taskParam) override;
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb_data_share_adapter/include/
H A Drdb_result_set_bridge.h41 int32_t WriteBlock(int32_t start, int32_t target, int columnCount, Writer &writer);
/kernel/linux/linux-5.10/arch/sparc/kernel/
H A Djump_label.c19 s32 off = (s32)entry->target - (s32)entry->code; in arch_jump_label_transform()
29 /* WDISP19 - target is . + immed << 2 */ in arch_jump_label_transform()
33 /* WDISP22 - target is . + immed << 2 */ in arch_jump_label_transform()
/kernel/linux/linux-6.6/arch/sparc/kernel/
H A Djump_label.c19 s32 off = (s32)entry->target - (s32)entry->code; in arch_jump_label_transform()
29 /* WDISP19 - target is . + immed << 2 */ in arch_jump_label_transform()
33 /* WDISP22 - target is . + immed << 2 */ in arch_jump_label_transform()
/kernel/linux/linux-5.10/drivers/scsi/qla2xxx/
H A Dtcm_qla2xxx.h2 #include <target/target_core_base.h>
41 /* FC lport target portal group tag for TCM */
/kernel/linux/linux-5.10/drivers/target/
H A Dtarget_core_xcopy.h2 #include <target/target_core_base.h>
H A Dtarget_core_ua.h5 #include <target/target_core_base.h>
/kernel/linux/linux-5.10/drivers/target/loopback/
H A Dtcm_loop.h4 #include <target/target_core_base.h> /* struct se_cmd */
/kernel/linux/linux-5.10/net/netfilter/
H A Dxt_TRACE.c37 .target = trace_tg,

Completed in 28 milliseconds

1...<<151152153154155156157158159160>>...315