/third_party/pulseaudio/src/daemon/ |
H A D | ohos_pa_main.c | 677 pa_log_target target = { .type = PA_LOG_STDERR, .file = NULL }; in real_main() local 678 pa_log_set_target(&target); in real_main() 1002 pa_log_target target = { .type = PA_LOG_JOURNAL, .file = NULL }; in real_main() local 1004 pa_log_target target = { .type = PA_LOG_SYSLOG, .file = NULL }; in real_main() 1006 pa_log_set_target(&target); in real_main()
|
/third_party/python/Lib/test/test_capi/ |
H A D | test_misc.py | 965 threads = [threading.Thread(target=self.pendingcalls_thread, 1086 def target(): function 1099 target() 1100 t = threading.Thread(target=target)
|
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/ |
H A D | EGLIOSurfaceClientBufferTest.cpp | 139 EGLint target = 0; in getTextureTarget() local 140 eglGetConfigAttrib(mDisplay, mConfig, EGL_BIND_TO_TEXTURE_TARGET_ANGLE, &target); in getTextureTarget() 141 return target; in getTextureTarget() 1049 // EGL_TEXTURE_FORMAT must be equal to the config's texture target in TEST_P() 1051 EGLint target = getTextureTarget(); in TEST_P() local 1053 switch (target) in TEST_P()
|
/third_party/python/Python/ |
H A D | ast_opt.c | 837 CALL(astfold_expr, expr_ty, node_->target); in astfold_comprehension() 909 CALL(astfold_expr, expr_ty, node_->v.AugAssign.target); in astfold_stmt() 913 CALL(astfold_expr, expr_ty, node_->v.AnnAssign.target); in astfold_stmt() 920 CALL(astfold_expr, expr_ty, node_->v.For.target); in astfold_stmt() 928 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.target); in astfold_stmt()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsLifetimeTests.cpp | 660 const RenderTarget& target = ctx.getRenderTarget(); in randomViewport() local 661 const GLint width = de::min(target.getWidth(), maxWidth); in randomViewport() 662 const GLint xOff = rnd.getInt(0, target.getWidth() - width); in randomViewport() 663 const GLint height = de::min(target.getHeight(), maxHeight); in randomViewport() 664 const GLint yOff = rnd.getInt(0, target.getHeight() - height); in randomViewport()
|
/third_party/vk-gl-cts/scripts/android/ |
H A D | build_apk.py | 532 "-target", "1.7", 640 "--target-sdk-version", str(config.javaApi), 894 def getPackageAndLibrariesForTarget (target): 898 if target == 'deqp': 900 elif target == 'openglcts': 903 raise Exception("Uknown target '%s'" % target) 947 help="Android API level to target in native code") 952 help="Android API level to target in Java code") 957 help="Android Tools level to target ( [all...] |
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.h | 245 // Puts a labels target address at the given position. 249 // Read/Modify the code target address in the branch/call instruction at pc. 253 Address pc, Address target, in set_target_address_at() 255 set_target_value_at(pc, target, icache_flush_mode); in set_target_address_at() 263 Address pc, Address constant_pool, Address target, in set_target_address_at() 265 set_target_address_at(pc, target, icache_flush_mode); in set_target_address_at() 269 Address pc, uint64_t target, 278 Address instruction_payload, Code code, Address target); 280 // Get the size of the special target encoded at 'instruction_payload'. 286 Address pc, Address target, 252 set_target_address_at( Address pc, Address target, ICacheFlushMode icache_flush_mode = FLUSH_ICACHE_IF_NEEDED) set_target_address_at() argument 262 set_target_address_at( Address pc, Address constant_pool, Address target, ICacheFlushMode icache_flush_mode = FLUSH_ICACHE_IF_NEEDED) set_target_address_at() argument [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 61 // Checks that `host` retains `target`, according to the marking visitor. This 64 void CheckStrongReference(HeapObject host, HeapObject target) { in CheckStrongReference() argument 68 checked_objects_.insert(target); in CheckStrongReference() 70 // Check whether there is a direct strong reference from host to target. in CheckStrongReference() 71 if (reference_summary_.strong_references().find(target) != in CheckStrongReference() 76 // There is no direct reference from host to target, but sometimes heap in CheckStrongReference() 84 if (indirect.find(target) != indirect.end()) { in CheckStrongReference() 92 // Checks that `host` has a weak reference to `target`, according to the 94 void CheckWeakReference(HeapObject host, HeapObject target) { in CheckWeakReference() argument 98 checked_objects_.insert(target); in CheckWeakReference() 107 MarkReferenceCheckedWithoutChecking(HeapObject host, HeapObject target) MarkReferenceCheckedWithoutChecking() argument 1010 Code target = Code::GetCodeFromTargetAddress(rinfo->target_address()); global() variable [all...] |
/kernel/linux/linux-6.6/drivers/scsi/ |
H A D | ipr.c | 280 "Logical unit not accessible, target port in unavailable state"}, 1133 res->target = gscsi_res->target; in ipr_init_res_entry() 1138 res->target = find_first_zero_bit(ioa_cfg->target_ids, in ipr_init_res_entry() 1140 set_bit(res->target, ioa_cfg->target_ids); in ipr_init_res_entry() 1144 res->target = 0; in ipr_init_res_entry() 1147 res->target = find_first_zero_bit(ioa_cfg->array_ids, in ipr_init_res_entry() 1149 set_bit(res->target, ioa_cfg->array_ids); in ipr_init_res_entry() 1152 res->target = find_first_zero_bit(ioa_cfg->vset_ids, in ipr_init_res_entry() 1154 set_bit(res->target, ioa_cf in ipr_init_res_entry() 3242 u8 bus, target, lun; ipr_add_remove_thread() local [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-generator.cc | 210 Statement* statement; // The target statement for the command or {nullptr}. 1414 // Build assignment to {new.target} variable if it is used. in GenerateBytecodeBody() 1491 // the incoming new target object. in AllocateTopLevelRegisters() 1775 execution_control()->Continue(stmt->target()); in VisitContinueStatement() 1781 execution_control()->Break(stmt->target()); in VisitBreakStatement() 2355 // Assign accumulator value to the 'each' target. in VisitForInStatement() 2446 // Assign to the 'each' target. in VisitForOfStatement() 4086 // Get the default value of a destructuring target. Will mutate the 4087 // destructuring target expression if there is a default value. 4095 Expression** target) { in GetDestructuringDefaultValue() 4094 GetDestructuringDefaultValue( Expression** target) GetDestructuringDefaultValue() argument 4376 Expression* target = pattern_property->value(); BuildDestructuringObjectAssignment() local [all...] |
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | junit-4.10.jar | META-INF/
META-INF/MANIFEST.MF
junit/
junit/extensions/
junit/framework/
junit/runner/
junit/textui/
org/
... |
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_state.c | 2167 unsigned res_target = tex->buffer.b.b.target; in si_tex_dim() 2397 enum pipe_texture_target target, unsigned sample_count, in si_is_format_supported() 2403 if (target >= PIPE_MAX_TEXTURE_TYPES) { in si_is_format_supported() 2404 PRINT_ERR("radeonsi: unsupported texture type %d\n", target); in si_is_format_supported() 2414 if ((target == PIPE_TEXTURE_3D || target == PIPE_TEXTURE_CUBE) && in si_is_format_supported() 2455 if (target == PIPE_BUFFER) { in si_is_format_supported() 4006 struct si_screen *screen, struct si_texture *tex, bool sampler, enum pipe_texture_target target, in gfx10_make_texture_descriptor() 4061 if (!sampler && (res->target == PIPE_TEXTURE_CUBE || res->target in gfx10_make_texture_descriptor() 2396 si_is_format_supported(struct pipe_screen *screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned usage) si_is_format_supported() argument 4005 gfx10_make_texture_descriptor( struct si_screen *screen, struct si_texture *tex, bool sampler, enum pipe_texture_target target, enum pipe_format pipe_format, const unsigned char state_swizzle[4], unsigned first_level, unsigned last_level, unsigned first_layer, unsigned last_layer, unsigned width, unsigned height, unsigned depth, uint32_t *state, uint32_t *fmask_state) gfx10_make_texture_descriptor() argument 4189 si_make_texture_descriptor(struct si_screen *screen, struct si_texture *tex, bool sampler, enum pipe_texture_target target, enum pipe_format pipe_format, const unsigned char state_swizzle[4], unsigned first_level, unsigned last_level, unsigned first_layer, unsigned last_layer, unsigned width, unsigned height, unsigned depth, uint32_t *state, uint32_t *fmask_state) si_make_texture_descriptor() argument [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fGeometryShaderTests.cpp | 1934 throw tcu::NotSupportedError(std::string("Render target size must be at least ") + de::toString(m_viewportSize.x()) + "x" + de::toString(m_viewportSize.y())); in iterate() 2706 LayeredRenderCase (Context& context, const char* name, const char* desc, LayeredRenderTargetType target, TestType test); 2730 static int getTargetLayers (LayeredRenderTargetType target); 2731 static glw::GLenum getTargetTextureTarget (LayeredRenderTargetType target); 2732 static tcu::IVec3 getTargetDimensions (LayeredRenderTargetType target); 2733 static tcu::IVec2 getResolveDimensions (LayeredRenderTargetType target); 2755 LayeredRenderCase::LayeredRenderCase (Context& context, const char* name, const char* desc, LayeredRenderTargetType target, TestType test) in LayeredRenderCase() argument 2757 , m_target (target) in LayeredRenderCase() 2759 , m_numLayers (getTargetLayers(target)) in LayeredRenderCase() 2761 , m_resolveDimensions (getResolveDimensions(target)) in LayeredRenderCase() 3682 getTargetLayers(LayeredRenderTargetType target) getTargetLayers() argument 3697 getTargetTextureTarget(LayeredRenderTargetType target) getTargetTextureTarget() argument 3712 getTargetDimensions(LayeredRenderTargetType target) getTargetDimensions() argument 3727 getResolveDimensions(LayeredRenderTargetType target) getResolveDimensions() argument [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
H A D | Makefile | 25 $(error Must specify KDIR to point to the kernel to target))
|
/drivers/hdf_core/framework/core/manager/src/ |
H A D | devsvc_manager_ext.c | 155 inst->serv->target = (struct HdfObject *)&svcmgrDevObj; in DevSvcManagerExtStart()
|
/drivers/peripheral/usb/interfaces/ddk/host/ |
H A D | usb_ddk_interface.h | 229 UsbRequestTargetType target;
member
|
/drivers/peripheral/wlan/wpa/interfaces/hdi_service/ |
H A D | wpa_interface_drivers.c | 61 int ret = stubObj->dispatcher->Dispatch((struct HdfRemoteService *)stubObj->target, cmdId, data, reply);
in WpaInterfaceDriverDispatch()
|
/kernel/linux/linux-5.10/drivers/devfreq/ |
H A D | governor_passive.c | 108 ret = devfreq->profile->target(devfreq->dev.parent, &freq, 0); in update_devfreq_passive()
|
H A D | imx-bus.c | 133 priv->profile.target = imx_bus_target; in imx_bus_probe()
|
H A D | tegra20-devfreq.c | 96 .target = tegra_devfreq_target,
|
/kernel/linux/linux-5.10/drivers/acpi/acpica/ |
H A D | acdebug.h | 162 void acpi_db_decode_and_display_object(char *target, char *output_type);
|
/kernel/linux/linux-5.10/arch/loongarch/vdso/ |
H A D | Makefile | 23 ccflags-vdso += $(filter --target=%,$(KBUILD_CFLAGS))
|
/kernel/linux/linux-5.10/drivers/media/common/b2c2/ |
H A D | flexcop-common.h | 152 flexcop_sram_dest_target_t target);
|
/kernel/linux/linux-5.10/drivers/infiniband/ulp/srp/ |
H A D | ib_srp.h | 138 * @max_it_iu_len: Maximum initiator-to-target information unit length. 139 * @max_ti_iu_len: Maximum target-to-initiator information unit length. 148 struct srp_target_port *target ____cacheline_aligned_in_smp; 190 * this target port.
|
/kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlwifi/fw/api/ |
H A D | nvm-reg.h | 111 * enum iwl_nvm_access_target - target of the NVM_ACCESS_CMD 147 * @target: &enum iwl_nvm_access_target 155 u8 target; member
|