Home
last modified time | relevance | path

Searched refs:src (Results 5801 - 5825 of 7049) sorted by relevance

1...<<231232233234235236237238239240>>...282

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/video/
H A DvktVideoDecodeTests.cpp126 MovePtr<tcu::TextureLevel> convertToRGBASized (const tcu::ConstPixelBufferAccess& src, const tcu::UVec2& size) in convertToRGBASized() argument
134 access.setPixel(src.getPixelUint(x, y), x, y); in convertToRGBASized()
139 MovePtr<tcu::TextureLevel> convertToRGBA (const tcu::ConstPixelBufferAccess& src) in convertToRGBA() argument
141 return convertToRGBASized(src, tcu::UVec2((uint32_t)src.getWidth(), (uint32_t)src.getHeight())); in convertToRGBA()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver.h163 * channel (used internally in src/ap/acs.c; driver wrappers do not
3606 * @src: Source MAC address (Address 2)
3626 * If @src differs from the device MAC address, use of a random
3630 const u8 *dst, const u8 *src, const u8 *bssid,
5640 const u8 *src; member
5946 const u8 *src; member
6286 static inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data, in drv_event_eapol_rx() argument
6291 event.eapol_rx.src = src; in drv_event_eapol_rx()
/third_party/ffmpeg/libavcodec/
H A Dvp9.c152 static int vp9_frame_ref(AVCodecContext *avctx, VP9Frame *dst, VP9Frame *src) in vp9_frame_ref() argument
156 ret = ff_thread_ref_frame(&dst->tf, &src->tf); in vp9_frame_ref()
160 dst->extradata = av_buffer_ref(src->extradata); in vp9_frame_ref()
164 dst->segmentation_map = src->segmentation_map; in vp9_frame_ref()
165 dst->mv = src->mv; in vp9_frame_ref()
166 dst->uses_2pass = src->uses_2pass; in vp9_frame_ref()
168 if (src->hwaccel_picture_private) { in vp9_frame_ref()
169 dst->hwaccel_priv_buf = av_buffer_ref(src->hwaccel_priv_buf); in vp9_frame_ref()
1823 static int vp9_decode_update_thread_context(AVCodecContext *dst, const AVCodecContext *src) in vp9_decode_update_thread_context() argument
1826 VP9Context *s = dst->priv_data, *ssrc = src in vp9_decode_update_thread_context()
[all...]
H A Daac.h379 void (*subband_scale)(int *dst, int *src, int scale, int offset, int len, void *log_context);
/third_party/backends/backend/
H A Dplustek.c1114 * @param src - string, that should be investigated
1118 decodeUsbIDs( char *src, char **dest ) in decodeUsbIDs() argument
1124 if( isspace(src[len])) { in decodeUsbIDs()
1125 strncpy( tmp, &src[len+1], (strlen(src)-(len+1))); in decodeUsbIDs()
1126 tmp[(strlen(src)-(len+1))] = '\0'; in decodeUsbIDs()
1167 * @param src - pointer to the source string to check
1168 * @param opt - string that keeps the option name to check src for
1176 decodeVal( char *src, char *opt, int what, void *result, void *def ) in decodeVal() argument
1182 name = (const char*)&src[strle in decodeVal()
1244 decodeDevName( char *src, char *dest ) decodeDevName() argument
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_shader.c341 def = nir_ieq_imm(&b, intrin->src[0].ssa, 0); in lower_intrinsics()
344 def = nir_ior(&b, intrin->src[0].ssa, intrin->src[1].ssa); in lower_intrinsics()
398 nir_ssa_def *val = nir_ssa_for_src(&b, intr->src[1], 1); in radv_lower_primitive_shading_rate()
438 nir_instr_rewrite_src(&intr->instr, &intr->src[1], nir_src_for_ssa(out)); in radv_lower_primitive_shading_rate()
481 nir_ssa_scalar scalar_idx = nir_ssa_scalar_resolved(intr->src[1].ssa, 3); in radv_force_primitive_shading_rate()
495 nir_ssa_def *pos_w = nir_channel(&b, intr->src[1].ssa, 3); in radv_force_primitive_shading_rate()
656 nir_ssa_def *src = nir_fmul_imm(b, nir_ssa_for_alu_src(b, sincos, 0), 0.15915493667125702); in lower_sincos() local
657 return sincos->op == nir_op_fsin ? nir_fsin_amd(b, src) : nir_fcos_amd(b, src); in lower_sincos()
[all...]
/third_party/node/src/
H A Dnode_file.cc1298 BufferValue src(isolate, args[0]); in Link()
1299 CHECK_NOT_NULL(*src); in Link()
1305 if (req_wrap_async != nullptr) { // link(src, dest, req) in Link()
1308 "src", in Link()
1309 TRACE_STR_COPY(*src), in Link()
1313 AfterNoArgs, uv_fs_link, *src, *dest); in Link()
1314 } else { // link(src, dest) in Link()
1319 uv_fs_link, *src, *dest); in Link()
1975 BufferValue src(isolate, args[0]); in CopyFile()
1976 CHECK_NOT_NULL(*src); in CopyFile()
[all...]
/third_party/libinput/test/
H A Dlitest.c1356 litest_copy_file(const char *dest, const char *src, const char *header, bool is_file) in litest_copy_file() argument
1386 in = open(src, O_RDONLY); in litest_copy_file()
1389 src, in litest_copy_file()
1395 size_t written = write(out, src, strlen(src)); in litest_copy_file()
1396 litest_assert_int_eq(written, strlen(src)); in litest_copy_file()
1494 char src[PATH_MAX]; in litest_install_source_quirks() local
1497 snprintf(src, sizeof(src), "%s/%s", in litest_install_source_quirks()
1500 file = litest_copy_file(dest, src, NUL in litest_install_source_quirks()
[all...]
/third_party/lzma/C/
H A DLzmaEnc.c27 SRes LzmaEnc_MemPrepare(CLzmaEncHandle p, const Byte *src, SizeT srcLen,
128 IF (SRC == 0) CF = 1, DEST is size_in_bits_of_register(src) (32 or 64)
499 #define COPY_ARR(dest, src, arr) memcpy((dest)->arr, (src)->arr, sizeof((src)->arr));
2890 const Byte *src, SizeT srcLen, in LzmaEnc_MemPrepare()
2895 MatchFinder_SET_DIRECT_INPUT_BUF(&MFB, src, srcLen) in LzmaEnc_MemPrepare()
3080 SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, in LzmaEnc_MemEncode() argument
3096 res = LzmaEnc_MemPrepare(p, src, srcLen, 0, alloc, allocBig); in LzmaEnc_MemEncode()
3112 SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, Size argument
2889 LzmaEnc_MemPrepare(CLzmaEncHandle p, const Byte *src, SizeT srcLen, UInt32 keepWindowSize, ISzAllocPtr alloc, ISzAllocPtr allocBig) LzmaEnc_MemPrepare() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktDynamicRenderingTests.cpp3531 std::ostringstream src; in initPrograms() local
3532 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n" in initPrograms()
3546 programCollection.glslSources.add("vert") << glu::VertexSource(src.str()); in initPrograms()
3551 std::ostringstream src; in initPrograms() local
3552 src << glu::getGLSLVersionDeclaration(glu::GLSL_VERSION_440) << "\n" in initPrograms()
3557 src << "layout(location = " << ndx << ") out highp vec4 fsColor" << ndx << ";\n"; in initPrograms()
3559 src << "\n" in initPrograms()
3565 src << " color.z = 0.15f * " << ndx << ".0f;\n" in initPrograms()
3568 src << "}\n"; in initPrograms()
3569 programCollection.glslSources.add("frag") << glu::FragmentSource(src in initPrograms()
[all...]
/third_party/eudev/src/udev/
H A Dudev.h85 const char *src, char *dest, size_t size,
/third_party/ffmpeg/libavfilter/
H A Daf_channelsplit.c159 AVFilterContext *ctx = outlink->src; in filter_frame()
H A Dasrc_anoisesrc.c166 AVFilterContext *ctx = outlink->src; in config_props()
H A Df_interleave.c187 AVFilterContext *ctx = outlink->src; in config_output()
H A Dvf_sr.c77 AVFilterContext *context = outlink->src; in config_output()
H A Dvf_untile.c74 AVFilterContext *ctx = outlink->src; in config_output()
H A Dyadif_common.c161 AVFilterContext *ctx = link->src; in ff_yadif_request_frame()
H A Dvf_hwupload.c109 AVFilterContext *avctx = outlink->src; in hwupload_config_output()
/third_party/ffmpeg/libavcodec/x86/
H A Dbswapdsp.asm102 ; void ff_bswap_buf(uint32_t *dst, const uint32_t *src, int w);
/third_party/ffmpeg/libavutil/
H A Dopt.h803 * Copy options from src object into dest object.
805 * The underlying AVClass of both src and dest must coincide. The guarantee
809 * Original memory allocated for such options is freed unless both src and dest options points to the same memory.
811 * Even on error it is guaranteed that allocated options from src and dest
813 * on both src and dest is safe afterwards if dest has been memdup'ed from src.
816 * @param src Object to copy into
819 int av_opt_copy(void *dest, const void *src);
H A Dhmac.c36 typedef void (*hmac_update)(void *ctx, const uint8_t *src, size_t len);
H A Dvulkan_glslang.c168 .code = shd->src.str, in glslc_shader_compile()
/third_party/ffmpeg/libswscale/x86/
H A Dscale_avx2.asm37 ; int dstW, const uint8_t *src,
H A Dyuv2yuvX.asm37 cglobal yuv2yuvX, 7, 7, 8, filter, filterSize, src, dest, dstW, dither, offset
/third_party/fsverity-utils/scripts/
H A Drun-tests.sh236 OSSL3=$HOME/src/openssl/inst/usr/local

Completed in 43 milliseconds

1...<<231232233234235236237238239240>>...282