/third_party/python/Lib/idlelib/ |
H A D | pyshell.py | 538 threading.Thread(target=self.__request_interrupt).start()
|
/third_party/python/Lib/test/ |
H A D | test_bz2.py | 508 threads = [threading.Thread(target=comp) for i in range(nthreads)]
|
H A D | test_ftplib.py | 1052 self.server_thread = threading.Thread(target=self.server)
|
H A D | test_nntplib.py | 1592 target=self.run_server, args=(sock,))
|
/third_party/python/Lib/asyncio/ |
H A D | base_events.py | 570 thread = threading.Thread(target=self._do_shutdown, args=(future,))
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_ssl.py | 599 thread = threading.Thread(target=client, daemon=True)
|
H A D | test_streams.py | 906 thread = threading.Thread(target=server)
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cShadingLanguage420PackTests.hpp | 179 void generate(glw::GLenum target);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/ |
H A D | X86Disassembler.cpp | 818 // @param valid - The address of a uint8_t. The target is set to 1 if the 1655 static bool translateInstruction(MCInst &target,
|
/third_party/eudev/ |
H A D | configure | 1193 -target | --target | --targe | --targ | --tar | --ta | --t) 1195 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) 1270 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1318 target=$target_alias 4785 @echo this is the am__doit target >confinc.out 4802 '0:this is the am__doit target') : 4935 # We need awk for the "check" target (and possibly the TAP driver). The 8457 # if running on 10.5 or later, the deployment target default [all...] |
/third_party/lame/ |
H A D | configure | 1173 -target | --target | --targe | --targ | --tar | --ta | --t) 1175 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) 1250 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1298 target=$target_alias 3194 # We need awk for the "check" target (and possibly the TAP driver). The 3284 @echo this is the am__doit target >confinc.out 3301 '0:this is the am__doit target') : 8186 # if running on 10.5 or later, the deployment target default [all...] |
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.cpp | 103 - Portable, minimize dependencies, run on target (consoles, phones, etc.). 362 to toggle the target. Please reach out if you think the game vs navigation input sharing could be improved. 3865 // The reason this is exposed in imgui_internal.h is: on touch-based system that don't have hovering, we want to dispatch inputs to the right target (imgui vs imgui+app) 5458 // We don't use an incremental MouseDelta but rather compute an absolute target size based on mouse position in UpdateWindowManualResize() 7946 static float CalcScrollEdgeSnap(float target, float snap_min, float snap_max, float snap_threshold, float center_ratio) in CalcScrollEdgeSnap() argument 7948 if (target <= snap_min + snap_threshold) in CalcScrollEdgeSnap() 7949 return ImLerp(snap_min, target, center_ratio); in CalcScrollEdgeSnap() 7950 if (target >= snap_max - snap_threshold) in CalcScrollEdgeSnap() 7951 return ImLerp(target, snap_max, center_ratio); in CalcScrollEdgeSnap() 7952 return target; in CalcScrollEdgeSnap() [all...] |
/third_party/json/single_include/nlohmann/ |
H A D | json.hpp | 5108 void int_to_string( string_type& target, std::size_t value ) in int_to_string() argument 5112 target = to_string(value); in int_to_string() 16835 Target target; 16836 std::memcpy(&target, &source, sizeof(Source)); 16837 return target; 23885 // adding to the root of the target document means replacing it 24059 // immediately by an "add" operation at the target 24075 // operation at the target location using the value 24127 static basic_json diff(const basic_json& source, const basic_json& target, 24134 if (source == target) [all...] |
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 4263 // Otherwise use PACKED_ELEMENTS for the target's elements kind. 4381 // we can't just use COW, use FixedArrayMap as the target map. Otherwise, use 4382 // source_map as the target map. 4615 // the target are FixedDoubleArray. That it is PACKED or HOLEY does not 5040 // to the target and are still guaranteed that we get an undefined. 5046 // Pre-initialized the target with holes so later if we run into a hole in 5047 // the source we can just skip the writing to the target. 5103 // The target elements array is already preinitialized with undefined 5107 // The target elements array is already preinitialized with holes, so we 9317 TNode<JSReceiver> target [all...] |
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/ |
H A D | nand_base.c | 163 * nand_select_target() - Select a NAND target (A.K.A. die) 168 * Select a NAND target so that further operations executed on @chip go to the 169 * selected NAND target. 188 * nand_deselect_target() - Deselect the currently selected target 191 * Deselect the currently selected NAND target. The result of operations 192 * executed on @chip after the target has been deselected is undefined. 5559 nand_select_target(chip, pos->target); in rawnand_erase() 5581 nand_select_target(chip, pos->target); in rawnand_isbad()
|
/kernel/linux/linux-5.10/virt/kvm/ |
H A D | kvm_main.c | 1073 * Move the target memslot backward in the array by shifting existing in kvm_memslot_move_backward() 1074 * memslots with a higher GFN (than the target memslot) towards the in kvm_memslot_move_backward() 3007 int kvm_vcpu_yield_to(struct kvm_vcpu *target) in kvm_vcpu_yield_to() argument 3014 pid = rcu_dereference(target->pid); in kvm_vcpu_yield_to()
|
/kernel/linux/linux-5.10/drivers/iommu/intel/ |
H A D | iommu.c | 308 struct dmar_dev_scope *devices; /* target devices */ 309 int devices_cnt; /* target device count */ 315 struct dmar_dev_scope *devices; /* target devices */ 316 int devices_cnt; /* target device count */ 1669 * needed to ensure the target range is flushed. in iommu_flush_iotlb_psi() 3856 enum dma_data_direction dir, enum dma_sync_target target) in bounce_sync_single() 3867 swiotlb_tbl_sync_single(dev, tlb_addr, size, dir, target); in bounce_sync_single() 3855 bounce_sync_single(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir, enum dma_sync_target target) bounce_sync_single() argument
|
/kernel/linux/linux-5.10/drivers/media/pci/bt8xx/ |
H A D | bttv-driver.c | 2765 switch (sel->target) { in bttv_g_selection() 2803 if (sel->target != V4L2_SEL_TGT_CROP) in bttv_s_selection()
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/ |
H A D | phy_lcn.c | 893 #define wlc_lcnphy_set_target_tx_pwr(pi, target) \ 896 (u16)(target) << 0)
|
/kernel/linux/linux-5.10/drivers/scsi/lpfc/ |
H A D | lpfc_attr.c | 2938 * lpfc_oas_tgt_show - Return wwpn of target whose luns maybe enabled for 2959 * lpfc_oas_tgt_store - Store wwpn of target whose luns maybe enabled for 3006 * lpfc_oas_priority_show - Return wwpn of target whose luns maybe enabled for 3026 * lpfc_oas_priority_store - Store wwpn of target whose luns maybe enabled for 3230 * @ndlp: pointer to fcp target node. 3268 * @tgt_wwpn: wwpn of the target associated with the returned lun 3271 * Returns the first or next lun enabled for OAS operations for the vport/target 3272 * specified. If a lun is found, its vport wwpn, target wwpn and status is 3276 * lun that is OAS enabled for the vport/target 3305 * @tgt_wwpn: target wwp [all...] |
/kernel/linux/linux-5.10/drivers/scsi/qla2xxx/ |
H A D | qla_iocb.c | 403 /* Set target ID and LUN number*/ in qla2x00_start_scsi() 404 SET_TARGET_ID(ha, cmd_pkt->target, sp->fcport->loop_id); in qla2x00_start_scsi() 534 SET_TARGET_ID(ha, mrk->target, loop_id); in __qla2x00_marker() 1120 /* if initiator doing write or target doing read */ in qla24xx_walk_and_build_prot_sglist()
|
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/ |
H A D | nand_base.c | 164 * nand_select_target() - Select a NAND target (A.K.A. die) 169 * Select a NAND target so that further operations executed on @chip go to the 170 * selected NAND target. 189 * nand_deselect_target() - Deselect the currently selected target 192 * Deselect the currently selected NAND target. The result of operations 193 * executed on @chip after the target has been deselected is undefined. 6223 nand_select_target(chip, pos->target); in rawnand_erase() 6245 nand_select_target(chip, pos->target); in rawnand_isbad()
|
/kernel/linux/linux-6.6/drivers/scsi/qla2xxx/ |
H A D | qla_iocb.c | 406 /* Set target ID and LUN number*/ in qla2x00_start_scsi() 407 SET_TARGET_ID(ha, cmd_pkt->target, sp->fcport->loop_id); in qla2x00_start_scsi() 537 SET_TARGET_ID(ha, mrk->target, loop_id); in __qla2x00_marker() 1066 /* if initiator doing write or target doing read */ in qla24xx_walk_and_build_prot_sglist()
|
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/ |
H A D | phy_lcn.c | 893 #define wlc_lcnphy_set_target_tx_pwr(pi, target) \ 896 (u16)(target) << 0)
|
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtw89/ |
H A D | fw.c | 4573 u8 target, u8 offset) in rtw89_fw_h2c_mcc_sync() 4589 RTW89_SET_FWCMD_MCC_SYNC_MACID_TARGET(skb->data, target); in rtw89_fw_h2c_mcc_sync() 4572 rtw89_fw_h2c_mcc_sync(struct rtw89_dev *rtwdev, u8 group, u8 source, u8 target, u8 offset) rtw89_fw_h2c_mcc_sync() argument
|