/third_party/vk-gl-cts/scripts/opengl/ |
H A D | gen_versions.py | 32 src = indentLines(map(apiVersionDefinition, iface.versions)) 33 writeInlFile(os.path.join(OPENGL_INC_DIR, "glwVersions.inl"), src)
|
/third_party/libsnd/src/ |
H A D | common.h | 160 ** When support is finalised, these values move to src/sndfile.h. 295 void *psf_memdup (const void *src, size_t n) ; 317 ** These fields can only be used in src/file_io.c. 322 /* These fields can only be used in src/file_io.c. */ 766 void psf_strlcpy_crlf (char *dest, const char *src, size_t destmax, size_t srcmax) ; 953 void psf_strlcat (char *dest, size_t n, const char *src) ; 954 void psf_strlcpy (char *dest, size_t n, const char *src) ; 1055 void psf_f2s_array (const float *src, short *dest, int count, int normalize) ; 1056 void psf_f2s_clip_array (const float *src, short *dest, int count, int normalize) ; 1058 void psf_d2s_array (const double *src, shor [all...] |
H A D | double64.c | 488 d2s_array (const double *src, int count, short *dest, double scale) in d2s_array() argument 490 { dest [i] = psf_lrint (scale * src [i]) ; in d2s_array() 495 d2s_clip_array (const double *src, int count, short *dest, double scale) in d2s_clip_array() argument 497 { double tmp = scale * src [i] ; in d2s_clip_array() 509 d2i_array (const double *src, int count, int *dest, double scale) in d2i_array() argument 511 { dest [i] = psf_lrint (scale * src [i]) ; in d2i_array() 516 d2i_clip_array (const double *src, int count, int *dest, double scale) in d2i_clip_array() argument 518 { float tmp = scale * src [i] ; in d2i_clip_array() 530 d2f_array (const double *src, int count, float *dest) in d2f_array() argument 532 { dest [i] = src [ in d2f_array() 537 s2d_array(const short *src, double *dest, int count, double scale) s2d_array() argument 544 i2d_array(const int *src, double *dest, int count, double scale) i2d_array() argument 551 f2d_array(const float *src, double *dest, int count) f2d_array() argument [all...] |
H A D | float32.c | 438 f2s_array (const float *src, int count, short *dest, float scale) in f2s_array() argument 441 { dest [i] = psf_lrintf (scale * src [i]) ; in f2s_array() 446 f2s_clip_array (const float *src, int count, short *dest, float scale) in f2s_clip_array() argument 448 { float tmp = scale * src [i] ; in f2s_clip_array() 460 f2i_array (const float *src, int count, int *dest, float scale) in f2i_array() argument 462 { dest [i] = psf_lrintf (scale * src [i]) ; in f2i_array() 467 f2i_clip_array (const float *src, int count, int *dest, float scale) in f2i_clip_array() argument 469 { float tmp = scale * src [i] ; in f2i_clip_array() 481 f2d_array (const float *src, int count, double *dest) in f2d_array() argument 483 { dest [i] = src [ in f2d_array() 488 s2f_array(const short *src, float *dest, int count, float scale) s2f_array() argument 495 i2f_array(const int *src, float *dest, int count, float scale) i2f_array() argument 502 d2f_array(const double *src, float *dest, int count) d2f_array() argument [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_loop_unroll.c | 624 nir_src src = term->induction_rhs ? alu->src[1].src : alu->src[0].src; in is_access_out_of_bounds() local 625 if (!nir_srcs_equal(d->arr.index, src)) in is_access_out_of_bounds() 685 if (is_access_out_of_bounds(term, nir_src_as_deref(intrin->src[0]), in remove_out_of_bounds_induction_use() 700 is_access_out_of_bounds(term, nir_src_as_deref(intrin->src[1]), in remove_out_of_bounds_induction_use() 796 !nir_src_is_const(intrin->src[1])) { in is_indirect_load() 805 nir_deref_instr *deref = nir_src_as_deref(intrin->src[ in is_indirect_load() [all...] |
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_llvm_build.h | 439 LLVMValueRef ac_build_fsign(struct ac_llvm_context *ctx, LLVMValueRef src); 442 LLVMValueRef ac_build_fsat(struct ac_llvm_context *ctx, LLVMValueRef src, 480 LLVMValueRef ac_build_ds_swizzle(struct ac_llvm_context *ctx, LLVMValueRef src, unsigned mask); 482 LLVMValueRef ac_build_readlane_no_opt_barrier(struct ac_llvm_context *ctx, LLVMValueRef src, 485 LLVMValueRef ac_build_readlane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef lane); 487 LLVMValueRef ac_build_writelane(struct ac_llvm_context *ctx, LLVMValueRef src, LLVMValueRef value, 493 LLVMValueRef ac_build_inclusive_scan(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op); 495 LLVMValueRef ac_build_exclusive_scan(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op); 497 LLVMValueRef ac_build_reduce(struct ac_llvm_context *ctx, LLVMValueRef src, nir_op op, 510 LLVMValueRef src; /* clobbere member [all...] |
/third_party/lz4/programs/ |
H A D | bench.c | 168 const char* src, char* dst, int srcSize, int dstSize); 224 const char* src, char* dst, in LZ4_compressBlockNoStream() 228 return LZ4_compress_fast(src, dst, srcSize, dstSize, acceleration); in LZ4_compressBlockNoStream() 233 const char* src, char* dst, in LZ4_compressBlockNoStreamHC() 236 return LZ4_compress_HC(src, dst, srcSize, dstSize, pThis->cLevel); in LZ4_compressBlockNoStreamHC() 241 const char* src, char* dst, in LZ4_compressBlockStream() 245 return LZ4_compress_fast_continue(pThis->LZ4_stream, src, dst, srcSize, dstSize, acceleration); in LZ4_compressBlockStream() 250 const char* src, char* dst, in LZ4_compressBlockStreamHC() 253 return LZ4_compress_HC_continue(pThis->LZ4_streamHC, src, dst, srcSize, dstSize); in LZ4_compressBlockStreamHC() 311 typedef int (*DecFunction_f)(const char* src, cha 223 LZ4_compressBlockNoStream(const struct compressionParameters* pThis, const char* src, char* dst, int srcSize, int dstSize) LZ4_compressBlockNoStream() argument 232 LZ4_compressBlockNoStreamHC(const struct compressionParameters* pThis, const char* src, char* dst, int srcSize, int dstSize) LZ4_compressBlockNoStreamHC() argument 240 LZ4_compressBlockStream(const struct compressionParameters* pThis, const char* src, char* dst, int srcSize, int dstSize) LZ4_compressBlockStream() argument 249 LZ4_compressBlockStreamHC(const struct compressionParameters* pThis, const char* src, char* dst, int srcSize, int dstSize) LZ4_compressBlockStreamHC() argument 318 LZ4F_decompress_binding(const char* src, char* dst, int srcSize, int dstCapacity, const char* dictStart, int dictSize) LZ4F_decompress_binding() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_state.c | 105 uint32_t src = (lis6 >> S6_CBUF_SRC_BLEND_FACT_SHIFT) & BLENDFACT_MASK; in i915_remap_lis6_blend_dst_alpha() local 107 if (src == BLENDFACT_DST_ALPHA) in i915_remap_lis6_blend_dst_alpha() 108 src = normal; in i915_remap_lis6_blend_dst_alpha() 109 else if (src == BLENDFACT_INV_DST_ALPHA) in i915_remap_lis6_blend_dst_alpha() 110 src = inv; in i915_remap_lis6_blend_dst_alpha() 111 lis6 |= SRC_BLND_FACT(src); in i915_remap_lis6_blend_dst_alpha() 127 uint32_t src = (iab >> IAB_SRC_FACTOR_SHIFT) & BLENDFACT_MASK; in i915_remap_iab_blend_dst_alpha() local 129 if (src == BLENDFACT_DST_ALPHA) in i915_remap_iab_blend_dst_alpha() 130 src = normal; in i915_remap_iab_blend_dst_alpha() 131 else if (src in i915_remap_iab_blend_dst_alpha() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Image11.cpp | 48 Image11 *src, in GenerateMipmap() 51 ASSERT(src->getDXGIFormat() == dest->getDXGIFormat()); in GenerateMipmap() 52 ASSERT(src->getWidth() == 1 || src->getWidth() / 2 == dest->getWidth()); in GenerateMipmap() 53 ASSERT(src->getHeight() == 1 || src->getHeight() / 2 == dest->getHeight()); in GenerateMipmap() 60 ANGLE_TRY(src->map(context, D3D11_MAP_READ, &srcMapped)); in GenerateMipmap() 61 d3d11::ScopedUnmapper<Image11> srcRAII(src); in GenerateMipmap() 67 d3d11::Format::Get(src->getInternalFormat(), rendererCaps).format().mipGenerationFunction; in GenerateMipmap() 68 mipGenerationFunction(src in GenerateMipmap() 46 GenerateMipmap(const gl::Context *context, Image11 *dest, Image11 *src, const Renderer11DeviceCaps &rendererCaps) GenerateMipmap() argument [all...] |
/third_party/skia/src/core/ |
H A D | SkPathBuilder.cpp | 12 #include "src/core/SkGeometry.h" 13 #include "src/core/SkPathPriv.h" 15 #include "src/pathops/SkPathOpsPoint.h" 26 SkPathBuilder::SkPathBuilder(const SkPath& src) { in SkPathBuilder() argument 27 *this = src; in SkPathBuilder() 53 SkPathBuilder& SkPathBuilder::operator=(const SkPath& src) { in operator =() argument 54 this->reset().setFillType(src.getFillType()); in operator =() 56 for (auto [verb, pts, w] : SkPathPriv::Iterate(src)) { in operator =() 796 SkPathBuilder& SkPathBuilder::addPath(const SkPath& src) { in addPath() argument 797 SkPath::RawIter iter(src); in addPath() 816 privateReverseAddPath(const SkPath& src) privateReverseAddPath() argument [all...] |
H A D | SkStream.cpp | 17 #include "src/core/SkOSFile.h" 18 #include "src/core/SkSafeMath.h" 19 #include "src/core/SkStreamPriv.h" 269 static sk_sp<SkData> newFromParams(const void* src, size_t size, bool copyData) { in newFromParams() argument 271 return SkData::MakeWithCopy(src, size); in newFromParams() 273 return SkData::MakeWithoutCopy(src, size); in newFromParams() 287 SkMemoryStream::SkMemoryStream(const void* src, size_t size, bool copyData) { in SkMemoryStream() argument 288 fData = newFromParams(src, size, copyData); in SkMemoryStream() 311 void SkMemoryStream::setMemoryOwned(const void* src, size_t size) { in setMemoryOwned() argument 312 fData = SkData::MakeFromMalloc(src, siz in setMemoryOwned() 316 setMemory(const void* src, size_t size, bool copyData) setMemory() argument 456 sk_memcpy_4bytes(void* dst, const void* src, size_t size) sk_memcpy_4bytes() argument [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
H A D | ViewableTaggedData.java | 634 private int src; field in ViewableTaggedData.WidthUsageRecord 637 private static WidthUsageRecord copyWithWidthAdded(WidthUsageRecord other, int width, int src) { in copyWithWidthAdded() argument 640 current.src = src; in copyWithWidthAdded() 665 private int src() { in src() method in ViewableTaggedData.WidthUsageRecord 666 return src; in src() 671 return "{width=" + width + " src=" + src + widthUsage.toString() + "}"; in toString() 684 int src = ref.sourcePosition; in add() 689 if (match.src() < in add() [all...] |
/third_party/skia/src/effects/imagefilters/ |
H A D | SkLightingImageFilter.cpp | 14 #include "src/core/SkImageFilter_Base.h" 15 #include "src/core/SkReadBuffer.h" 16 #include "src/core/SkSpecialImage.h" 17 #include "src/core/SkWriteBuffer.h" 21 #include "src/gpu/GrCaps.h" 22 #include "src/gpu/GrFragmentProcessor.h" 23 #include "src/gpu/GrPaint.h" 24 #include "src/gpu/GrRecordingContextPriv.h" 25 #include "src/gpu/GrTexture.h" 26 #include "src/gp 266 Fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) Fetch() argument 274 Fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) Fetch() argument 285 lightBitmap(const BaseLightingType& lightingType, const SkImageFilterLight* l, const SkBitmap& src, SkBitmap* dst, SkScalar surfaceScale, const SkIRect& bounds) lightBitmap() argument 375 lightBitmap(const BaseLightingType& lightingType, const SkImageFilterLight* light, const SkBitmap& src, SkBitmap* dst, SkScalar surfaceScale, const SkIRect& bounds) lightBitmap() argument [all...] |
/third_party/alsa-lib/src/pcm/ |
H A D | pcm.c | 3315 const char *src; in snd_pcm_area_copy() local 3323 src = snd_pcm_channel_area_addr(src_area, src_offset); in snd_pcm_area_copy() 3332 assert(src < dst || src >= dst + bytes); in snd_pcm_area_copy() 3333 assert(dst < src || dst >= src + bytes); in snd_pcm_area_copy() 3334 memcpy(dst, src, bytes); in snd_pcm_area_copy() 3349 srcval = *src & 0x0f; in snd_pcm_area_copy() 3351 srcval = *src & 0xf0; in snd_pcm_area_copy() 3357 src in snd_pcm_area_copy() 4007 snd_pcm_access_mask_copy(snd_pcm_access_mask_t *dst, const snd_pcm_access_mask_t *src) snd_pcm_access_mask_copy() argument 4109 snd_pcm_format_mask_copy(snd_pcm_format_mask_t *dst, const snd_pcm_format_mask_t *src) snd_pcm_format_mask_copy() argument 4212 snd_pcm_subformat_mask_copy(snd_pcm_subformat_mask_t *dst, const snd_pcm_subformat_mask_t *src) snd_pcm_subformat_mask_copy() argument 4315 snd_pcm_hw_params_copy(snd_pcm_hw_params_t *dst, const snd_pcm_hw_params_t *src) snd_pcm_hw_params_copy() argument 6435 snd_pcm_sw_params_copy(snd_pcm_sw_params_t *dst, const snd_pcm_sw_params_t *src) snd_pcm_sw_params_copy() argument 6992 snd_pcm_status_copy(snd_pcm_status_t *dst, const snd_pcm_status_t *src) snd_pcm_status_copy() argument 7207 snd_pcm_info_copy(snd_pcm_info_t *dst, const snd_pcm_info_t *src) snd_pcm_info_copy() argument 8590 _copy_to_fixed_query_map(snd_pcm_chmap_query_t **dst, const snd_pcm_chmap_t *src) _copy_to_fixed_query_map() argument 8604 _snd_pcm_make_single_query_chmaps(const snd_pcm_chmap_t *src) _snd_pcm_make_single_query_chmaps() argument 8619 _snd_pcm_copy_chmap(const snd_pcm_chmap_t *src) _snd_pcm_copy_chmap() argument 8632 _snd_pcm_copy_chmap_query(snd_pcm_chmap_query_t * const *src) _snd_pcm_copy_chmap_query() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_fs.c | 1393 LLVMValueRef src[16]; in generate_fs_twiddle() local 1409 assert(num_fs * src_channels <= ARRAY_SIZE(src)); in generate_fs_twiddle() 1415 lp_build_transpose_aos_n(gallivm, type, &fs_src[i][0], src_channels, &src[i * src_channels]); in generate_fs_twiddle() 1449 * Split the src in half in generate_fs_twiddle() 1453 src[(i - 1)*2 + 1] = lp_build_extract_range(gallivm, src[i - 1], 4, 4); in generate_fs_twiddle() 1454 src[(i - 1)*2 + 0] = lp_build_extract_range(gallivm, src[i - 1], 0, 4); in generate_fs_twiddle() 1476 dst[i] = src[j]; in generate_fs_twiddle() 1484 lp_bld_quad_twiddle(gallivm, type, src, src_coun in generate_fs_twiddle() 1524 fs_twiddle_transpose(struct gallivm_state *gallivm, struct lp_type type, LLVMValueRef *src, unsigned src_count, LLVMValueRef *dst) fs_twiddle_transpose() argument 1649 store_unswizzled_block(struct gallivm_state *gallivm, LLVMValueRef base_ptr, LLVMValueRef stride, unsigned block_width, unsigned block_height, LLVMValueRef* src, struct lp_type src_type, unsigned src_count, unsigned src_alignment) store_unswizzled_block() argument 1766 scale_bits(struct gallivm_state *gallivm, int src_bits, int dst_bits, LLVMValueRef src, struct lp_type src_type) scale_bits() argument 1904 convert_to_blend_type(struct gallivm_state *gallivm, unsigned block_size, const struct util_format_description *src_fmt, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef* src, unsigned num_srcs) convert_to_blend_type() argument 2072 convert_from_blend_type(struct gallivm_state *gallivm, unsigned block_size, const struct util_format_description *src_fmt, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef* src, unsigned num_srcs) convert_from_blend_type() argument 2387 LLVMValueRef src[4 * 4]; generate_unswizzled_blend() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | snow_dwt.c | 115 static av_always_inline void lift(DWTELEM *dst, DWTELEM *src, DWTELEM *ref, in lift() argument 125 #define LIFT(src, ref, inv) ((src) + ((inv) ? -(ref) : +(ref))) in lift() 127 dst[0] = LIFT(src[0], ((mul * 2 * ref[0] + add) >> shift), inverse); in lift() 129 src += src_step; in lift() 133 dst[i * dst_step] = LIFT(src[i * src_step], in lift() 140 dst[w * dst_step] = LIFT(src[w * src_step], in lift() 145 static av_always_inline void liftS(DWTELEM *dst, DWTELEM *src, DWTELEM *ref, in liftS() argument 156 #define LIFTS(src, ref, inv) \ in liftS() 157 ((inv) ? (src) in liftS() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_loudnorm.c | 415 const double *src; in filter_frame() local 438 src = (const double *)in->data[0]; in filter_frame() 443 ff_ebur128_add_frames_double(s->r128_in, src, in->nb_samples); in filter_frame() 466 buf[s->buf_index + c] = src[c]; in filter_frame() 468 src += inlink->ch_layout.nb_channels; in filter_frame() 518 buf[s->prev_buf_index + c] = src[c]; in filter_frame() 521 src += inlink->ch_layout.nb_channels; in filter_frame() 581 s->limiter_buf[s->limiter_buf_index + c] = src[src_index + c] * gain * s->offset; in filter_frame() 597 limiter_buf[s->limiter_buf_index + c] = src[src_index + c] * gain * s->offset; in filter_frame() 621 dst[c] = src[ in filter_frame() 648 double *src; request_frame() local [all...] |
H A D | vf_scale_npp.c | 627 AVFilterContext *ctx = outlink->src; in config_props() 628 AVFilterLink *inlink0 = outlink->src->inputs[0]; in config_props() 630 outlink->src->inputs[1] : in config_props() 631 outlink->src->inputs[0]; in config_props() 672 AVFilterLink *inlink = outlink->src->inputs[1]; in config_props_ref() 673 AVFilterContext *ctx = outlink->src; in config_props_ref() 775 AVFrame *src = in; in nppscale_scale() local 839 ret = nppscale_process[i](ctx, &s->stages[i], s->stages[i].frame, src); in nppscale_scale() 843 src = s->stages[i].frame; in nppscale_scale() 849 ret = av_hwframe_get_buffer(src in nppscale_scale() [all...] |
H A D | vf_scale.c | 481 AVFilterContext *ctx = outlink->src; in config_props() 482 AVFilterLink *inlink0 = outlink->src->inputs[0]; in config_props() 484 outlink->src->inputs[1] : in config_props() 485 outlink->src->inputs[0]; in config_props() 606 AVFilterLink *inlink = outlink->src->inputs[1]; in config_props_ref() 619 return ff_request_frame(outlink->src->inputs[0]); in request_frame() 624 return ff_request_frame(outlink->src->inputs[1]); in request_frame_ref() 636 static int scale_field(ScaleContext *scale, AVFrame *dst, AVFrame *src, in scale_field() argument 639 int orig_h_src = src->height; in scale_field() 645 frame_offset(src, in scale_field() [all...] |
/third_party/ffmpeg/libavcodec/x86/ |
H A D | h264_qpel_10bit.asm | 170 ; void ff_h264_qpel_mc00(uint8_t *dst, uint8_t *src, int stride) 224 ; void ff_h264_qpel_mc20(uint8_t *dst, uint8_t *src, int stride) 308 ; void ff_h264_qpel_mc30(uint8_t *dst, uint8_t *src, int stride) 319 ; void ff_h264_qpel_mc10(uint8_t *dst, uint8_t *src, int stride) 386 ; void ff_h264_qpel_mc02(uint8_t *dst, uint8_t *src, int stride) 435 ; void ff_h264_qpel_mc01(uint8_t *dst, uint8_t *src, int stride) 461 ; void ff_h264_qpel_mc03(uint8_t *dst, uint8_t *src, int stride) 472 ; void ff_h264_qpel_mc11(uint8_t *dst, uint8_t *src, int stride) 554 ; void ff_h264_qpel_mc31(uint8_t *dst, uint8_t *src, int stride) 566 ; void ff_h264_qpel_mc13(uint8_t *dst, uint8_t *src, in [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | RuleBasedBreakIterator.java | 1285 * @param src the source object to be copied. 1287 DictionaryCache(DictionaryCache src) { in DictionaryCache() argument 1289 fBreaks = (DictionaryBreakEngine.DequeI)src.fBreaks.clone(); in DictionaryCache() 1294 fPositionInCache = src.fPositionInCache; in DictionaryCache() 1295 fStart = src.fStart; in DictionaryCache() 1296 fLimit = src.fLimit; in DictionaryCache() 1297 fFirstRuleStatusIndex = src.fFirstRuleStatusIndex; in DictionaryCache() 1298 fOtherRuleStatusIndex = src.fOtherRuleStatusIndex; in DictionaryCache() 1299 fBoundary = src.fBoundary; in DictionaryCache() 1300 fStatusIndex = src in DictionaryCache() 1850 BreakCache(BreakCache src) BreakCache() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | RuleBasedBreakIterator.java | 1262 * @param src the source object to be copied. 1264 DictionaryCache(DictionaryCache src) { in DictionaryCache() argument 1266 fBreaks = (DictionaryBreakEngine.DequeI)src.fBreaks.clone(); in DictionaryCache() 1271 fPositionInCache = src.fPositionInCache; in DictionaryCache() 1272 fStart = src.fStart; in DictionaryCache() 1273 fLimit = src.fLimit; in DictionaryCache() 1274 fFirstRuleStatusIndex = src.fFirstRuleStatusIndex; in DictionaryCache() 1275 fOtherRuleStatusIndex = src.fOtherRuleStatusIndex; in DictionaryCache() 1276 fBoundary = src.fBoundary; in DictionaryCache() 1277 fStatusIndex = src in DictionaryCache() 1780 BreakCache(BreakCache src) BreakCache() argument [all...] |
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | cmake.py | 253 extra_sources: [(<cmake_src>, <src>)] to append with generated source files. 342 extra_sources: [(<cmake_src>, <src>)] to append with generated source files. 492 for src in files: 493 path = os.path.normpath(src) 497 copy = file_copy if os.path.basename(src) else dir_copy 499 copy.cmake_inputs.append(NormjoinPathForceCMakeSource(path_to_gyp, src)) 501 copy.gyp_inputs.append(src) 522 for src, dst in zip(copy.gyp_inputs, copy.gyp_outputs): 523 # 'cmake -E copy src dst' will create the 'dst' directory if needed. 525 output.write(src) [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | cmake.py | 253 extra_sources: [(<cmake_src>, <src>)] to append with generated source files. 342 extra_sources: [(<cmake_src>, <src>)] to append with generated source files. 492 for src in files: 493 path = os.path.normpath(src) 497 copy = file_copy if os.path.basename(src) else dir_copy 499 copy.cmake_inputs.append(NormjoinPathForceCMakeSource(path_to_gyp, src)) 501 copy.gyp_inputs.append(src) 522 for src, dst in zip(copy.gyp_inputs, copy.gyp_outputs): 523 # 'cmake -E copy src dst' will create the 'dst' directory if needed. 525 output.write(src) [all...] |
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_compositor.c | 306 struct u_rect src, struct u_rect dst) in calc_src_and_dst() 310 layer->src.tl = calc_topleft(size, src); in calc_src_and_dst() 311 layer->src.br = calc_bottomright(size, src); in calc_src_and_dst() 349 s->layers[layer].src.tl.y += half_a_line; in set_yuv_layer() 350 s->layers[layer].src.br.y += half_a_line; in set_yuv_layer() 359 s->layers[layer].src.tl.y -= half_a_line; in set_yuv_layer() 360 s->layers[layer].src.br.y -= half_a_line; in set_yuv_layer() 586 s->layers[layer].src in vl_compositor_set_buffer_layer() 305 calc_src_and_dst(struct vl_compositor_layer *layer, unsigned width, unsigned height, struct u_rect src, struct u_rect dst) calc_src_and_dst() argument 686 vl_compositor_yuv_deint_full(struct vl_compositor_state *s, struct vl_compositor *c, struct pipe_video_buffer *src, struct pipe_video_buffer *dst, struct u_rect *src_rect, struct u_rect *dst_rect, enum vl_compositor_deinterlace deinterlace) vl_compositor_yuv_deint_full() argument [all...] |