/kernel/linux/linux-6.6/net/sctp/ |
H A D | protocol.c | 413 /* Returns a valid dst cache entry for the given source and destination ip 414 * addresses. If an association is passed, trys to get a dst entry with a 426 struct dst_entry *dst = NULL; in sctp_v4_get_dst() local 449 pr_debug("%s: dst:%pI4, src:%pI4 - ", __func__, &fl4->daddr, in sctp_v4_get_dst() 454 dst = &rt->dst; in sctp_v4_get_dst() 455 t->dst = dst; in sctp_v4_get_dst() 467 if (dst) { in sctp_v4_get_dst() 469 * address that matches the source address of the returned dst in sctp_v4_get_dst() 1056 struct dst_entry *dst = dst_clone(t->dst); sctp_v4_xmit() local [all...] |
/third_party/ffmpeg/libpostproc/ |
H A D | postprocess_altivec_template.c | 1016 static inline void transpose_16x8_char_toPackedAlign_altivec(unsigned char* dst, unsigned char* src, int stride) { in transpose_16x8_char_toPackedAlign_altivec() argument 1103 vec_st(temp0, 0, dst); in transpose_16x8_char_toPackedAlign_altivec() 1104 vec_st(temp1, 16, dst); in transpose_16x8_char_toPackedAlign_altivec() 1105 vec_st(temp2, 32, dst); in transpose_16x8_char_toPackedAlign_altivec() 1106 vec_st(temp3, 48, dst); in transpose_16x8_char_toPackedAlign_altivec() 1107 vec_st(temp4, 64, dst); in transpose_16x8_char_toPackedAlign_altivec() 1108 vec_st(temp5, 80, dst); in transpose_16x8_char_toPackedAlign_altivec() 1109 vec_st(temp6, 96, dst); in transpose_16x8_char_toPackedAlign_altivec() 1110 vec_st(temp7, 112, dst); in transpose_16x8_char_toPackedAlign_altivec() 1111 vec_st(temp8, 128, dst); in transpose_16x8_char_toPackedAlign_altivec() 1121 transpose_8x16_char_fromPackedAlign_altivec(unsigned char* dst, unsigned char* src, int stride) transpose_8x16_char_fromPackedAlign_altivec() argument [all...] |
/third_party/lame/libmp3lame/ |
H A D | id3tag.c | 411 local_strdup(char **dst, const char *src) in local_strdup() argument 413 if (dst == 0) { in local_strdup() 416 free(*dst); in local_strdup() 417 *dst = 0; in local_strdup() 423 assert(sizeof(*src) == sizeof(**dst)); in local_strdup() 424 *dst = lame_calloc(char, n + 1); in local_strdup() 425 if (*dst != 0) { in local_strdup() 426 memcpy(*dst, src, n * sizeof(**dst)); in local_strdup() 427 (*dst)[ in local_strdup() 436 local_ucs2_strdup(unsigned short **dst, unsigned short const *src) local_ucs2_strdup() argument 476 local_ucs2_substr(unsigned short** dst, unsigned short const* src, size_t start, size_t end) local_ucs2_substr() argument 797 setLang(char *dst, char const *src) setLang() argument [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | CommandBufferVk.cpp | 559 auto& dst = copy->destination; in RecordCommands() local 564 ComputeBufferImageCopyRegion(src, dst, copy->copySize); in RecordCommands() 567 ASSERT(dst.texture->GetDimension() != wgpu::TextureDimension::e1D); in RecordCommands() 571 if (IsCompleteSubresourceCopiedTo(dst.texture.Get(), copy->copySize, in RecordCommands() 574 dst.texture->SetIsSubresourceContentInitialized(true, range); in RecordCommands() 576 ToBackend(dst.texture) in RecordCommands() 581 ToBackend(dst.texture) in RecordCommands() 584 VkImage dstImage = ToBackend(dst.texture)->GetHandle(); in RecordCommands() 602 auto& dst = copy->destination; in RecordCommands() local 604 ToBackend(dst in RecordCommands() 639 TextureCopy& dst = copy->destination; RecordCommands() local [all...] |
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fTextureMipmapTests.cpp | 187 static void getBasicTexCoord2D (std::vector<float>& dst, int cellNdx) in getBasicTexCoord2D() argument 221 computeQuadTexCoord2D(dst, bottomLeft, topRight); in getBasicTexCoord2D() 224 static void getAffineTexCoord2D (std::vector<float>& dst, int cellNdx) in getAffineTexCoord2D() argument 227 getBasicTexCoord2D(dst, cellNdx); in getAffineTexCoord2D() 238 Vec2 p0 = transform * Vec2(dst[0], dst[1]); in getAffineTexCoord2D() 239 Vec2 p1 = transform * Vec2(dst[2], dst[3]); in getAffineTexCoord2D() 240 Vec2 p2 = transform * Vec2(dst[4], dst[ in getAffineTexCoord2D() 551 randomPartition(vector<IVec4>& dst, de::Random& rnd, int x, int y, int width, int height) randomPartition() argument 576 computeGridLayout(vector<IVec4>& dst, int width, int height) computeGridLayout() argument [all...] |
/third_party/lz4/lib/ |
H A D | lz4.c | 347 # define LZ4_memcpy(dst, src, size) __builtin_memcpy(dst, src, size) 349 # define LZ4_memcpy(dst, src, size) memcpy(dst, src, size) 1087 return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */ in LZ4_compress_generic_validated() 1181 return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */ in LZ4_compress_generic_validated() 1272 /* adapt lastRun to fill 'dst' */ in LZ4_compress_generic_validated() 1278 return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */ in LZ4_compress_generic_validated() 1311 char* const dst, in LZ4_compress_generic() 1329 assert(dst ! in LZ4_compress_generic() 1308 LZ4_compress_generic( LZ4_stream_t_internal* const cctx, const char* const src, char* const dst, const int srcSize, int *inputConsumed, const int dstCapacity, const limitedOutput_directive outputDirective, const tableType_t tableType, const dict_directive dictDirective, const dictIssue_directive dictIssue, const int acceleration) LZ4_compress_generic() argument 1378 LZ4_compress_fast_extState_fastReset(void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration) LZ4_compress_fast_extState_fastReset() argument 1435 LZ4_compress_default(const char* src, char* dst, int srcSize, int maxOutputSize) LZ4_compress_default() argument 1444 LZ4_compress_destSize_extState(LZ4_stream_t* state, const char* src, char* dst, int* srcSizePtr, int targetDstSize) LZ4_compress_destSize_extState() argument 1461 LZ4_compress_destSize(const char* src, char* dst, int* srcSizePtr, int targetDstSize) LZ4_compress_destSize() argument 1937 LZ4_decompress_generic( const char* const src, char* const dst, int srcSize, int outputSize, earlyEnd_directive partialDecoding, dict_directive dict, const BYTE* const lowPrefix, const BYTE* const dictStart, const size_t dictSize ) LZ4_decompress_generic() argument 2353 LZ4_decompress_safe_partial(const char* src, char* dst, int compressedSize, int targetOutputSize, int dstCapacity) LZ4_decompress_safe_partial() argument 2665 LZ4_compress_limitedOutput_withState(void* state, const char* src, char* dst, int srcSize, int dstSize) LZ4_compress_limitedOutput_withState() argument 2669 LZ4_compress_withState(void* state, const char* src, char* dst, int srcSize) LZ4_compress_withState() argument 2673 LZ4_compress_limitedOutput_continue(LZ4_stream_t* LZ4_stream, const char* src, char* dst, int srcSize, int dstCapacity) LZ4_compress_limitedOutput_continue() argument [all...] |
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_clear_blit.c | 69 const VkOffset2D *dst, in r2d_coords() 74 A6XX_GRAS_2D_DST_TL(.x = dst->x, .y = dst->y), in r2d_coords() 75 A6XX_GRAS_2D_DST_BR(.x = dst->x + extent->width - 1, .y = dst->y + extent->height - 1)); in r2d_coords() 838 const VkOffset2D *dst, in r3d_coords() 845 dst->x, dst->y, in r3d_coords() 847 dst->x + extent->width, dst in r3d_coords() 68 r2d_coords(struct tu_cs *cs, const VkOffset2D *dst, const VkOffset2D *src, const VkExtent2D *extent) r2d_coords() argument 837 r3d_coords(struct tu_cs *cs, const VkOffset2D *dst, const VkOffset2D *src, const VkExtent2D *extent) r3d_coords() argument 1282 void (*dst)(struct tu_cs *cs, const struct fdl6_view *iview, uint32_t layer, global() member 1332 coords(const struct blit_ops *ops, struct tu_cs *cs, const VkOffset3D *dst, const VkOffset3D *src, const VkExtent3D *extent) coords() argument 1603 struct fdl6_view dst, src; tu6_blit_image() local 1731 struct fdl6_view dst; tu_copy_buffer_to_image() local 1961 struct fdl6_view dst, src; tu_copy_image_to_image() local 2227 struct fdl6_view dst, src; tu_CmdResolveImage2KHR() local 2248 resolve_sysmem(struct tu_cmd_buffer *cmd, struct tu_cs *cs, VkFormat vk_src_format, VkFormat vk_dst_format, const struct tu_image_view *src, const struct tu_image_view *dst, uint32_t layer_mask, uint32_t layers, const VkRect2D *rect, bool src_separate_ds, bool dst_separate_ds) resolve_sysmem() argument 2302 tu_resolve_sysmem(struct tu_cmd_buffer *cmd, struct tu_cs *cs, const struct tu_image_view *src, const struct tu_image_view *dst, uint32_t layer_mask, uint32_t layers, const VkRect2D *rect) tu_resolve_sysmem() argument 2373 struct fdl6_view dst; clear_image() local 3315 struct tu_render_pass_attachment *dst = &cmd->state.pass->attachments[a]; tu_store_gmem_attachment() local [all...] |
/base/global/i18n_lite/frameworks/i18n/include/ |
H A D | str_util.h | 37 void Split(const std::string &src, std::string *dst, const int32_t size, const char &sep);
39 bool CompareLocaleItem(const char *src, const char *dst);
|
/base/security/crypto_framework/common/inc/ |
H A D | hcf_string.h | 85 * @param dst: the string pointer which saved the sub string content. 88 bool StringSubString(const HcString *self, uint32_t begin, uint32_t len, HcString* dst); 93 * @param dst: the pointer of another string. 95 * -1: self is smaller than dst 96 * 0: self is equal with dst 97 * 1: self is bigger than dst 99 int StringCompare(const HcString *self, const char* dst);
|
/device/soc/rockchip/common/hardware/display/src/display_device/ |
H A D | hdi_gfx_composition.h | 36 int32_t BlitLayer(HdiLayer &src, HdiLayer &dst); 37 int32_t ClearRect(HdiLayer &src, HdiLayer &dst);
|
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_osk_memory.c | 46 void inline *mali_osk_memcpy(void *dst, const void *src, u32 len) in mali_osk_memcpy() argument 48 return memcpy(dst, src, len); in mali_osk_memcpy()
|
/device/soc/rockchip/rk3399/hardware/display/src/display_device/ |
H A D | hdi_gfx_composition.h | 36 int32_t BlitLayer(HdiLayer &src, HdiLayer &dst); 37 int32_t ClearRect(HdiLayer &src, HdiLayer &dst);
|
/device/soc/rockchip/rk3566/hardware/display/src/display_device/ |
H A D | hdi_gfx_composition.h | 36 int32_t BlitLayer(HdiLayer &src, HdiLayer &dst); 37 int32_t ClearRect(HdiLayer &src, HdiLayer &dst);
|
/device/soc/rockchip/rk3588/hardware/display/src/display_device/ |
H A D | hdi_gfx_composition.h | 36 int32_t BlitLayer(HdiLayer &src, HdiLayer &dst);
37 int32_t ClearRect(HdiLayer &src, HdiLayer &dst);
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_osk_memory.c | 45 void inline *_mali_osk_memcpy(void *dst, const void *src, u32 len) in _mali_osk_memcpy() argument 47 return memcpy(dst, src, len); in _mali_osk_memcpy()
|
/device/soc/rockchip/rk3588/kernel/include/trace/hooks/ |
H A D | signal.h | 13 TP_PROTO(int sig, struct task_struct *killer, struct task_struct *dst), 14 TP_ARGS(sig, killer, dst));
|
/foundation/arkui/ace_engine/frameworks/base/base64/ |
H A D | base64_util.cpp | 23 bool Base64Util::Decode(const std::string& src, std::string& dst) in Decode() argument 37 dst.assign(static_cast<const char*>(resData->data()), resData->size()); in Decode()
|
/foundation/multimedia/audio_framework/services/audio_service/common/include/ |
H A D | audio_common_converter.h | 26 static void ConvertBufferTo32Bit(const uint8_t *buffer, int32_t format, int32_t *dst, size_t count, float volume); 27 static void ConvertBufferTo16Bit(const uint8_t *buffer, int32_t format, int16_t *dst, size_t count, float volume);
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/include/coap_discover/ |
H A D | coap_client.h | 32 const coap_address_t *dst; member 39 int32_t CoapResolveAddress(const coap_str_const_t *server, struct sockaddr *dst);
|
/kernel/linux/linux-5.10/arch/arc/mm/ |
H A D | extable.c | 35 long arc_strncpy_from_user_noinline(char *dst, const char __user *src, in arc_strncpy_from_user_noinline() argument 38 return __arc_strncpy_from_user(dst, src, count); in arc_strncpy_from_user_noinline()
|
/kernel/linux/linux-5.10/arch/hexagon/mm/ |
H A D | copy_to_user.S | 28 #define dst r0 define 46 /* Normal copy loops. Use dst-dst_sav to compute distance */ 47 /* dst holds best write, no need to unwind any loops */ 59 r2 += sub(dst_sav,dst)
|
/kernel/linux/linux-6.6/arch/hexagon/mm/ |
H A D | copy_to_user.S | 28 #define dst r0 define 46 /* Normal copy loops. Use dst-dst_sav to compute distance */ 47 /* dst holds best write, no need to unwind any loops */ 59 r2 += sub(dst_sav,dst)
|
/kernel/linux/linux-5.10/tools/testing/selftests/net/ |
H A D | test_vxlan_fdb_changelink.sh | 21 bridge fdb ap dev vx 00:00:00:00:00:00 dst 192.0.2.20 self permanent 22 bridge fdb ap dev vx 00:00:00:00:00:00 dst 192.0.2.30 self permanent
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gem/ |
H A D | i915_gem_object_blt.h | 26 struct i915_vma *dst); 36 struct drm_i915_gem_object *dst,
|
/kernel/linux/linux-5.10/drivers/media/platform/coda/ |
H A D | imx-vdoa.h | 20 void vdoa_device_run(struct vdoa_ctx *ctx, dma_addr_t dst, dma_addr_t src); 41 dma_addr_t dst, dma_addr_t src) { }; in vdoa_device_run() 40 vdoa_device_run(struct vdoa_ctx *ctx, dma_addr_t dst, dma_addr_t src) vdoa_device_run() argument
|