Home
last modified time | relevance | path

Searched refs:target (Results 151 - 175 of 6931) sorted by relevance

12345678910>>...278

/third_party/mesa3d/src/mesa/main/
H A Dgenmipmap.c46 GLenum target) in _mesa_is_valid_generate_texture_mipmap_target()
50 switch (target) { in _mesa_is_valid_generate_texture_mipmap_target()
116 struct gl_texture_object *texObj, GLenum target, in generate_texture_mipmap()
139 srcImage = _mesa_select_tex_image(texObj, target, texObj->Attrib.BaseLevel); in generate_texture_mipmap()
177 if (target == GL_TEXTURE_CUBE_MAP) { in generate_texture_mipmap()
185 st_generate_mipmap(ctx, target, texObj); in generate_texture_mipmap()
196 _mesa_GenerateMipmap_no_error(GLenum target) in _mesa_GenerateMipmap_no_error() argument
200 struct gl_texture_object *texObj = _mesa_get_current_tex_object(ctx, target); in _mesa_GenerateMipmap_no_error()
201 generate_texture_mipmap(ctx, texObj, target, NULL); in _mesa_GenerateMipmap_no_error()
205 _mesa_GenerateMipmap(GLenum target) in _mesa_GenerateMipmap() argument
45 _mesa_is_valid_generate_texture_mipmap_target(struct gl_context *ctx, GLenum target) _mesa_is_valid_generate_texture_mipmap_target() argument
115 generate_texture_mipmap(struct gl_context *ctx, struct gl_texture_object *texObj, GLenum target, const char* caller) generate_texture_mipmap() argument
264 _mesa_GenerateTextureMipmapEXT(GLuint texture, GLenum target) _mesa_GenerateTextureMipmapEXT() argument
277 _mesa_GenerateMultiTexMipmapEXT(GLenum texunit, GLenum target) _mesa_GenerateMultiTexMipmapEXT() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdecoratorReferenceOnOtherProperty.js40 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
41 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
42 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
43 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
44 return c > 3 && r && Object.defineProperty(target, key, r), r;
50 return function (target, key) { decorator(target, key, paramIndex); }
74 var __decorate = (this && this.__decorate) || function (decorators, target, ke
[all...]
/third_party/gn/src/gn/
H A Dtarget_public_pair.h12 // C++ and Rust target resolution requires computing uniquified and
14 // the target's dependency tree.
35 TargetPublicPair(const Target* target, bool is_public) in TargetPublicPair() argument
36 : target_(target), is_public_(is_public) {} in TargetPublicPair()
40 const Target* target() const { return target_; } in target() function in TargetPublicPair
41 void set_target(const Target* target) { target_ = target; } in set_target() argument
47 // that only use the target for lookups / comparisons. E.g.
57 return std::hash<const Target*>()(p.target());
63 return a.target()
97 Append(const Target* target, bool is_public) Append() argument
[all...]
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_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 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...]
/third_party/node/test/parallel/
H A Dtest-child-process-send-type-error.js13 let target = process;
16 target = cp.fork(__filename, ['child']);
17 target.on('exit', common.mustCall((code, signal) => {
23 fail(target, ['msg', null, null]);
24 fail(target, ['msg', null, '']);
25 fail(target, ['msg', null, 'foo']);
26 fail(target, ['msg', null, 0]);
27 fail(target, ['msg', null, NaN]);
28 fail(target, ['msg', null, 1]);
29 fail(target, ['ms
[all...]
/kernel/linux/linux-5.10/drivers/acpi/acpica/
H A Drsdump.c177 u8 *target = NULL; in acpi_rs_dump_descriptor() local
187 previous_target = target; in acpi_rs_dump_descriptor()
188 target = ACPI_ADD_PTR(u8, resource, table->offset); in acpi_rs_dump_descriptor()
211 acpi_rs_out_string(name, ACPI_CAST_PTR(char, target)); in acpi_rs_dump_descriptor()
220 table->pointer[*target]); in acpi_rs_dump_descriptor()
222 acpi_rs_out_integer8(name, ACPI_GET8(target)); in acpi_rs_dump_descriptor()
228 acpi_rs_out_integer16(name, ACPI_GET16(target)); in acpi_rs_dump_descriptor()
233 acpi_rs_out_integer32(name, ACPI_GET32(target)); in acpi_rs_dump_descriptor()
238 acpi_rs_out_integer64(name, ACPI_GET64(target)); in acpi_rs_dump_descriptor()
246 table->pointer[*target in acpi_rs_dump_descriptor()
295 target); acpi_rs_dump_descriptor() local
[all...]
/kernel/linux/linux-5.10/drivers/macintosh/
H A Dwindfarm_pid.c36 s32 target; in wf_pid_run() local
66 /* Calculate target */ in wf_pid_run()
67 target = (s32)((integ * (s64)st->param.gr + deriv * (s64)st->param.gd + in wf_pid_run()
70 target += st->target; in wf_pid_run()
71 target = max(target, st->param.min); in wf_pid_run()
72 target = min(target, st->param.max); in wf_pid_run()
73 st->target in wf_pid_run()
91 s32 error, target, sval, adj; wf_cpu_pid_run() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_mutex.c16 int target; member
51 nfp_cpp_mutex_validate(u16 interface, int *target, unsigned long long address) in nfp_cpp_mutex_validate() argument
62 if (*target != NFP_CPP_TARGET_MU) in nfp_cpp_mutex_validate()
71 * @target: NFP CPP target ID (ie NFP_CPP_TARGET_CLS or NFP_CPP_TARGET_MU)
72 * @address: Offset into the address space of the NFP CPP target ID
75 * The CPP target:address must point to a 64-bit aligned location, and
87 int target, unsigned long long address, u32 key) in nfp_cpp_mutex_init()
89 const u32 muw = NFP_CPP_ID(target, 4, 0); /* atomic_write */ in nfp_cpp_mutex_init()
93 err = nfp_cpp_mutex_validate(interface, &target, addres in nfp_cpp_mutex_init()
86 nfp_cpp_mutex_init(struct nfp_cpp *cpp, int target, unsigned long long address, u32 key) nfp_cpp_mutex_init() argument
123 nfp_cpp_mutex_alloc(struct nfp_cpp *cpp, int target, unsigned long long address, u32 key) nfp_cpp_mutex_alloc() argument
341 nfp_cpp_mutex_reclaim(struct nfp_cpp *cpp, int target, unsigned long long address) nfp_cpp_mutex_reclaim() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_mutex.c16 int target; member
51 nfp_cpp_mutex_validate(u16 interface, int *target, unsigned long long address) in nfp_cpp_mutex_validate() argument
62 if (*target != NFP_CPP_TARGET_MU) in nfp_cpp_mutex_validate()
71 * @target: NFP CPP target ID (ie NFP_CPP_TARGET_CLS or NFP_CPP_TARGET_MU)
72 * @address: Offset into the address space of the NFP CPP target ID
75 * The CPP target:address must point to a 64-bit aligned location, and
87 int target, unsigned long long address, u32 key) in nfp_cpp_mutex_init()
89 const u32 muw = NFP_CPP_ID(target, 4, 0); /* atomic_write */ in nfp_cpp_mutex_init()
93 err = nfp_cpp_mutex_validate(interface, &target, addres in nfp_cpp_mutex_init()
86 nfp_cpp_mutex_init(struct nfp_cpp *cpp, int target, unsigned long long address, u32 key) nfp_cpp_mutex_init() argument
123 nfp_cpp_mutex_alloc(struct nfp_cpp *cpp, int target, unsigned long long address, u32 key) nfp_cpp_mutex_alloc() argument
341 nfp_cpp_mutex_reclaim(struct nfp_cpp *cpp, int target, unsigned long long address) nfp_cpp_mutex_reclaim() argument
[all...]
/kernel/linux/linux-6.6/drivers/macintosh/
H A Dwindfarm_pid.c36 s32 target; in wf_pid_run() local
66 /* Calculate target */ in wf_pid_run()
67 target = (s32)((integ * (s64)st->param.gr + deriv * (s64)st->param.gd + in wf_pid_run()
70 target += st->target; in wf_pid_run()
71 target = max(target, st->param.min); in wf_pid_run()
72 target = min(target, st->param.max); in wf_pid_run()
73 st->target in wf_pid_run()
91 s32 error, target, sval, adj; wf_cpu_pid_run() local
[all...]
/kernel/linux/linux-5.10/arch/sparc/kernel/
H A Dptrace_32.c48 static int regwindow32_get(struct task_struct *target, in regwindow32_get() argument
55 if (target == current) { in regwindow32_get()
59 if (access_process_vm(target, reg_window, uregs, size, in regwindow32_get()
66 static int regwindow32_set(struct task_struct *target, in regwindow32_set() argument
73 if (target == current) { in regwindow32_set()
77 if (access_process_vm(target, reg_window, uregs, size, in regwindow32_set()
84 static int genregs32_get(struct task_struct *target, in genregs32_get() argument
88 const struct pt_regs *regs = target->thread.kregs; in genregs32_get()
91 if (target == current) in genregs32_get()
97 if (regwindow32_get(target, reg in genregs32_get()
107 genregs32_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) genregs32_set() argument
166 fpregs32_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) fpregs32_get() argument
182 fpregs32_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) fpregs32_set() argument
244 getregs_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) getregs_get() argument
260 setregs_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) setregs_set() argument
287 getfpregs_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) getfpregs_get() argument
300 setfpregs_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) setfpregs_set() argument
[all...]
/kernel/linux/linux-6.6/arch/sparc/kernel/
H A Dptrace_32.c47 static int regwindow32_get(struct task_struct *target, in regwindow32_get() argument
54 if (target == current) { in regwindow32_get()
58 if (access_process_vm(target, reg_window, uregs, size, in regwindow32_get()
65 static int regwindow32_set(struct task_struct *target, in regwindow32_set() argument
72 if (target == current) { in regwindow32_set()
76 if (access_process_vm(target, reg_window, uregs, size, in regwindow32_set()
83 static int genregs32_get(struct task_struct *target, in genregs32_get() argument
87 const struct pt_regs *regs = target->thread.kregs; in genregs32_get()
90 if (target == current) in genregs32_get()
96 if (regwindow32_get(target, reg in genregs32_get()
106 genregs32_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) genregs32_set() argument
166 fpregs32_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) fpregs32_get() argument
182 fpregs32_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) fpregs32_set() argument
244 getregs_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) getregs_get() argument
260 setregs_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) setregs_set() argument
287 getfpregs_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) getfpregs_get() argument
300 setfpregs_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) setfpregs_set() 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/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...]
/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/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java55 * replacing contents of the target buffer.
57 * @param target the resulting normalized text
59 public StringBuffer normalize(String source, StringBuffer target) { in normalize() argument
61 // First decompose the source into target, in normalize()
65 internalDecompose(source, target); in normalize()
67 internalCompose(target); in normalize()
70 return target; in normalize()
76 * @return target the resulting normalized text
93 * replacing contents of the target buffer.
99 * @param target th
101 internalDecompose(String source, StringBuffer target) internalDecompose() argument
141 internalCompose(StringBuffer target) internalCompose() argument
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java52 * replacing contents of the target buffer.
54 * @param target the resulting normalized text
56 public StringBuffer normalize(String source, StringBuffer target) { in normalize() argument
58 // First decompose the source into target, in normalize()
62 internalDecompose(source, target); in normalize()
64 internalCompose(target); in normalize()
67 return target; in normalize()
73 * @return target the resulting normalized text
90 * replacing contents of the target buffer.
96 * @param target th
98 internalDecompose(String source, StringBuffer target) internalDecompose() argument
138 internalCompose(StringBuffer target) internalCompose() 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/rust/crates/log/
H A Dbuild.rs1 //! This build script detects target platforms that lack proper support for
8 let target = match rustc_target() { in main()
9 Some(target) => target, in main()
13 if target_has_atomic_cas(&target) { in main()
17 if target_has_atomics(&target) { in main()
24 fn target_has_atomic_cas(target: &str) -> bool { in target_has_atomic_cas()
25 match &target[..] { in target_has_atomic_cas()
34 fn target_has_atomics(target: &str) -> bool { in target_has_atomics()
35 match &target[ in target_has_atomics()
[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/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/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...]

Completed in 20 milliseconds

12345678910>>...278