Home
last modified time | relevance | path

Searched refs:target (Results 76 - 100 of 7038) sorted by relevance

12345678910>>...282

/third_party/gn/src/gn/
H A Dswift_values.cc13 #include "gn/target.h"
21 bool SwiftValues::OnTargetResolved(Target* target, Err* err) { in OnTargetResolved() argument
22 if (!target->builds_swift_module()) in OnTargetResolved()
25 return target->swift_values().FillModuleOutputFile(target, err); in OnTargetResolved()
28 const Tool* SwiftValues::GetTool(const Target* target) const { in GetTool()
29 DCHECK(target->builds_swift_module()); in GetTool()
30 return target->toolchain()->GetToolForSourceType(SourceFile::SOURCE_SWIFT); in GetTool()
33 void SwiftValues::GetOutputs(const Target* target, in GetOutputs() argument
35 const Tool* tool = GetTool(target); in GetOutputs()
52 GetOutputsAsSourceFiles( const Target* target, std::vector<SourceFile>* result) const GetOutputsAsSourceFiles() argument
66 FillModuleOutputFile(Target* target, Err* err) FillModuleOutputFile() argument
[all...]
H A Dsubstitution_writer.cc19 #include "gn/target.h"
42 Source expansion is used for the action_foreach and copy target types to map
93 This will be different than the target's generated file directory if the
99 relative to the build directory. this us be different than the target's
105 The path to the source file relative to the target's directory. This will
109 "target".
206 const Target* target,
211 ApplyPatternToSourceAsString(target, settings, pattern, source);
220 const Target* target,
229 result_value.append(GetSourceSubstitution(target, setting
[all...]
H A Dxcode_writer.cc39 #include "gn/target.h"
130 bool IsApplicationTarget(const Target* target) { in IsApplicationTarget() argument
131 return target->output_type() == Target::CREATE_BUNDLE && in IsApplicationTarget()
132 target->bundle_data().product_type() == in IsApplicationTarget()
136 bool IsXCUITestRunnerTarget(const Target* target) { in IsXCUITestRunnerTarget() argument
137 return IsApplicationTarget(target) && in IsXCUITestRunnerTarget()
138 base::ends_with(target->label().name(), kXCUITestRunnerTargetNamePostfix); in IsXCUITestRunnerTarget()
141 bool IsXCTestModuleTarget(const Target* target) { in IsXCTestModuleTarget() argument
142 return target->output_type() == Target::CREATE_BUNDLE && in IsXCTestModuleTarget()
143 target in IsXCTestModuleTarget()
148 IsXCUITestModuleTarget(const Target* target) IsXCUITestModuleTarget() argument
174 const Target* target = pair.first; FindApplicationTargetByName() local
269 SearchFilesForTarget( const Target* target) SearchFilesForTarget() argument
847 const Target* target = pair.first; AddCXTestSourceFilesForTestModuleTargets() local
889 const Target* target = pair.first; AddDependencyTargetsForTestModuleTargets() local
983 AddBinaryTarget(const Target* target, base::Environment* env, Err* err) AddBinaryTarget() argument
1017 AddBundleTarget(const Target* target, base::Environment* env, Err* err) AddBundleTarget() argument
[all...]
H A Dninja_c_binary_target_writer_unittest.cc14 #include "gn/target.h"
26 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F()
27 target.set_output_type(Target::SOURCE_SET); in TEST_F()
28 target.visibility().SetPublic(); in TEST_F()
29 target.sources().push_back(SourceFile("//foo/input1.cc")); in TEST_F()
30 target.sources().push_back(SourceFile("//foo/input2.cc")); in TEST_F()
33 target.sources().push_back(SourceFile("//foo/input3.o")); in TEST_F()
34 target.sources().push_back(SourceFile("//foo/input4.obj")); in TEST_F()
35 target.source_types_used().Set(SourceFile::SOURCE_CPP); in TEST_F()
36 target in TEST_F()
[all...]
H A Dheader_checker.cc21 #include "gn/target.h"
57 // Given a reverse dependency chain where the target chain[0]'s includes are
62 "The target:\n " + in GetDependencyChainPublicError()
63 chain[chain.size() - 1].target->label().GetUserVisibleName(false) + in GetDependencyChainPublicError()
64 "\nis including a file from the target:\n " + in GetDependencyChainPublicError()
65 chain[0].target->label().GetUserVisibleName(false) + "\n"; in GetDependencyChainPublicError()
69 // target can always include headers from itself and its direct dependents. in GetDependencyChainPublicError()
76 "\nIt's usually best to depend directly on the destination target.\n" in GetDependencyChainPublicError()
77 "In some cases, the destination target is considered a subcomponent\n" in GetDependencyChainPublicError()
78 "of an intermediate target in GetDependencyChainPublicError()
190 DoWork(const Target* target, const SourceFile& file) DoWork() argument
205 AddTargetToFileMap(const Target* target, FileMap* dest) AddTargetToFileMap() argument
568 const Target* target = cur_link.target; IsDependencyOf() local
[all...]
H A Dcommand_refs.cc23 #include "gn/target.h"
37 for (auto* target : setup->builder().GetAllResolvedTargets()) { in FillDepMap()
38 for (const auto& dep_pair : target->GetDeps(Target::DEPS_ALL)) in FillDepMap()
39 dep_map->insert(std::make_pair(dep_pair.ptr, target)); in FillDepMap()
45 const Target* target,
49 // Prints the target and its dependencies in tree form. If the set is non-null,
56 const Target* target, in RecursivePrintTarget()
63 OutputString(indent + target->label().GetUserVisibleName( in RecursivePrintTarget()
64 !target->settings()->is_default())); in RecursivePrintTarget()
68 if (!seen_targets->add(target)) { in RecursivePrintTarget()
55 RecursivePrintTarget(const DepMap& dep_map, const Target* target, TargetSet* seen_targets, int indent_level) RecursivePrintTarget() argument
88 RecursivePrintTargetDeps(const DepMap& dep_map, const Target* target, TargetSet* seen_targets, int indent_level) RecursivePrintTargetDeps() argument
109 RecursiveCollectRefs(const DepMap& dep_map, const Target* target, TargetSet* results) RecursiveCollectRefs() argument
118 RecursiveCollectChildRefs(const DepMap& dep_map, const Target* target, TargetSet* results) RecursiveCollectChildRefs() argument
128 TargetReferencesConfig(const Target* target, const Config* config) TargetReferencesConfig() argument
[all...]
/kernel/linux/linux-5.10/arch/powerpc/kernel/ptrace/
H A Dptrace-decl.h67 int fpr_set(struct task_struct *target, const struct user_regset *regset,
73 int vsr_active(struct task_struct *target, const struct user_regset *regset);
75 int vsr_set(struct task_struct *target, const struct user_regset *regset,
81 int vr_active(struct task_struct *target, const struct user_regset *regset);
83 int vr_set(struct task_struct *target, const struct user_regset *regset,
89 int evr_active(struct task_struct *target, const struct user_regset *regset);
91 int evr_set(struct task_struct *target, const struct user_regset *regset,
97 int gpr32_get_common(struct task_struct *target,
101 int gpr32_set_common(struct task_struct *target,
115 int tm_cgpr_active(struct task_struct *target, cons
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dformatquery.c65 _legal_parameters(struct gl_context *ctx, GLenum target, GLenum internalformat, in _legal_parameters() argument
73 * "The INVALID_ENUM error is generated if the <target> parameter to in _legal_parameters()
76 switch(target){ in _legal_parameters()
89 * "If the <target> parameter to GetInternalformativ is not one of in _legal_parameters()
94 "glGetInternalformativ(target=%s)", in _legal_parameters()
95 _mesa_enum_to_string(target)); in _legal_parameters()
112 "glGetInternalformativ(target=%s)", in _legal_parameters()
113 _mesa_enum_to_string(target)); in _legal_parameters()
121 "glGetInternalformativ(target=%s)", in _legal_parameters()
122 _mesa_enum_to_string(target)); in _legal_parameters()
416 _is_target_supported(struct gl_context *ctx, GLenum target) _is_target_supported() argument
483 _is_resource_supported(struct gl_context *ctx, GLenum target, GLenum internalformat, GLenum pname) _is_resource_supported() argument
570 _is_internalformat_supported(struct gl_context *ctx, GLenum target, GLenum internalformat) _is_internalformat_supported() argument
621 _legal_target_for_framebuffer_texture_layer(struct gl_context *ctx, GLenum target) _legal_target_for_framebuffer_texture_layer() argument
652 _mesa_query_internal_format_default(struct gl_context *ctx, GLenum target, GLenum internalFormat, GLenum pname, GLint *params) _mesa_query_internal_format_default() argument
778 _equivalent_size_pname(GLenum target, GLenum pname) _equivalent_size_pname() argument
823 _get_target_dimensions(GLenum target) _get_target_dimensions() argument
867 _mesa_is_multisample_target(GLenum target) _mesa_is_multisample_target() argument
880 _mesa_GetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint *params) _mesa_GetInternalformativ() argument
1623 _mesa_GetInternalformati64v(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint64 *params) _mesa_GetInternalformati64v() argument
[all...]
H A Dteximage.h44 _mesa_is_cube_face(GLenum target) in _mesa_is_cube_face() argument
46 return (target >= GL_TEXTURE_CUBE_MAP_POSITIVE_X && in _mesa_is_cube_face()
47 target <= GL_TEXTURE_CUBE_MAP_NEGATIVE_Z); in _mesa_is_cube_face()
52 * Return number of faces for a texture target. This will be 6 for
58 _mesa_num_tex_faces(GLenum target) in _mesa_num_tex_faces() argument
60 switch (target) { in _mesa_num_tex_faces()
71 * If the target is GL_TEXTURE_CUBE_MAP, return one of the
74 * Else, return target as-is.
77 _mesa_cube_face_target(GLenum target, unsigned face) in _mesa_cube_face_target() argument
79 if (target in _mesa_cube_face_target()
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dproxy_get_prototoype_of.js19 var target = {};
20 var handler = { getPrototypeOf (target) {
24 var proxy = new Proxy(target, handler);
75 var target = {};
77 getPrototypeOf(target) {
81 var proxy = new Proxy(target, handler);
92 getPrototypeOf(target) {
96 var proxy = new Proxy(target, handler);
100 var target = {};
102 var proxy = new Proxy(target, handle
[all...]
H A Dproxy_call.js19 var target = function () {}; function
20 var handler = { apply (target) {
24 var proxy = new Proxy (target, handler);
49 apply: function (target, thisArg, argumentsList) {
50 return target (argumentsList[0], argumentsList[1]) * 10;
78 var target = function () {
81 var proxy = new Proxy (target, {});
94 var target = function (a) {
98 var proxy = new Proxy (target, {});
105 var target
[all...]
/third_party/skia/src/gpu/ops/
H A DGrMeshDrawOp.cpp19 void GrMeshDrawOp::createProgramInfo(GrMeshDrawTarget* target) { in createProgramInfo() argument
20 this->createProgramInfo(&target->caps(), in createProgramInfo()
21 target->allocator(), in createProgramInfo()
22 target->writeView(), in createProgramInfo()
23 target->usesMSAASurface(), in createProgramInfo()
24 target->detachAppliedClip(), in createProgramInfo()
25 target->dstProxyView(), in createProgramInfo()
26 target->renderPassBarriers(), in createProgramInfo()
27 target->colorLoadOp()); in createProgramInfo()
68 GrMeshDrawOp::PatternHelper::PatternHelper(GrMeshDrawTarget* target, GrPrimitiveTyp argument
76 init(GrMeshDrawTarget* target, GrPrimitiveType primitiveType, size_t vertexStride, sk_sp<const GrBuffer> indexBuffer, int verticesPerRepetition, int indicesPerRepetition, int repeatCount, int maxRepetitions) init() argument
103 recordDraw(GrMeshDrawTarget* target, const GrGeometryProcessor* gp) const recordDraw() argument
108 recordDraw( GrMeshDrawTarget* target, const GrGeometryProcessor* gp, const GrSurfaceProxy* const primProcProxies[]) const recordDraw() argument
117 QuadHelper(GrMeshDrawTarget* target, size_t vertexStride, int quadsToDraw) QuadHelper() argument
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DReader.java207 * @param target the list that will receive the read values.
209 void readDoubleList(List<Double> target) throws IOException; in readDoubleList() argument
215 * @param target the list that will receive the read values.
217 void readFloatList(List<Float> target) throws IOException; in readFloatList() argument
223 * @param target the list that will receive the read values.
225 void readUInt64List(List<Long> target) throws IOException; in readUInt64List() argument
231 * @param target the list that will receive the read values.
233 void readInt64List(List<Long> target) throws IOException; in readInt64List() argument
239 * @param target the list that will receive the read values.
241 void readInt32List(List<Integer> target) throw argument
249 readFixed64List(List<Long> target) readFixed64List() argument
257 readFixed32List(List<Integer> target) readFixed32List() argument
265 readBoolList(List<Boolean> target) readBoolList() argument
272 readStringList(List<String> target) readStringList() argument
280 readStringListRequireUtf8(List<String> target) readStringListRequireUtf8() argument
288 readMessageList( List<T> target, Schema<T> schema, ExtensionRegistryLite extensionRegistry) readMessageList() argument
291 readMessageList( List<T> target, Class<T> targetType, ExtensionRegistryLite extensionRegistry) readMessageList() argument
303 readGroupList( List<T> target, Class<T> targetType, ExtensionRegistryLite extensionRegistry) readGroupList() argument
308 readGroupList( List<T> target, Schema<T> targetType, ExtensionRegistryLite extensionRegistry) readGroupList() argument
317 readBytesList(List<ByteString> target) readBytesList() argument
325 readUInt32List(List<Integer> target) readUInt32List() argument
333 readEnumList(List<Integer> target) readEnumList() argument
341 readSFixed32List(List<Integer> target) readSFixed32List() argument
349 readSFixed64List(List<Long> target) readSFixed64List() argument
357 readSInt32List(List<Integer> target) readSInt32List() argument
365 readSInt64List(List<Long> target) readSInt64List() argument
374 readMap( Map<K, V> target, MapEntryLite.Metadata<K, V> mapDefaultEntry, ExtensionRegistryLite extensionRegistry) readMap() argument
[all...]
/third_party/gn/infra/recipe_modules/target/examples/
H A Dfull.py6 'target',
14 target = api.target('fuchsia-arm64')
15 assert not target.is_win
16 assert not target.is_linux
17 assert not target.is_mac
18 assert api.target.host.is_host
19 assert target != api.target.host
20 assert target !
[all...]
/third_party/node/src/
H A Dnode_zlib.cc1259 static void Make(Environment* env, Local<Object> target, const char* name) { in Make()
1275 SetConstructorFunction(env->context(), target, name, z); in Make()
1289 void Initialize(Local<Object> target, in Initialize() argument
1295 MakeClass<ZlibStream>::Make(env, target, "Zlib"); in Initialize()
1296 MakeClass<BrotliEncoderStream>::Make(env, target, "BrotliEncoder"); in Initialize()
1297 MakeClass<BrotliDecoderStream>::Make(env, target, "BrotliDecoder"); in Initialize()
1299 target->Set(env->context(), in Initialize()
1312 void DefineZlibConstants(Local<Object> target) { in DefineZlibConstants() argument
1313 NODE_DEFINE_CONSTANT(target, Z_NO_FLUSH); in DefineZlibConstants()
1314 NODE_DEFINE_CONSTANT(target, Z_PARTIAL_FLUS in DefineZlibConstants()
[all...]
/kernel/linux/linux-5.10/tools/perf/arch/s390/annotate/
H A Dinstructions.c9 struct addr_map_symbol target = { in s390_call__parse() local
17 ops->target.addr = strtoull(tok + 1, &endptr, 16); in s390_call__parse()
34 ops->target.name = strdup(name); in s390_call__parse()
37 if (ops->target.name == NULL) in s390_call__parse()
39 target.addr = map__objdump_2mem(map, ops->target.addr); in s390_call__parse()
41 if (maps__find_ams(ms->maps, &target) == 0 && in s390_call__parse()
42 map__rip_2objdump(target.ms.map, map->map_ip(target.ms.map, target in s390_call__parse()
60 char *s = strchr(ops->raw, ','), *target, *endptr; s390_mov__parse() local
[all...]
/kernel/linux/linux-6.6/tools/perf/arch/s390/annotate/
H A Dinstructions.c9 struct addr_map_symbol target = { in s390_call__parse() local
17 ops->target.addr = strtoull(tok + 1, &endptr, 16); in s390_call__parse()
34 ops->target.name = strdup(name); in s390_call__parse()
37 if (ops->target.name == NULL) in s390_call__parse()
39 target.addr = map__objdump_2mem(map, ops->target.addr); in s390_call__parse()
41 if (maps__find_ams(ms->maps, &target) == 0 && in s390_call__parse()
42 map__rip_2objdump(target.ms.map, map__map_ip(target.ms.map, target in s390_call__parse()
57 char *s = strchr(ops->raw, ','), *target, *endptr; s390_mov__parse() local
[all...]
/third_party/node/deps/v8/src/wasm/
H A Djump-table-assembler.cc24 bool JumpTableAssembler::EmitJumpSlot(Address target) { in EmitJumpSlot() argument
26 reinterpret_cast<byte*>(target) - pc_ - kNearJmpInstrSize); in EmitJumpSlot()
32 void JumpTableAssembler::EmitFarJumpSlot(Address target) { in EmitFarJumpSlot() argument
42 dq(target); // 8 bytes in EmitFarJumpSlot()
46 void JumpTableAssembler::PatchFarJumpSlot(Address slot, Address target) { in PatchFarJumpSlot() argument
49 // Offset of the target is at 8 bytes, see {EmitFarJumpSlot}. in PatchFarJumpSlot()
51 ->store(target, std::memory_order_relaxed); in PatchFarJumpSlot()
54 // cores. It's ok if they temporarily jump to the old target. in PatchFarJumpSlot()
69 bool JumpTableAssembler::EmitJumpSlot(Address target) {
70 jmp(target, RelocInf
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DConvertUTF.cpp123 UTF16* target = *targetStart; in ConvertUTF32toUTF16() local
126 if (target >= targetEnd) { in ConvertUTF32toUTF16()
138 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16()
141 *target++ = (UTF16)ch; /* normal case */ in ConvertUTF32toUTF16()
147 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16()
150 /* target is a character in range 0xFFFF - 0x10FFFF. */ in ConvertUTF32toUTF16()
151 if (target + 1 >= targetEnd) { in ConvertUTF32toUTF16()
156 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); in ConvertUTF32toUTF16()
157 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); in ConvertUTF32toUTF16()
161 *targetStart = target; in ConvertUTF32toUTF16()
172 UTF32* target = *targetStart; ConvertUTF16toUTF32() local
226 UTF8* target = *targetStart; ConvertUTF16toUTF8() local
296 UTF8* target = *targetStart; ConvertUTF32toUTF8() local
520 UTF16* target = *targetStart; ConvertUTF8toUTF16() local
594 UTF32* target = *targetStart; ConvertUTF8toUTF32Impl() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DConvertUTF.cpp149 UTF16* target = *targetStart; in ConvertUTF32toUTF16() local
152 if (target >= targetEnd) { in ConvertUTF32toUTF16()
164 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16()
167 *target++ = (UTF16)ch; /* normal case */ in ConvertUTF32toUTF16()
173 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16()
176 /* target is a character in range 0xFFFF - 0x10FFFF. */ in ConvertUTF32toUTF16()
177 if (target + 1 >= targetEnd) { in ConvertUTF32toUTF16()
182 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); in ConvertUTF32toUTF16()
183 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); in ConvertUTF32toUTF16()
187 *targetStart = target; in ConvertUTF32toUTF16()
198 UTF32* target = *targetStart; ConvertUTF16toUTF32() local
252 UTF8* target = *targetStart; ConvertUTF16toUTF8() local
322 UTF8* target = *targetStart; ConvertUTF32toUTF8() local
546 UTF16* target = *targetStart; ConvertUTF8toUTF16() local
620 UTF32* target = *targetStart; ConvertUTF8toUTF32Impl() local
[all...]
/third_party/typescript/tests/baselines/reference/
H A DinvalidNewTarget.es5.js2 const a = new.target;
3 const b = () => new.target;
6 [new.target]() { }
7 c() { return new.target; }
8 get d() { return new.target; }
9 set e(_) { _ = new.target; }
10 f = () => new.target;
12 static [new.target]() { }
13 static g() { return new.target; }
14 static get h() { return new.target; }
[all...]
/kernel/linux/linux-5.10/arch/loongarch/kernel/
H A Dptrace.c41 static void init_fp_ctx(struct task_struct *target) in init_fp_ctx() argument
43 /* The target already has context */ in init_fp_ctx()
44 if (tsk_used_math(target)) in init_fp_ctx()
48 memset(&target->thread.fpu.fpr, ~0, sizeof(target->thread.fpu.fpr)); in init_fp_ctx()
49 set_stopped_child_used_math(target); in init_fp_ctx()
66 static int gpr_get(struct task_struct *target, in gpr_get() argument
71 struct pt_regs *regs = task_pt_regs(target); in gpr_get()
81 static int gpr_set(struct task_struct *target, in gpr_set() argument
90 struct pt_regs *regs = task_pt_regs(target); in gpr_set()
112 gfpr_get(struct task_struct *target, struct membuf *to) gfpr_get() argument
118 gfpr_get_simd(struct task_struct *target, struct membuf *to) gfpr_get_simd() argument
136 fpr_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) fpr_get() argument
155 gfpr_set(struct task_struct *target, unsigned int *pos, unsigned int *count, const void **kbuf, const void __user **ubuf) gfpr_set() argument
164 gfpr_set_simd(struct task_struct *target, unsigned int *pos, unsigned int *count, const void **kbuf, const void __user **ubuf) gfpr_set_simd() argument
188 fpr_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) fpr_set() argument
220 cfg_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) cfg_get() argument
239 cfg_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) cfg_set() argument
248 lbt_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) lbt_get() argument
263 lbt_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) lbt_set() argument
282 copy_pad_fprs(struct task_struct *target, const struct user_regset *regset, struct membuf *to, unsigned int live_sz) copy_pad_fprs() argument
302 simd_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) simd_get() argument
332 simd_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) simd_set() argument
519 read_user(struct task_struct *target, unsigned long addr, unsigned long __user *data) read_user() argument
544 write_user(struct task_struct *target, unsigned long addr, unsigned long data) write_user() argument
[all...]
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetUTF8.java50 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, in decodeLoop() argument
56 if (!target.hasRemaining()) { in decodeLoop()
61 if (source.hasArray() && target.hasArray()) { in decodeLoop()
62 /* source and target are backed by arrays, so use the arrays for optimal performance */ in decodeLoop()
66 char[] targetArray = target.array(); in decodeLoop()
67 int targetIndex = target.arrayOffset() + target.position(); in decodeLoop()
68 int targetLimit = target.arrayOffset() + target.limit(); in decodeLoop()
182 target in decodeLoop()
328 encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) encodeLoop() argument
560 encodeFourBytes(CharBuffer source, ByteBuffer target, int char32) encodeFourBytes() argument
[all...]
/kernel/linux/linux-5.10/fs/cifs/
H A Dcifs_unicode.c33 convert_sfu_char(const __u16 src_char, char *target) in convert_sfu_char() argument
42 *target = ':'; in convert_sfu_char()
45 *target = '*'; in convert_sfu_char()
48 *target = '?'; in convert_sfu_char()
51 *target = '|'; in convert_sfu_char()
54 *target = '>'; in convert_sfu_char()
57 *target = '<'; in convert_sfu_char()
67 convert_sfm_char(const __u16 src_char, char *target) in convert_sfm_char() argument
70 *target = src_char - 0xF000; in convert_sfm_char()
75 *target in convert_sfm_char()
120 cifs_mapchar(char *target, const __u16 *from, const struct nls_table *cp, int maptype) cifs_mapchar() argument
455 cifsConvertToUTF16(__le16 *target, const char *source, int srclen, const struct nls_table *cp, int map_chars) cifsConvertToUTF16() argument
[all...]
/kernel/linux/linux-6.6/fs/smb/client/
H A Dcifs_unicode.c31 convert_sfu_char(const __u16 src_char, char *target) in convert_sfu_char() argument
40 *target = ':'; in convert_sfu_char()
43 *target = '*'; in convert_sfu_char()
46 *target = '?'; in convert_sfu_char()
49 *target = '|'; in convert_sfu_char()
52 *target = '>'; in convert_sfu_char()
55 *target = '<'; in convert_sfu_char()
65 convert_sfm_char(const __u16 src_char, char *target) in convert_sfm_char() argument
68 *target = src_char - 0xF000; in convert_sfm_char()
73 *target in convert_sfm_char()
118 cifs_mapchar(char *target, const __u16 *from, const struct nls_table *cp, int maptype) cifs_mapchar() argument
453 cifsConvertToUTF16(__le16 *target, const char *source, int srclen, const struct nls_table *cp, int map_chars) cifsConvertToUTF16() argument
[all...]

Completed in 15 milliseconds

12345678910>>...282