/kernel/linux/linux-6.6/tools/testing/selftests/net/forwarding/ |
H A D | vxlan_asymmetric.sh | 407 local dst=$1; shift 410 dst $dst vlan 10 412 dst $dst vlan 20
|
H A D | vxlan_asymmetric_ipv6.sh | 402 local dst=$1; shift 405 dst $dst vlan 10 407 dst $dst vlan 20
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | fse_compress.c | 593 static size_t FSE_compress_usingCTable_generic (void* dst, size_t dstSize, in FSE_compress_usingCTable_generic() argument 606 { size_t const initError = BIT_initCStream(&bitC, dst, dstSize); in FSE_compress_usingCTable_generic() 652 size_t FSE_compress_usingCTable (void* dst, size_t dstSize, in FSE_compress_usingCTable() argument 659 return FSE_compress_usingCTable_generic(dst, dstSize, src, srcSize, ct, 1); in FSE_compress_usingCTable() 661 return FSE_compress_usingCTable_generic(dst, dstSize, src, srcSize, ct, 0); in FSE_compress_usingCTable()
|
/kernel/linux/linux-6.6/lib/lz4/ |
H A D | lz4hc_compress.c | 584 char *dst, in LZ4_compress_HC_extStateHC() 601 return LZ4HC_compress_generic(ctx, src, dst, in LZ4_compress_HC_extStateHC() 604 return LZ4HC_compress_generic(ctx, src, dst, in LZ4_compress_HC_extStateHC() 608 int LZ4_compress_HC(const char *src, char *dst, int srcSize, in LZ4_compress_HC() argument 611 return LZ4_compress_HC_extStateHC(wrkmem, src, dst, in LZ4_compress_HC() 581 LZ4_compress_HC_extStateHC( void *state, const char *src, char *dst, int srcSize, int maxDstSize, int compressionLevel) LZ4_compress_HC_extStateHC() argument
|
/third_party/ffmpeg/libavcodec/ |
H A D | jpeglsdec.c | 232 void *last, void *dst, int last2, int w, in ls_decode_line() 246 Ra = x ? R(dst, x - stride) : R(last, x); in ls_decode_line() 267 W(dst, x, Ra); in ls_decode_line() 286 W(dst, x, Ra); in ls_decode_line() 347 W(dst, x, pred); in ls_decode_line() 231 ls_decode_line(JLSState *state, MJpegDecodeContext *s, void *last, void *dst, int last2, int w, int stride, int comp, int bits) ls_decode_line() argument
|
H A D | flashsv.c | 83 uint8_t *dst = dptr + (y * stride) + dy * 3; in decode_hybrid() local 94 *dst++ = (b << 3) | (b >> 2); in decode_hybrid() 95 *dst++ = (g << 3) | (g >> 2); in decode_hybrid() 96 *dst++ = (r << 3) | (r >> 2); in decode_hybrid() 101 bytestream_put_le24(&dst, c); in decode_hybrid()
|
H A D | gif.c | 69 uint32_t *dst, size_t *palette_count) in shrink_palette() 76 if (src[i] == dst[c]) { in shrink_palette() 82 dst[colors_seen] = src[i]; in shrink_palette() 92 uint8_t *dst, int dst_linesize, in remap_frame_to_palette() 97 dst[i * dst_linesize + j] = map[src[i * src_linesize + j]]; in remap_frame_to_palette() 68 shrink_palette(const uint32_t *src, uint8_t *map, uint32_t *dst, size_t *palette_count) shrink_palette() argument 91 remap_frame_to_palette(const uint8_t *src, int src_linesize, uint8_t *dst, int dst_linesize, int w, int h, uint8_t *map) remap_frame_to_palette() argument
|
H A D | prosumer.c | 133 static void vertical_predict(uint32_t *dst, int offset, const uint32_t *src, int stride, int height) in vertical_predict() argument 135 dst += offset >> 2; in vertical_predict() 139 dst[j] = (((src[j] >> 3) + (0x3F3F3F3F & dst[j])) << 3) & 0xFCFCFCFC; in vertical_predict() 142 dst += stride >> 2; in vertical_predict()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_speechnorm.c | 303 ptype *dst = (ptype *)out->extended_data[ch]; \ 318 dst[i] = src[i] * gain; \ 374 ptype *dst = (ptype *)out->extended_data[ch]; \ 382 dst[i] = src[i] * g; \ 506 AVFilterContext *ctx = inlink->dst; in config_input()
|
H A D | src_movie.c | 412 static char *describe_frame_to_str(char *dst, size_t dst_size, in describe_frame_to_str() argument 418 snprintf(dst, dst_size, in describe_frame_to_str() 426 snprintf(dst, dst_size, in describe_frame_to_str() 432 snprintf(dst, dst_size, "%s BUG", av_get_media_type_string(frame_type)); in describe_frame_to_str() 435 return dst; in describe_frame_to_str()
|
H A D | vf_mix.c | 153 type *dst = (type *)(out->data[p] + slice_start * out->linesize[p]); \ 157 av_image_copy_plane((uint8_t *)dst, out->linesize[p], \ 180 dst[x] = clip(fun(val * s->wfactor), 0, s->max); \ 183 dst += dst_linesize; \ 406 AVFilterContext *ctx = inlink->dst; in tmix_filter_frame()
|
/third_party/alsa-lib/src/ |
H A D | conf.c | 993 char *dst = malloc(s->idx + 1); in copy_local_string() local 994 if (dst) { in copy_local_string() 995 memcpy(dst, s->buf, s->idx); in copy_local_string() 996 dst[s->idx] = '\0'; in copy_local_string() 998 return dst; in copy_local_string() 1712 * \param dst Handle to the destination node. 1713 * \param src Handle to the source node. Must not be the same as \a dst. 1730 int snd_config_substitute(snd_config_t *dst, snd_config_t *src) in snd_config_substitute() argument 1732 assert(dst && src); in snd_config_substitute() 1733 if (dst in snd_config_substitute() 2079 snd_config_t *dst; snd_config_load_string() local 2243 _snd_config_array_merge(snd_config_t *dst, snd_config_t *src, int index) _snd_config_array_merge() argument 2290 snd_config_merge(snd_config_t *dst, snd_config_t *src, int override) snd_config_merge() argument 4260 snd_config_hook_load(snd_config_t *root, snd_config_t *config, snd_config_t **dst, snd_config_t *private_data) snd_config_hook_load() argument 4405 snd_config_hook_load_for_all_cards(snd_config_t *root, snd_config_t *config, snd_config_t **dst, snd_config_t *private_data ATTRIBUTE_UNUSED) snd_config_hook_load_for_all_cards() argument 4888 snd_config_walk(snd_config_t *src, snd_config_t *root, snd_config_t **dst, snd_config_walk_callback_t callback, snd_config_expand_fcn_t fcn, void *private_data) snd_config_walk() argument 4931 _snd_config_copy(snd_config_t *src, snd_config_t *root ATTRIBUTE_UNUSED, snd_config_t **dst, snd_config_walk_pass_t pass, snd_config_expand_fcn_t fcn ATTRIBUTE_UNUSED, void *private_data ATTRIBUTE_UNUSED) _snd_config_copy() argument 5014 snd_config_copy(snd_config_t **dst, snd_config_t *src) snd_config_copy() argument 5020 _snd_config_expand_vars(snd_config_t **dst, const char *s, void *private_data) _snd_config_expand_vars() argument 5030 _snd_config_expand(snd_config_t *src, snd_config_t *root ATTRIBUTE_UNUSED, snd_config_t **dst, snd_config_walk_pass_t pass, snd_config_expand_fcn_t fcn, void *private_data) _snd_config_expand() argument [all...] |
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_query.c | 322 write_to_buffer(void *dst, uint32_t idx, bool do_64bit, uint64_t value) in write_to_buffer() argument 325 uint64_t *dst64 = (uint64_t *) dst; in write_to_buffer() 328 uint32_t *dst32 = (uint32_t *) dst; in write_to_buffer() 636 V3DV_FROM_HANDLE(v3dv_buffer, dst, dstBuffer); in v3dv_CmdCopyQueryPoolResults() 640 dst, dstOffset, stride, flags); in v3dv_CmdCopyQueryPoolResults()
|
/third_party/nghttp2/examples/ |
H A D | client.c | 119 char *dst; in strcopy() local 120 dst = malloc(len + 1); in strcopy() 121 memcpy(dst, s, len); in strcopy() 122 dst[len] = '\0'; in strcopy() 123 return dst; in strcopy()
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_image.c | 116 VkBaseOutStructure *dst = NULL; in vn_image_deferred_info_init() local 124 dst = (void *)&info->create; in vn_image_deferred_info_init() 171 dst->pNext = pnext; in vn_image_deferred_info_init() 172 dst = pnext; in vn_image_deferred_info_init() 175 dst->pNext = NULL; in vn_image_deferred_info_init()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-fast-api-calls.h | 929 Local<Array> src, T* dst, uint32_t max_length); 934 int32_t>(Local<Array> src, int32_t* dst, 940 uint32_t>(Local<Array> src, uint32_t* dst, 946 float>(Local<Array> src, float* dst, 952 double>(Local<Array> src, double* dst,
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pipe_aapoint.c | 343 struct tgsi_full_dst_register *dst = &inst->Dst[i]; in aa_transform_inst() local 344 if (dst->Register.File == TGSI_FILE_OUTPUT && in aa_transform_inst() 345 dst->Register.Index == aactx->colorOutput) { in aa_transform_inst() 346 dst->Register.File = TGSI_FILE_TEMPORARY; in aa_transform_inst() 347 dst->Register.Index = aactx->colorTemp; in aa_transform_inst()
|
H A D | draw_pipe_aaline.c | 258 struct tgsi_full_dst_register *dst = &inst->Dst[i]; in aa_transform_inst() local 259 if (dst->Register.File == TGSI_FILE_OUTPUT && in aa_transform_inst() 260 dst->Register.Index == aactx->colorOutput) { in aa_transform_inst() 261 dst->Register.File = TGSI_FILE_TEMPORARY; in aa_transform_inst() 262 dst->Register.Index = aactx->colorTemp; in aa_transform_inst()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/ |
H A D | vktPipelineIdentifierTests.cpp | 75 void createGraphicsShaders (SourceCollections& dst, TestParams testParams) in createGraphicsShaders() argument 90 dst.glslSources.add(name.str()) << glu::VertexSource(code.str()); in createGraphicsShaders() 105 dst.glslSources.add(name.str()) << glu::FragmentSource(code.str()); in createGraphicsShaders() 109 void createComputeShaders (SourceCollections& dst, TestParams testParams) in createComputeShaders() argument 125 dst.glslSources.add(name.str()) << glu::ComputeSource(code.str()); in createComputeShaders()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ |
H A D | vktBuildPrograms.cpp | 220 void writeBuildLogs (const glu::ShaderProgramInfo& buildInfo, std::ostream& dst) in writeBuildLogs() argument 227 dst << shaderName << " source:\n" in writeBuildLogs() 237 dst << "link log:\n" in writeBuildLogs() 290 void writeBuildLogs (const vk::SpirVProgramInfo& buildInfo, std::ostream& dst) in writeBuildLogs() argument 292 dst << "source:\n" in writeBuildLogs() 596 parser << Option<opt::DstPath>("d", "dst-path", "Destination path", "out") in registerOptions()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/ |
H A D | vktYCbCrFormatTests.cpp | 301 void generateLookupCoordinates (const UVec2& imageSize, vector<Vec2>* dst) in generateLookupCoordinates() argument 303 dst->resize(imageSize.x() * imageSize.y()); in generateLookupCoordinates() 311 (*dst)[texelY*imageSize.x() + texelX] = Vec2(x, y); in generateLookupCoordinates() 568 void initPrograms (SourceCollections& dst, TestParameters params) in initPrograms() argument 572 generateSources(params.shaderType, spec, dst); in initPrograms()
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
H A D | ETC_Decoder.cpp | 670 bool ETC_Decoder::Decode(const unsigned char *src, unsigned char *dst, int w, int h, int dstPitch, int dstBpp, InputType inputType) in Decode() argument 683 unsigned char *dstRow = dst + (y * dstPitch); in Decode() 695 unsigned char *dstRow = dst + (y * dstPitch); in Decode() 706 unsigned char *dstRow = dst + (y * dstPitch); in Decode() 716 unsigned char *dstRow = dst + (y * dstPitch); in Decode()
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | ETC_Decoder.cpp | 677 bool ETC_Decoder::Decode(const unsigned char* src, unsigned char *dst, int w, int h, int dstW, int dstH, int dstPitch, int dstBpp, InputType inputType) in Decode() argument 690 unsigned char *dstRow = dst + (y * dstPitch); in Decode() 702 unsigned char *dstRow = dst + (y * dstPitch); in Decode() 713 unsigned char *dstRow = dst + (y * dstPitch); in Decode() 723 unsigned char *dstRow = dst + (y * dstPitch); in Decode()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | enc_mips32.c | 59 // A - offset in bytes to load from ref and store to dst buffer 118 uint8_t* dst) { in ITransformOne_MIPS32() 122 const int* args[3] = {(const int*)ref, (const int*)in, (const int*)dst}; in ITransformOne_MIPS32() 149 uint8_t* dst, int do_two) { in ITransform_MIPS32() 150 ITransformOne_MIPS32(ref, in, dst); in ITransform_MIPS32() 152 ITransformOne_MIPS32(ref + 4, in + 16, dst + 4); in ITransform_MIPS32() 116 ITransformOne_MIPS32(const uint8_t* ref, const int16_t* in, uint8_t* dst) ITransformOne_MIPS32() argument 148 ITransform_MIPS32(const uint8_t* ref, const int16_t* in, uint8_t* dst, int do_two) ITransform_MIPS32() argument
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | DeviceD3D12.cpp | 497 TextureCopy* dst, in CopyFromStagingToTexture() 501 Texture* texture = ToBackend(dst->texture.Get()); in CopyFromStagingToTexture() 504 SubresourceRange range = GetSubresourcesAffectedByCopy(*dst, copySizePixels); in CopyFromStagingToTexture() 506 if (IsCompleteSubresourceCopiedTo(texture, copySizePixels, dst->mipLevel)) { in CopyFromStagingToTexture() 514 RecordCopyBufferToTexture(commandContext, *dst, ToBackend(source)->GetResource(), in CopyFromStagingToTexture() 495 CopyFromStagingToTexture(const StagingBufferBase* source, const TextureDataLayout& src, TextureCopy* dst, const Extent3D& copySizePixels) CopyFromStagingToTexture() argument
|