Home
last modified time | relevance | path

Searched refs:target (Results 176 - 200 of 7864) sorted by relevance

12345678910>>...315

/third_party/gn/src/gn/
H A Dcompile_commands_writer.cc61 const Target* target, in FlagsGetter()
66 RecursiveTargetConfigToStream<T>(config, target, getter, writer, out); in FlagsGetter()
71 void SetupCompileFlags(const Target* target, in SetupCompileFlags() argument
76 target->config_values().has_precompiled_headers(); in SetupCompileFlags()
79 kRecursiveWriterSkipDuplicates, target, &ConfigValues::defines, in SetupCompileFlags()
83 kRecursiveWriterSkipDuplicates, target, &ConfigValues::framework_dirs, in SetupCompileFlags()
87 kRecursiveWriterSkipDuplicates, target, &ConfigValues::frameworks, in SetupCompileFlags()
90 kRecursiveWriterSkipDuplicates, target, &ConfigValues::weak_frameworks, in SetupCompileFlags()
94 target, &ConfigValues::include_dirs, in SetupCompileFlags()
106 WriteOneFlag(config, target, substitutio in SetupCompileFlags()
60 FlagsGetter(RecursiveWriterConfig config, const Target* target, const std::vector<T>& (ConfigValues::*getter)() const, const Writer& writer) FlagsGetter() argument
150 WriteCommand(const Target* target, const SourceFile& source, const CompileFlags& flags, std::vector<OutputFile>& tool_outputs, PathOutput& path_output, SourceFile::Type source_type, const char* tool_name, EscapeOptions opts, std::ostream& out) WriteCommand() argument
[all...]
H A Dninja_target_command_util.cc32 OutputFile GetWindowsPCHFile(const Target* target, const char* tool_name) { in GetWindowsPCHFile() argument
35 OutputFile ret = GetBuildDirForTargetAsOutputFile(target, BuildDirType::OBJ); in GetWindowsPCHFile()
36 ret.value().append(target->label().name()); in GetWindowsPCHFile()
45 const Target* target, in WriteOneFlag()
56 if (!target->toolchain()->substitution_bits().used.count(subst_enum)) in WriteOneFlag()
65 const CTool* tool = target->toolchain()->GetToolAsC(tool_name); in WriteOneFlag()
69 path_output.WriteFile(out, GetWindowsPCHFile(target, tool_name)); in WriteOneFlag()
73 out << " /Yu" << target->config_values().precompiled_header(); in WriteOneFlag()
74 RecursiveTargetConfigStringsToStream(config, target, getter, in WriteOneFlag()
79 // the target rul in WriteOneFlag()
44 WriteOneFlag(RecursiveWriterConfig config, const Target* target, const Substitution* subst_enum, bool has_precompiled_headers, const char* tool_name, const std::vector<std::string>& (ConfigValues::*getter)() const, EscapeOptions flag_escape_options, PathOutput& path_output, std::ostream& out, bool write_substitution, bool indent) WriteOneFlag() argument
109 GetPCHOutputFiles(const Target* target, const char* tool_name, std::vector<OutputFile>* outputs) GetPCHOutputFiles() argument
[all...]
H A Drust_values.cc7 #include "gn/target.h"
14 RustValues::CrateType RustValues::InferredCrateType(const Target* target) { in InferredCrateType() argument
22 if (!target->source_types_used().RustSourceUsed()) { in InferredCrateType()
25 if (!target->has_rust_values()) in InferredCrateType()
28 CrateType crate_type = target->rust_values().crate_type(); in InferredCrateType()
33 switch (target->output_type()) { in InferredCrateType()
50 bool RustValues::IsRustLibrary(const Target* target) { in IsRustLibrary() argument
51 return target->output_type() == Target::RUST_LIBRARY || in IsRustLibrary()
52 InferredCrateType(target) == CRATE_DYLIB || in IsRustLibrary()
53 InferredCrateType(target) in IsRustLibrary()
[all...]
H A Dninja_build_writer.cc30 #include "gn/target.h"
146 for (const Target* target : all_targets) { in GetDuplicateOutputError()
147 for (const auto& output : target->computed_outputs()) { in GetDuplicateOutputError()
149 matches.push_back(target); in GetDuplicateOutputError()
159 for (const Target* target : matches) in GetDuplicateOutputError()
160 matches_string += " " + target->label().GetUserVisibleName(true) + "\n"; in GetDuplicateOutputError()
166 "This is can often be fixed by changing one of the target " in GetDuplicateOutputError()
245 for (const Target* target : all_targets) { in RunAndWriteFile()
246 if (target->settings() == default_toolchain_settings) { in RunAndWriteFile()
247 default_toolchain_targets.push_back(target); in RunAndWriteFile()
[all...]
H A Dbuilder.cc19 #include "gn/target.h"
92 // Do target-specific dependency setup. This will also schedule dependency in ItemDefined()
251 Target* target = record->item()->AsTarget(); in TargetDefined() local
253 if (!AddDeps(record, target->public_deps(), err) || in TargetDefined()
254 !AddDeps(record, target->private_deps(), err) || in TargetDefined()
255 !AddDeps(record, target->data_deps(), err) || in TargetDefined()
256 !AddDeps(record, target->configs().vector(), err) || in TargetDefined()
257 !AddDeps(record, target->all_dependent_configs(), err) || in TargetDefined()
258 !AddDeps(record, target->public_configs(), err) || in TargetDefined()
259 !AddGenDeps(record, target in TargetDefined()
438 AddPoolDep(BuilderRecord* record, const Target* target, Err* err) AddPoolDep() argument
454 AddToolchainDep(BuilderRecord* record, const Target* target, Err* err) AddToolchainDep() argument
499 Target* target = record->item()->AsTarget(); ResolveItem() local
566 ResolveToolchain(Target* target, Err* err) ResolveToolchain() argument
584 ResolvePool(Target* target, Err* err) ResolvePool() argument
[all...]
/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/
H A Dsoftbus_proxychannel_pipeline.c84 struct PipelineChannelItem *target = NULL; in SearchChannelItemUnsafe() local
88 target = it; in SearchChannelItemUnsafe()
91 return target; in SearchChannelItemUnsafe()
124 struct PipelineChannelItem *target = SearchChannelItemUnsafe(&channelId, CompareByChannelId); in TransProxyReuseByChannelId() local
125 if (target == NULL) { in TransProxyReuseByChannelId()
130 target->ref++; in TransProxyReuseByChannelId()
271 struct PipelineChannelItem *target = SearchChannelItemUnsafe(uuid, CompareByUuid); in TransProxyPipelineGetChannelIdByNetworkId() local
272 if (target == NULL) { in TransProxyPipelineGetChannelIdByNetworkId()
277 int32_t channelId = target->channelId; in TransProxyPipelineGetChannelIdByNetworkId()
287 struct PipelineChannelItem *target in TransProxyPipelineGetUuidByChannelId() local
307 struct PipelineChannelItem *target = SearchChannelItemUnsafe(&channelId, CompareByChannelId); TransProxyPipelineCloseChannel() local
418 struct PipelineChannelItem *target = SearchChannelItemUnsafe(&channelId, CompareByChannelId); InnerOnChannelOpened() local
473 struct PipelineChannelItem *target = SearchChannelItemUnsafe(&channelId, CompareByChannelId); InnerOnChannelOpenFailed() local
495 struct PipelineChannelItem *target = NULL; TransProxyPipelineOnChannelClosed() local
524 struct ListenerItem *target = NULL; TransProxyPipelineOnMessageReceived() local
539 OpenNetWorkingChannel(int32_t requestId, ITransProxyPipelineCallback *callback, LanePreferredLinkList *preferred, char *networkId, struct PipelineChannelItem *target) OpenNetWorkingChannel() argument
579 struct PipelineChannelItem *target = SearchChannelItemUnsafe(&requestId, CompareByRequestId); InnerOpenProxyChannel() local
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_render_transition.cpp95 auto target = GetTarget(); in OnAttach() local
96 if (target == nullptr) { in OnAttach()
97 ROSEN_LOGE("RSRenderTransition::OnAttach, target is nullptr"); in OnAttach()
100 // create "transition" modifier and add it to target in OnAttach()
107 target->AddModifier(modifier); in OnAttach()
111 target->disappearingTransitionCount_++; in OnAttach()
112 ROSEN_LOGD("RSRenderTransition::OnAttach, target have %{public}u disappearing Transitions", in OnAttach()
113 target->disappearingTransitionCount_); in OnAttach()
119 auto target = GetTarget(); in OnDetach() local
120 if (target in OnDetach()
[all...]
/kernel/linux/linux-5.10/arch/powerpc/kernel/ptrace/
H A Dptrace-altivec.c23 int vr_active(struct task_struct *target, const struct user_regset *regset) in vr_active() argument
25 flush_altivec_to_thread(target); in vr_active()
26 return target->thread.used_vr ? regset->n : 0; in vr_active()
43 int vr_get(struct task_struct *target, const struct user_regset *regset, in vr_get() argument
51 flush_altivec_to_thread(target); in vr_get()
56 membuf_write(&to, &target->thread.vr_state, 33 * sizeof(vector128)); in vr_get()
61 vrsave.word = target->thread.vrsave; in vr_get()
79 int vr_set(struct task_struct *target, const struct user_regset *regset, in vr_set() argument
85 flush_altivec_to_thread(target); in vr_set()
91 &target in vr_set()
[all...]
/kernel/linux/linux-6.6/arch/powerpc/kernel/ptrace/
H A Dptrace-altivec.c23 int vr_active(struct task_struct *target, const struct user_regset *regset) in vr_active() argument
25 flush_altivec_to_thread(target); in vr_active()
26 return target->thread.used_vr ? regset->n : 0; in vr_active()
43 int vr_get(struct task_struct *target, const struct user_regset *regset, in vr_get() argument
51 flush_altivec_to_thread(target); in vr_get()
56 membuf_write(&to, &target->thread.vr_state, 33 * sizeof(vector128)); in vr_get()
61 vrsave.word = target->thread.vrsave; in vr_get()
79 int vr_set(struct task_struct *target, const struct user_regset *regset, in vr_set() argument
85 flush_altivec_to_thread(target); in vr_set()
91 &target in vr_set()
[all...]
/kernel/linux/linux-5.10/include/trace/events/
H A Dcpuhp.h13 int target,
17 TP_ARGS(cpu, target, idx, fun),
21 __field( int, target )
28 __entry->target = target;
33 TP_printk("cpu: %04u target: %3d step: %3d (%ps)",
34 __entry->cpu, __entry->target, __entry->idx, __entry->fun)
40 int target,
45 TP_ARGS(cpu, target, idx, fun, node),
49 __field( int, target )
[all...]
/kernel/linux/linux-6.6/include/trace/events/
H A Dcpuhp.h13 int target,
17 TP_ARGS(cpu, target, idx, fun),
21 __field( int, target )
28 __entry->target = target;
33 TP_printk("cpu: %04u target: %3d step: %3d (%ps)",
34 __entry->cpu, __entry->target, __entry->idx, __entry->fun)
40 int target,
45 TP_ARGS(cpu, target, idx, fun, node),
49 __field( int, target )
[all...]
/third_party/node/test/parallel/
H A Dtest-policy-dependency-conditions.js60 let target;
62 target = getUniqueHREF();
64 target,
72 target = {};
73 targets[depth + 1] = target;
77 targets[depth][condition] = target;
89 for (const { target, conditions } of order) {
91 if (result !== target) {
92 // If we didn't hit the target, make sure a target prio
[all...]
/third_party/python/Lib/distutils/command/
H A Dinstall_egg_info.py29 self.target = os.path.join(self.install_dir, basename)
30 self.outputs = [self.target]
33 target = self.target
34 if os.path.isdir(target) and not os.path.islink(target):
35 dir_util.remove_tree(target, dry_run=self.dry_run)
36 elif os.path.exists(target):
37 self.execute(os.unlink,(self.target,),"Removing "+target)
[all...]
/third_party/skia/src/core/
H A DSkTSearch.cpp21 int SkStrSearch(const char*const* base, int count, const char target[], in SkStrSearch() argument
37 int cmp = strncmp(elem, target, target_len); in SkStrSearch()
47 int cmp = strncmp(elem, target, target_len); in SkStrSearch()
57 int SkStrSearch(const char*const* base, int count, const char target[], in SkStrSearch() argument
60 return SkStrSearch(base, count, target, strlen(target), elemSize); in SkStrSearch()
63 int SkStrLCSearch(const char*const* base, int count, const char target[], in SkStrLCSearch() argument
66 SkASSERT(target); in SkStrLCSearch()
68 SkAutoAsciiToLC tolc(target, len); in SkStrLCSearch()
73 int SkStrLCSearch(const char*const* base, int count, const char target[], in SkStrLCSearch() argument
[all...]
/third_party/mesa3d/src/glx/
H A Dindirect_texture_compression.c43 __indirect_glGetCompressedTexImage(GLenum target, GLint level, in __indirect_glGetCompressedTexImage() argument
52 __GLX_SINGLE_PUT_LONG(0, target); in __indirect_glGetCompressedTexImage()
76 CompressedTexImage1D2D(GLenum target, GLint level, in CompressedTexImage1D2D() argument
89 if ((target == GL_PROXY_TEXTURE_1D) in CompressedTexImage1D2D()
90 || (target == GL_PROXY_TEXTURE_2D) in CompressedTexImage1D2D()
91 || (target == GL_PROXY_TEXTURE_CUBE_MAP)) { in CompressedTexImage1D2D()
101 __GLX_PUT_LONG(4, target); in CompressedTexImage1D2D()
118 __GLX_PUT_LONG(8, target); in CompressedTexImage1D2D()
137 CompressedTexSubImage1D2D(GLenum target, GLint level, in CompressedTexSubImage1D2D() argument
150 if (target in CompressedTexSubImage1D2D()
194 __indirect_glCompressedTexImage1D(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLint border, GLsizei image_size, const GLvoid * data) __indirect_glCompressedTexImage1D() argument
206 __indirect_glCompressedTexImage2D(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLint border, GLsizei image_size, const GLvoid * data) __indirect_glCompressedTexImage2D() argument
219 __indirect_glCompressedTexImage3D(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei image_size, const GLvoid * data) __indirect_glCompressedTexImage3D() argument
267 __indirect_glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei image_size, const GLvoid * data) __indirect_glCompressedTexSubImage1D() argument
280 __indirect_glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei image_size, const GLvoid * data) __indirect_glCompressedTexSubImage2D() argument
293 __indirect_glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei image_size, const GLvoid * data) __indirect_glCompressedTexSubImage3D() argument
[all...]
/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-proxy-object.c72 ecma_proxy_create (ecma_value_t target, /**< proxy target */ in ecma_proxy_create() argument
76 if (!ecma_proxy_validate (target) || !ecma_proxy_validate (handler)) in ecma_proxy_create()
78 ecma_raise_type_error (ECMA_ERR_MSG ("Cannot create proxy with a non-object target or handler")); in ecma_proxy_create()
90 proxy_obj_p->target = target; in ecma_proxy_create()
133 proxy_p->target = ECMA_VALUE_NULL; in ecma_proxy_revoke_cb()
152 ecma_proxy_create_revocable (ecma_value_t target, /**< target argument */ in ecma_proxy_create_revocable() argument
156 ecma_object_t *proxy_p = ecma_proxy_create (target, handle in ecma_proxy_create_revocable()
311 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_get_prototype_of() local
418 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_set_prototype_of() local
519 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_is_extensible() local
603 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_prevent_extensions() local
684 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_get_own_property_descriptor() local
868 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_define_own_property() local
1014 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_has() local
1118 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_get() local
1223 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_set() local
1333 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_delete_property() local
1562 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_own_property_keys() local
1717 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_call() local
1771 ecma_value_t target = proxy_obj_p->target; ecma_proxy_object_construct() local
[all...]
/third_party/node/deps/v8/src/baseline/ppc/
H A Dbaseline-assembler-ppc-inl.h22 inline bool Clobbers(Register target, MemOperand op) { in Clobbers() argument
23 return op.rb() == target || op.ra() == target; in Clobbers()
139 Register rhs, Label* target) { in JumpIfHelper()
145 __ b(AsMasmCondition(cc), target); in JumpIfHelper() local
172 void BaselineAssembler::Jump(Label* target, Label::Distance distance) { in Jump() argument
174 __ b(target); in Jump()
178 Label* target, Label::Distance) { in JumpIfRoot()
180 __ JumpIfRoot(value, index, target); in JumpIfRoot()
184 Label* target, Labe in JumpIfNotRoot()
138 JumpIfHelper(MacroAssembler* assm, Condition cc, Register lhs, Register rhs, Label* target) JumpIfHelper() argument
177 JumpIfRoot(Register value, RootIndex index, Label* target, Label::Distance) JumpIfRoot() argument
183 JumpIfNotRoot(Register value, RootIndex index, Label* target, Label::Distance) JumpIfNotRoot() argument
189 JumpIfSmi(Register value, Label* target, Label::Distance) JumpIfSmi() argument
195 JumpIfImmediate(Condition cc, Register left, int right, Label* target, Label::Distance distance) JumpIfImmediate() argument
202 JumpIfNotSmi(Register value, Label* target, Label::Distance) JumpIfNotSmi() argument
236 TestAndBranch(Register value, int mask, Condition cc, Label* target, Label::Distance) TestAndBranch() argument
240 __ b(AsMasmCondition(cc), target); TestAndBranch() local
243 JumpIf(Condition cc, Register lhs, const Operand& rhs, Label* target, Label::Distance) JumpIf() argument
251 __ b(AsMasmCondition(cc), target); JumpIf() local
254 JumpIfObjectType(Condition cc, Register object, InstanceType instance_type, Register map, Label* target, Label::Distance) JumpIfObjectType() argument
266 JumpIfInstanceType(Condition cc, Register map, InstanceType instance_type, Label* target, Label::Distance) JumpIfInstanceType() argument
281 JumpIfPointer(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance) JumpIfPointer() argument
291 JumpIfSmi(Condition cc, Register value, Smi smi, Label* target, Label::Distance) JumpIfSmi() argument
299 JumpIfSmi(Condition cc, Register lhs, Register rhs, Label* target, Label::Distance) JumpIfSmi() argument
307 JumpIfTagged(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance) JumpIfTagged() argument
315 JumpIfTagged(Condition cc, MemOperand operand, Register value, Label* target, Label::Distance) JumpIfTagged() argument
323 JumpIfByte(Condition cc, Register value, int32_t byte, Label* target, Label::Distance) JumpIfByte() argument
509 StoreTaggedSignedField(Register target, int offset, Smi value) StoreTaggedSignedField() argument
518 StoreTaggedFieldWithWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldWithWriteBarrier() argument
528 StoreTaggedFieldNoWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldNoWriteBarrier() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DTexture.h144 virtual GLsizei getWidth(GLenum target, GLint level) const = 0;
145 virtual GLsizei getHeight(GLenum target, GLint level) const = 0;
146 virtual GLsizei getDepth(GLenum target, GLint level) const;
147 virtual GLint getFormat(GLenum target, GLint level) const = 0;
154 virtual bool isCompressed(GLenum target, GLint level) const = 0;
155 virtual bool isDepth(GLenum target, GLint level) const = 0;
157 virtual Renderbuffer *getRenderbuffer(GLenum target, GLint level) = 0;
158 virtual egl::Image *getRenderTarget(GLenum target, unsigned int level) = 0;
159 egl::Image *createSharedImage(GLenum target, unsigned int level);
160 virtual bool isShared(GLenum target, unsigne
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dtscoll.cpp94 IntlTestCollator::compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status) { in compareUsingPartials() argument
106 uiter_setString(&tIter, target, tLen); in compareUsingPartials()
128 IntlTestCollator::doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result) in doTestVariant() argument
134 Collator::EComparisonResult compareResult = col->compare(source, target); in doTestVariant()
138 col->getCollationKey(target, tgtkey, status); in doTestVariant()
144 reportCResult(source, target, srckey, tgtkey, compareResult, keyResult, result, result); in doTestVariant()
148 int32_t sLen = source.length(), tLen = target.length(); in doTestVariant()
150 const UChar* trg = target.getBuffer(); in doTestVariant()
159 errln("Different result for iterative comparison "+source+" "+target); in doTestVariant()
174 /*log_verbose("Strings converted to UTF-8:%s, %s\n", aescstrdup(source,-1), aescstrdup(target, in doTestVariant()
241 doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result) doTest() argument
246 doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result) doTest() argument
270 reportCResult( const UnicodeString &source, const UnicodeString &target, CollationKey &sourceKey, CollationKey &targetKey, Collator::EComparisonResult compareResult, Collator::EComparisonResult keyResult, Collator::EComparisonResult incResult, Collator::EComparisonResult expectedResult ) reportCResult() argument
341 appendCompareResult(Collator::EComparisonResult result, UnicodeString& target) appendCompareResult() argument
367 prettify(const CollationKey &source, UnicodeString &target) prettify() argument
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cTextureGatherTests.cpp373 GLenum target = GL_TEXTURE_2D; in CreateTexture2DRgb() local
377 glBindTexture(target, tex); in CreateTexture2DRgb()
381 glTexImage2D(target, i, internal_format, size, size, 0, format, tex_type, &pixels[0]); in CreateTexture2DRgb()
387 glTexSubImage2D(target, base_level, 22, 25, 2, 2, format, tex_type, data); in CreateTexture2DRgb()
388 glTexSubImage2D(target, base_level, 16, 10, 1, 1, format, tex_type, data + 0); in CreateTexture2DRgb()
389 glTexSubImage2D(target, base_level, 11, 2, 1, 1, format, tex_type, data + 1); in CreateTexture2DRgb()
390 glTexSubImage2D(target, base_level, 24, 13, 1, 1, format, tex_type, data + 2); in CreateTexture2DRgb()
391 glTexSubImage2D(target, base_level, 9, 14, 1, 1, format, tex_type, data + 3); in CreateTexture2DRgb()
393 glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); in CreateTexture2DRgb()
394 glTexParameteri(target, GL_TEXTURE_WRAP_ in CreateTexture2DRgb()
410 GLenum target = GL_TEXTURE_2D; CreateTexture2DRg() local
448 GLenum target = GL_TEXTURE_2D; CreateTexture2DR() local
483 GLenum target = GL_TEXTURE_2D; CreateTexture2DInt() local
677 GLenum target = GL_TEXTURE_2D; CreateTextureSRGB() local
713 GLenum target = GL_TEXTURE_2D; CreateTexture2D() local
[all...]
/foundation/communication/dsoftbus/tests/core/common/json_utils/uttest/
H A Dsoftbus_json_utils_test.cpp60 char target[ARRAY_LEN]; in HWTEST_F() local
61 int32_t ret = GetStringItemByJsonObject(nullptr, "string", target, ARRAY_LEN); in HWTEST_F()
74 char target[ARRAY_LEN]; in HWTEST_F() local
75 int32_t ret = GetStringItemByJsonObject(json, nullptr, target, ARRAY_LEN); in HWTEST_F()
82 * @tc.desc: When the target parameter is nullptr, the return value is SOFTBUS_INVALID_PARAM
103 char target[ARRAY_LEN]; in HWTEST_F() local
104 int32_t ret = GetStringItemByJsonObject(json, "string", target, ARRAY_LEN); in HWTEST_F()
119 "This is a very long string that is definitely too long to fit in the target buffer."); in HWTEST_F()
120 char target[ARRAY_LEN]; in HWTEST_F() local
121 int32_t ret = GetStringItemByJsonObject(json, "string", target, ARRAY_LE in HWTEST_F()
136 char target[ARRAY_LEN]; HWTEST_F() local
197 int32_t target; HWTEST_F() local
211 int32_t target; HWTEST_F() local
240 int32_t target; HWTEST_F() local
256 int32_t target; HWTEST_F() local
271 double target; HWTEST_F() local
285 double target; HWTEST_F() local
314 double target; HWTEST_F() local
330 double target; HWTEST_F() local
346 uint16_t target; HWTEST_F() local
369 int64_t target; HWTEST_F() local
383 int64_t target; HWTEST_F() local
412 int64_t target; HWTEST_F() local
426 int64_t target; HWTEST_F() local
442 int64_t target; HWTEST_F() local
459 int64_t target; HWTEST_F() local
472 int64_t target; HWTEST_F() local
501 int64_t target; HWTEST_F() local
516 int64_t target; HWTEST_F() local
533 int32_t target; HWTEST_F() local
[all...]
/third_party/node/lib/internal/
H A Dchild_process.js166 postSend(message, handle, options, callback, target) {
171 if (target) {
175 assert(!target._pendingMessage);
176 target._pendingMessage =
342 function closePendingHandle(target) {
343 target._pendingMessage.handle.close();
344 target._pendingMessage = null;
576 function setupChannel(target, channel, serializationMode) {
578 target.channel = control;
579 target[kChannelHandl
[all...]
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dphonemetadata.pb.cc313 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { in _InternalSerialize()
321 target = stream->WriteStringMaybeAliased( in _InternalSerialize()
322 1, this->_internal_pattern(), target); in _InternalSerialize()
327 target = stream->WriteStringMaybeAliased( in _InternalSerialize()
328 2, this->_internal_format(), target); in _InternalSerialize()
334 target = stream->WriteString(3, s, target); in _InternalSerialize()
339 target = stream->WriteStringMaybeAliased( in _InternalSerialize()
340 4, this->_internal_national_prefix_formatting_rule(), target); in _InternalSerialize()
345 target in _InternalSerialize()
312 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
681 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
1638 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
2370 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
[all...]
/foundation/communication/ipc/ipc/native/c/manager/src/
H A Dipc_skeleton.c71 int32_t SetContextObject(SvcIdentity target) in SetContextObject() argument
77 if (target.cookie == COOKIE_NULL) { in SetContextObject()
81 return SetRegistryObject(target); in SetContextObject()
84 int32_t SendRequest(SvcIdentity target, uint32_t code, IpcIo *data, IpcIo *reply, in SendRequest() argument
91 return ProcessSendRequest(target, code, data, reply, option, buffer); in SendRequest()
94 int32_t AddDeathRecipient(SvcIdentity target, OnRemoteDead deathFunc, void *args, uint32_t *cbId) in AddDeathRecipient() argument
100 if (target.handle < INVALID_HANDLE) { in AddDeathRecipient()
104 return ProcessAddDeathRecipient(target.handle, deathFunc, args, cbId); in AddDeathRecipient()
107 int32_t RemoveDeathRecipient(SvcIdentity target, uint32_t cbId) in RemoveDeathRecipient() argument
113 if (target in RemoveDeathRecipient()
145 ReleaseSvc(SvcIdentity target) ReleaseSvc() argument
[all...]
/kernel/linux/linux-5.10/fs/sysfs/
H A Dsymlink.c24 struct kernfs_node *kn, *target = NULL; in sysfs_do_create_link_sd() local
36 target = target_kobj->sd; in sysfs_do_create_link_sd()
37 kernfs_get(target); in sysfs_do_create_link_sd()
41 if (!target) in sysfs_do_create_link_sd()
44 kn = kernfs_create_link(parent, name, target); in sysfs_do_create_link_sd()
45 kernfs_put(target); in sysfs_do_create_link_sd()
58 * @target: object we're pointing to.
61 int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target, in sysfs_create_link_sd() argument
64 return sysfs_do_create_link_sd(kn, target, name, 1); in sysfs_create_link_sd()
67 static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target, in sysfs_do_create_link() argument
89 sysfs_create_link(struct kobject *kobj, struct kobject *target, const char *name) sysfs_create_link() argument
105 sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target, const char *name) sysfs_create_link_nowarn() argument
[all...]

Completed in 16 milliseconds

12345678910>>...315