Home
last modified time | relevance | path

Searched refs:src (Results 1851 - 1875 of 13265) sorted by relevance

1...<<71727374757677787980>>...531

/kernel/linux/linux-6.6/drivers/crypto/nx/
H A Dnx-842.c167 u8 *src = p->in, *dst = p->out; in compress() local
183 if (adj_slen > slen || (u64)src % c->alignment) { in compress()
188 memcpy(ctx->sbounce, src, slen); in compress()
189 src = ctx->sbounce; in compress()
219 ret = ctx->driver->compress(src, slen, dst, &dlen, ctx->wmem); in compress()
250 const u8 *src, unsigned int slen, in nx842_crypto_compress()
264 p.in = (u8 *)src; in nx842_crypto_compress()
345 u8 *src = p->in, *dst = p->out; in decompress() local
359 src += padding; in decompress()
367 if (slen < adj_slen || (u64)src in decompress()
249 nx842_crypto_compress(struct crypto_tfm *tfm, const u8 *src, unsigned int slen, u8 *dst, unsigned int *dlen) nx842_crypto_compress() argument
432 nx842_crypto_decompress(struct crypto_tfm *tfm, const u8 *src, unsigned int slen, u8 *dst, unsigned int *dlen) nx842_crypto_decompress() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/renesas/rcar-du/
H A Drcar_du_vsp.c71 .src.x1 = 0, in rcar_du_vsp_enable()
72 .src.y1 = 0, in rcar_du_vsp_enable()
73 .src.x2 = mode->hdisplay << 16, in rcar_du_vsp_enable()
74 .src.y2 = mode->vdisplay << 16, in rcar_du_vsp_enable()
235 cfg.src.left = state->state.src.x1 >> 16; in rcar_du_vsp_plane_setup()
236 cfg.src.top = state->state.src.y1 >> 16; in rcar_du_vsp_plane_setup()
237 cfg.src.width = drm_rect_width(&state->state.src) >> 1 in rcar_du_vsp_plane_setup()
270 struct scatterlist *src; rcar_du_vsp_map_fb() local
[all...]
/kernel/linux/linux-6.6/net/core/
H A Dutils.c108 * @src: the start of the IPv4 address string
109 * @srclen: the length of the string, -1 means strlen(src)
111 * @delim: the delimiter of the IPv4 address in @src, -1 means no delimiter
118 int in4_pton(const char *src, int srclen, in in4_pton() argument
130 srclen = strlen(src); in in4_pton()
131 s = src; in in4_pton()
174 * @src: the start of the IPv6 address string
175 * @srclen: the length of the string, -1 means strlen(src)
177 * @delim: the delimiter of the IPv6 address in @src, -1 means no delimiter
184 int in6_pton(const char *src, in argument
301 inet4_pton(const char *src, u16 port_num, struct sockaddr_storage *addr) inet4_pton() argument
320 inet6_pton(struct net *net, const char *src, u16 port_num, struct sockaddr_storage *addr) inet6_pton() argument
369 inet_pton_with_scope(struct net *net, __kernel_sa_family_t af, const char *src, const char *port, struct sockaddr_storage *addr) inet_pton_with_scope() argument
[all...]
/third_party/curl/lib/
H A Dversion.c127 const char *src[VERSION_PARTS]; in curl_version() local
183 src[i++] = LIBCURL_NAME "/" LIBCURL_VERSION; in curl_version()
186 src[i++] = ssl_version; in curl_version()
190 src[i++] = z_version; in curl_version()
194 src[i++] = br_version; in curl_version()
198 src[i++] = zst_version; in curl_version()
203 src[i++] = cares_version; in curl_version()
208 src[i++] = idn_version; in curl_version()
210 src[i++] = (char *)"WinIDN"; in curl_version()
218 src[ in curl_version()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/
H A DTestMultipleParagraphs.java89 String src; in testMultipleParagraphs()
123 src = new String(chars); in testMultipleParagraphs()
125 bidi.setPara(src, Bidi.LTR, null); in testMultipleParagraphs()
147 bidi.setPara(src, paraLevels[k], null); in testMultipleParagraphs()
178 src = new String(chars); in testMultipleParagraphs()
180 bidi.setPara(src, Bidi.LEVEL_DEFAULT_LTR, null); in testMultipleParagraphs()
210 bidi.setPara(src, Bidi.RTL, null); in testMultipleParagraphs()
264 bidi.setPara(src, Bidi.RTL, null); in testMultipleParagraphs()
321 src = text; /* restore original content */ in testMultipleParagraphs()
324 bidi.setPara(src, Bid in testMultipleParagraphs()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestMultipleParagraphs.java86 String src; in testMultipleParagraphs()
120 src = new String(chars); in testMultipleParagraphs()
122 bidi.setPara(src, Bidi.LTR, null); in testMultipleParagraphs()
144 bidi.setPara(src, paraLevels[k], null); in testMultipleParagraphs()
175 src = new String(chars); in testMultipleParagraphs()
177 bidi.setPara(src, Bidi.LEVEL_DEFAULT_LTR, null); in testMultipleParagraphs()
207 bidi.setPara(src, Bidi.RTL, null); in testMultipleParagraphs()
261 bidi.setPara(src, Bidi.RTL, null); in testMultipleParagraphs()
318 src = text; /* restore original content */ in testMultipleParagraphs()
321 bidi.setPara(src, Bid in testMultipleParagraphs()
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_liverangeevaluator.cpp235 record_read(instr->src(i).as_register(), LiveRangeEntry::use_unspecified); in visit()
236 auto uniform = instr->src(i).as_uniform(); in visit()
255 auto src = instr->src(); in visit() local
256 record_read(src, LiveRangeEntry::use_unspecified); in visit()
266 auto src = instr->value(); in visit() local
267 record_read(src, LiveRangeEntry::use_export); in visit()
274 auto& src = instr->src(); in visit() local
275 if (src in visit()
292 auto& src = instr->value(); visit() local
310 auto src = instr->value(); visit() local
317 auto src = instr->value(); visit() local
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_compiler_util.c76 unsigned int combine_swizzles4(unsigned int src, in combine_swizzles4() argument
81 ret |= get_swz(src, swz_x); in combine_swizzles4()
82 ret |= get_swz(src, swz_y) << 3; in combine_swizzles4()
83 ret |= get_swz(src, swz_z) << 6; in combine_swizzles4()
84 ret |= get_swz(src, swz_w) << 9; in combine_swizzles4()
89 unsigned int combine_swizzles(unsigned int src, unsigned int swz) in combine_swizzles() argument
93 ret |= get_swz(src, GET_SWZ(swz, RC_SWIZZLE_X)); in combine_swizzles()
94 ret |= get_swz(src, GET_SWZ(swz, RC_SWIZZLE_Y)) << 3; in combine_swizzles()
95 ret |= get_swz(src, GET_SWZ(swz, RC_SWIZZLE_Z)) << 6; in combine_swizzles()
96 ret |= get_swz(src, GET_SW in combine_swizzles()
216 normal_rewrite_writemask_cb( void * userdata, struct rc_instruction * inst, struct rc_src_register * src) normal_rewrite_writemask_cb() argument
399 can_use_presub_read_cb( void * userdata, struct rc_instruction * inst, struct rc_src_register * src) can_use_presub_read_cb() argument
[all...]
/third_party/skia/src/effects/imagefilters/
H A DSkArithmeticImageFilter.cpp12 #include "src/core/SkImageFilter_Base.h"
13 #include "src/core/SkReadBuffer.h"
14 #include "src/core/SkSpecialImage.h"
15 #include "src/core/SkSpecialSurface.h"
16 #include "src/core/SkWriteBuffer.h"
20 #include "src/core/SkRuntimeEffectPriv.h"
21 #include "src/gpu/GrColorSpaceXform.h"
22 #include "src/gpu/GrRecordingContextPriv.h"
23 #include "src/gpu/GrTextureProxy.h"
24 #include "src/gp
138 arith_span(const SkV4& k, SkPMColor dst[], const SkPMColor src[], int count) arith_span() argument
172 intersect(SkPixmap* dst, SkPixmap* src, int srcDx, int srcDy) intersect() argument
251 onFilterBounds(const SkIRect& src, const SkMatrix& ctm, MapDirection dir, const SkIRect* inputRect) const onFilterBounds() argument
444 SkPixmap src; drawForeground() local
[all...]
/third_party/skia/third_party/externals/libwebp/examples/
H A Dgifdec.c34 extern void WebPCopyPlane(const uint8_t* src, int src_stride,
37 extern void WebPCopyPixels(const WebPPicture* const src,
90 static int Remap(const GifFileType* const gif, const uint8_t* const src, in Remap() argument
101 if (src[i] == transparent_index) { in Remap()
103 } else if (src[i] < cmap->ColorCount) { in Remap()
104 const GifColorType c = colors[src[i]]; in Remap()
256 void GIFCopyPixels(const WebPPicture* const src, WebPPicture* const dst) { in GIFCopyPixels() argument
257 WebPCopyPixels(src, dst); in GIFCopyPixels()
268 const uint32_t* const src = prev_canvas->argb + rect->x_offset in GIFDisposeFrame() local
274 WebPCopyPlane((uint8_t*)src, (in in GIFDisposeFrame()
280 GIFBlendFrames(const WebPPicture* const src, const GIFFrameRect* const rect, WebPPicture* const dst) GIFBlendFrames() argument
385 GIFBlendFrames(const struct WebPPicture* const src, const GIFFrameRect* const rect, struct WebPPicture* const dst) GIFBlendFrames() argument
407 GIFCopyPixels(const struct WebPPicture* const src, struct WebPPicture* const dst) GIFCopyPixels() argument
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_msa.c14 #include "src/dsp/dsp.h"
18 #include "src/dsp/lossless.h"
19 #include "src/dsp/msa_macro.h"
98 #define TRANSFORM_COLOR_INVERSE_4(src, dst, c0, c1, mask0, mask1) do { \
99 const v16i8 g0 = VSHF_SB(src, src, mask0); \
104 t0 = __msa_addv_h(t0, (v8i16)src); \
109 dst = VSHF_UB(src, t0, mask1); \
112 static void ConvertBGRAToRGBA_MSA(const uint32_t* src, in ConvertBGRAToRGBA_MSA() argument
115 const uint8_t* ptemp_src = (const uint8_t*)src; in ConvertBGRAToRGBA_MSA()
153 ConvertBGRAToBGR_MSA(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToBGR_MSA() argument
200 ConvertBGRAToRGB_MSA(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGB_MSA() argument
247 AddGreenToBlueAndRed_MSA(const uint32_t* const src, int num_pixels, uint32_t* dst) AddGreenToBlueAndRed_MSA() argument
289 TransformColorInverse_MSA(const VP8LMultipliers* const m, const uint32_t* src, int num_pixels, uint32_t* dst) TransformColorInverse_MSA() argument
[all...]
/kernel/linux/linux-5.10/arch/arm64/crypto/
H A Daes-glue.c185 aes_ecb_encrypt(walk.dst.virt.addr, walk.src.virt.addr, in ecb_encrypt()
205 aes_ecb_decrypt(walk.dst.virt.addr, walk.src.virt.addr, in ecb_decrypt()
223 aes_cbc_encrypt(walk->dst.virt.addr, walk->src.virt.addr, in cbc_encrypt_walk()
252 aes_cbc_decrypt(walk->dst.virt.addr, walk->src.virt.addr, in cbc_decrypt_walk()
277 struct scatterlist *src = req->src, *dst = req->dst; in cts_cbc_encrypt() local
293 skcipher_request_set_crypt(&subreq, req->src, req->dst, in cts_cbc_encrypt()
305 dst = src = scatterwalk_ffwd(sg_src, req->src, subreq.cryptlen); in cts_cbc_encrypt()
306 if (req->dst != req->src) in cts_cbc_encrypt()
334 struct scatterlist *src = req->src, *dst = req->dst; cts_cbc_decrypt() local
484 ctr_encrypt_one(struct crypto_skcipher *tfm, const u8 *src, u8 *dst) ctr_encrypt_one() argument
515 struct scatterlist *src, *dst; xts_encrypt() local
587 struct scatterlist *src, *dst; xts_decrypt() local
[all...]
/kernel/linux/linux-5.10/arch/mips/net/
H A Dbpf_jit.c118 static inline void emit_jit_reg_move(ptr dst, ptr src, struct jit_ctx *ctx);
187 static inline void emit_ori(unsigned int dst, unsigned src, u32 imm, in emit_ori() argument
192 emit_or(dst, src, r_tmp, ctx); in emit_ori()
194 emit_instr(ctx, ori, dst, src, imm); in emit_ori()
198 static inline void emit_daddiu(unsigned int dst, unsigned int src, in emit_daddiu() argument
205 emit_instr(ctx, daddiu, dst, src, imm); in emit_daddiu()
208 static inline void emit_addiu(unsigned int dst, unsigned int src, in emit_addiu() argument
213 emit_addu(dst, r_tmp, src, ctx); in emit_addiu()
215 emit_instr(ctx, addiu, dst, src, imm); in emit_addiu()
225 static inline void emit_andi(unsigned int dst, unsigned int src, in emit_andi() argument
243 emit_xori(ptr dst, ptr src, u32 imm, struct jit_ctx *ctx) emit_xori() argument
270 emit_sllv(unsigned int dst, unsigned int src, unsigned int sa, struct jit_ctx *ctx) emit_sllv() argument
276 emit_sll(unsigned int dst, unsigned int src, unsigned int sa, struct jit_ctx *ctx) emit_sll() argument
287 emit_srlv(unsigned int dst, unsigned int src, unsigned int sa, struct jit_ctx *ctx) emit_srlv() argument
293 emit_srl(unsigned int dst, unsigned int src, unsigned int sa, struct jit_ctx *ctx) emit_srl() argument
316 emit_sltiu(unsigned dst, unsigned int src, unsigned int imm, struct jit_ctx *ctx) emit_sltiu() argument
380 emit_div(unsigned int dst, unsigned int src, struct jit_ctx *ctx) emit_div() argument
392 emit_mod(unsigned int dst, unsigned int src, struct jit_ctx *ctx) emit_mod() argument
404 emit_dsll(unsigned int dst, unsigned int src, unsigned int sa, struct jit_ctx *ctx) emit_dsll() argument
410 emit_dsrl32(unsigned int dst, unsigned int src, unsigned int sa, struct jit_ctx *ctx) emit_dsrl32() argument
416 emit_wsbh(unsigned int dst, unsigned int src, struct jit_ctx *ctx) emit_wsbh() argument
423 emit_load_ptr(unsigned int dst, unsigned int src, int imm, struct jit_ctx *ctx) emit_load_ptr() argument
447 emit_reg_move(ptr dst, ptr src, struct jit_ctx *ctx) emit_reg_move() argument
453 emit_jit_reg_move(ptr dst, ptr src, struct jit_ctx *ctx) emit_jit_reg_move() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderArithmetic.cpp151 auto src = Operand(this, state, insn.word(3)); in EmitUnaryOp() local
159 dst.move(i, ~src.UInt(i)); in EmitUnaryOp()
167 auto v = src.UInt(i); in EmitUnaryOp()
178 auto v = src.UInt(i); in EmitUnaryOp()
195 SIMD::UInt v = src.UInt(i); in EmitUnaryOp()
205 dst.move(i, CountBits(src.UInt(i))); in EmitUnaryOp()
208 dst.move(i, -src.Int(i)); in EmitUnaryOp()
211 dst.move(i, -src.Float(i)); in EmitUnaryOp()
214 dst.move(i, SIMD::UInt(src.Float(i))); in EmitUnaryOp()
217 dst.move(i, SIMD::Int(src in EmitUnaryOp()
[all...]
/third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/
H A Dmultiple-prologues-in-all-projects.js17 //// [/src/first/first_PART1.ts]
32 //// [/src/first/first_part2.ts]
36 //// [/src/first/first_part3.ts]
41 //// [/src/first/tsconfig.json]
63 //// [/src/second/second_part1.ts]
78 //// [/src/second/second_part2.ts]
87 //// [/src/second/tsconfig.json]
105 //// [/src/third/third_part1.ts]
112 //// [/src/third/tsconfig.json]
138 /lib/tsc --b /src/thir
[all...]
/third_party/icu/icu4c/source/common/
H A Dustrcase.cpp210 const UChar *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, in toLower()
229 lead = src[srcIndex]; in toLower()
249 src + prev, srcIndex - 1 - prev, options, edits); in toLower()
269 if (U16_IS_LEAD(lead) && srcIndex < srcLimit && U16_IS_TRAIL(trail = src[srcIndex])) { in toLower()
285 src + prev, cpStart - prev, options, edits); in toLower()
298 src + prev, srcIndex - prev, options, edits); in toLower()
308 const UChar *src, UCaseContext *csc, int32_t srcLength, in toUpper()
324 lead = src[srcIndex]; in toUpper()
344 src + prev, srcIndex - 1 - prev, options, edits); in toUpper()
365 if (U16_IS_LEAD(lead) && srcIndex < srcLength && U16_IS_TRAIL(trail = src[srcInde in toUpper()
208 toLower(int32_t caseLocale, uint32_t options, UChar *dest, int32_t destCapacity, const UChar *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, icu::Edits *edits, UErrorCode &errorCode) toLower() argument
306 toUpper(int32_t caseLocale, uint32_t options, UChar *dest, int32_t destCapacity, const UChar *src, UCaseContext *csc, int32_t srcLength, icu::Edits *edits, UErrorCode &errorCode) toUpper() argument
416 maybeTitleDutchIJ(const UChar *src, UChar32 c, int32_t start, int32_t segmentLimit, UChar *dest, int32_t &destIndex, int32_t destCapacity, uint32_t options, icu::Edits *edits) maybeTitleDutchIJ() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dustrcase.cpp210 const char16_t *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, in toLower()
229 lead = src[srcIndex]; in toLower()
249 src + prev, srcIndex - 1 - prev, options, edits); in toLower()
269 if (U16_IS_LEAD(lead) && srcIndex < srcLimit && U16_IS_TRAIL(trail = src[srcIndex])) { in toLower()
285 src + prev, cpStart - prev, options, edits); in toLower()
298 src + prev, srcIndex - prev, options, edits); in toLower()
308 const char16_t *src, UCaseContext *csc, int32_t srcLength, in toUpper()
324 lead = src[srcIndex]; in toUpper()
344 src + prev, srcIndex - 1 - prev, options, edits); in toUpper()
365 if (U16_IS_LEAD(lead) && srcIndex < srcLength && U16_IS_TRAIL(trail = src[srcInde in toUpper()
208 toLower(int32_t caseLocale, uint32_t options, char16_t *dest, int32_t destCapacity, const char16_t *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, icu::Edits *edits, UErrorCode &errorCode) toLower() argument
306 toUpper(int32_t caseLocale, uint32_t options, char16_t *dest, int32_t destCapacity, const char16_t *src, UCaseContext *csc, int32_t srcLength, icu::Edits *edits, UErrorCode &errorCode) toUpper() argument
416 maybeTitleDutchIJ(const char16_t *src, UChar32 c, int32_t start, int32_t segmentLimit, char16_t *dest, int32_t &destIndex, int32_t destCapacity, uint32_t options, icu::Edits *edits) maybeTitleDutchIJ() argument
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dcbiditst.c52 static void _testInverseBidi(UBiDi *pBiDi, const UChar *src, int32_t srcLength,
101 static const char* inverseBasic(UBiDi *pBiDi, const char *src, int32_t srcLen,
111 static UBool checkMaps(UBiDi *pBiDi, int32_t stringIndex, const char *src,
446 static void printCaseInfo(UBiDi *bidi, const char *src, const char *dst) in printCaseInfo() argument
447 /* src and dst are char arrays encoded as pseudo Bidi */ in printCaseInfo()
477 log_err("Source: %s", src); fputs("\n", stderr); in printCaseInfo()
748 UChar src[MAXLEN]; in testReorder() local
752 pseudoToU16(srcSize,logicalOrder[i],src); in testReorder()
754 ubidi_setPara(bidi,src,srcSize,UBIDI_DEFAULT_LTR ,NULL,&ec); in testReorder()
783 UChar src[MAXLE in testReorder() local
817 UChar src[MAXLEN]; testReorder() local
848 UChar src[MAXLEN]; testReorder() local
882 UChar src[MAXLEN]; testReorder() local
1423 UChar src[MAXLEN], dest[MAXLEN]; doMisc() local
1710 UChar src[MAXLEN]; testFailureRecovery() local
1853 UChar src[MAXLEN], dest[MAXLEN]; testMultipleParagraphs() local
2277 _testInverseBidi(UBiDi *pBiDi, const UChar *src, int32_t srcLength, UBiDiLevel direction, UErrorCode *pErrorCode) _testInverseBidi() argument
2424 UChar src[3], dest[MAXLEN], expected[5]; _testMisc() local
2925 static const UChar src[] = { 0x0020, 0x0633, 0 }; doTailTest() local
3339 UChar src[3]; _testPresentationForms() local
3635 assertStringsEqual(const char* expected, const char* actual, const char* src, const char* mode, const char* option, UBiDi* pBiDi) assertStringsEqual() argument
4194 UChar src[MAXLEN], dest[MAXLEN], visual1[MAXLEN], visual2[MAXLEN]; testReorderRunsOnly() local
4273 UChar src[MAXLEN], dest[MAXLEN]; testReorderingMode() local
4388 UChar src[MAXLEN], dest2[MAXLEN]; inverseBasic() local
4444 UChar src[MAXLEN]; testStreaming() local
4571 UChar src[MAXLEN], dest[MAXLEN]; testClassOverride() local
4657 checkMaps(UBiDi *pBiDi, int32_t stringIndex, const char *src, const char *dest, const char *mode, const char* option, UBiDiLevel level, UBool forward) checkMaps() argument
4843 UChar prologue[MAXLEN], epilogue[MAXLEN], src[MAXLEN], dest[MAXLEN]; testContext() local
4929 UChar src[100]; testBracketOverflow() local
[all...]
/third_party/vixl/src/aarch64/
H A Dassembler-aarch64.h1191 const MemOperand& src,
1201 const MemOperand& src,
1206 const MemOperand& src,
1216 const MemOperand& src,
1221 const MemOperand& src,
1231 const MemOperand& src,
1236 const MemOperand& src,
1241 const MemOperand& src,
1246 const MemOperand& src,
1251 const MemOperand& src,
[all...]
/kernel/linux/linux-5.10/arch/powerpc/boot/
H A Dstring.h6 extern char *strcpy(char *dest, const char *src);
7 extern char *strncpy(char *dest, const char *src, size_t n);
8 extern char *strcat(char *dest, const char *src);
17 extern void *memmove(void *dest, const void *src, unsigned long n);
18 extern void *memcpy(void *dest, const void *src, unsigned long n);
/kernel/linux/linux-6.6/arch/powerpc/boot/
H A Dstring.h6 extern char *strcpy(char *dest, const char *src);
7 extern char *strncpy(char *dest, const char *src, size_t n);
8 extern char *strcat(char *dest, const char *src);
17 extern void *memmove(void *dest, const void *src, unsigned long n);
18 extern void *memcpy(void *dest, const void *src, unsigned long n);
/kernel/linux/linux-6.6/arch/powerpc/lib/
H A Dchecksum_wrappers.c14 __wsum csum_and_copy_from_user(const void __user *src, void *dst, in csum_and_copy_from_user() argument
19 if (unlikely(!user_read_access_begin(src, len))) in csum_and_copy_from_user()
22 csum = csum_partial_copy_generic((void __force *)src, dst, len); in csum_and_copy_from_user()
28 __wsum csum_and_copy_to_user(const void *src, void __user *dst, int len) in csum_and_copy_to_user() argument
35 csum = csum_partial_copy_generic(src, (void __force *)dst, len); in csum_and_copy_to_user()
/kernel/linux/linux-6.6/arch/x86/crypto/
H A Dtwofish.h10 asmlinkage void twofish_enc_blk(const void *ctx, u8 *dst, const u8 *src);
11 asmlinkage void twofish_dec_blk(const void *ctx, u8 *dst, const u8 *src);
14 asmlinkage void __twofish_enc_blk_3way(const void *ctx, u8 *dst, const u8 *src,
16 asmlinkage void twofish_dec_blk_3way(const void *ctx, u8 *dst, const u8 *src);
19 extern void twofish_dec_blk_cbc_3way(const void *ctx, u8 *dst, const u8 *src);
/kernel/liteos_a/arch/arm/arm/src/
H A Dstrncpy_from_user.c37 INT32 LOS_StrncpyFromUser(CHAR *dst, const CHAR *src, INT32 count) in LOS_StrncpyFromUser() argument
44 if ((!LOS_IsKernelAddress((VADDR_T)(UINTPTR)dst)) || (!LOS_IsUserAddress((VADDR_T)(UINTPTR)src)) || (count <= 0)) { in LOS_StrncpyFromUser()
48 maxCount = (LOS_IsUserAddressRange((VADDR_T)(UINTPTR)src, (size_t)count)) ? \ in LOS_StrncpyFromUser()
49 count : (INT32)(USER_ASPACE_TOP_MAX - (UINTPTR)src); in LOS_StrncpyFromUser()
52 if (LOS_GetUser(&character, src + offset) != LOS_OK) { in LOS_StrncpyFromUser()
H A Dstrnlen_user.c37 INT32 LOS_StrnlenUser(const CHAR *src, INT32 count) in LOS_StrnlenUser() argument
44 if ((!LOS_IsUserAddress((VADDR_T)(UINTPTR)src)) || (count <= 0)) { in LOS_StrnlenUser()
48 maxCount = (LOS_IsUserAddressRange((VADDR_T)(UINTPTR)src, (size_t)count)) ? \ in LOS_StrnlenUser()
49 count : (USER_ASPACE_TOP_MAX - (UINTPTR)src); in LOS_StrnlenUser()
52 if (LOS_GetUser(&character, src + offset) != LOS_OK) { in LOS_StrnlenUser()

Completed in 21 milliseconds

1...<<71727374757677787980>>...531