/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | stpcpy.c | 39 char *src = "Hello"; in stpcpy_0100() local 41 strcpy(dest, src); in stpcpy_0100() 43 if (strcmp(src, buf)) { in stpcpy_0100() 44 t_error("%s failed: src = %s, buf = %s\n", __func__, src, buf); in stpcpy_0100() 48 for (int i = strlen(src) + 1; i < BUF_SIZE; i++) { in stpcpy_0100() 65 char *src = ""; in stpcpy_0200() local 67 strcpy(dest, src); in stpcpy_0200() 69 if (strcmp(src, buf)) { in stpcpy_0200() 70 t_error("%s failed: src in stpcpy_0200() 90 char *src = "Hello world!"; stpcpy_0300() local 109 char *src = "Hello world!"; stpcpy_0400() local [all...] |
/third_party/skia/third_party/externals/tint/src/transform/ |
H A D | promote_initializers_to_const_var_test.cc | 15 #include "src/transform/promote_initializers_to_const_var.h" 17 #include "src/transform/test_helper.h" 26 auto* src = R"( in TEST_F() local 49 auto got = Run<PromoteInitializersToConstVar>(src); in TEST_F() 55 auto* src = R"( in TEST_F() local 82 auto got = Run<PromoteInitializersToConstVar>(src); in TEST_F() 88 auto* src = R"( in TEST_F() local 105 auto got = Run<PromoteInitializersToConstVar>(src); in TEST_F() 111 auto* src = R"( in TEST_F() local 156 auto got = Run<PromoteInitializersToConstVar>(src); in TEST_F() 162 auto* src = R"( TEST_F() local 203 auto* src = R"( TEST_F() local 229 auto* src = ""; TEST_F() local [all...] |
H A D | multiplanar_external_texture_test.cc | 15 #include "src/transform/multiplanar_external_texture.h" 16 #include "src/transform/test_helper.h" 27 auto* src = R"( in TEST_F() local 39 auto got = Run<MultiplanarExternalTexture>(src); in TEST_F() 45 auto* src = R"( in TEST_F() local 63 auto got = Run<MultiplanarExternalTexture>(src, data); in TEST_F() 69 auto* src = R"( in TEST_F() local 107 auto got = Run<MultiplanarExternalTexture>(src, data); in TEST_F() 113 auto* src = R"( in TEST_F() local 164 auto got = Run<MultiplanarExternalTexture>(src, dat in TEST_F() 170 auto* src = R"( TEST_F() local 225 auto* src = R"( TEST_F() local 296 auto* src = R"( TEST_F() local 380 auto* src = R"( TEST_F() local 447 auto* src = R"( TEST_F() local 514 auto* src = R"( TEST_F() local 591 auto* src = R"( TEST_F() local [all...] |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/ |
H A D | test.sh | 5 $1 -Iprotos/src -I../../../src/ --csharp_out=src/Google.Protobuf.Test \ 7 protos/src/google/protobuf/unittest_import_proto3.proto \ 8 protos/src/google/protobuf/unittest_import_public_proto3.proto \ 9 protos/src/google/protobuf/unittest_well_known_types.proto 11 $1 -Iprotos/csharp --csharp_out=src/Google.Protobuf.Test \ 15 $2 -Iprotos/src --csharp_out=src/Google.Protobuf.Test \ 17 protos/src/googl [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_memcpy.c | 58 if (!nir_src_is_const(cpy->src[2])) in opt_memcpy_deref_cast() 64 if (nir_src_as_uint(cpy->src[2]) < (uint64_t)parent_type_size) in opt_memcpy_deref_cast() 129 nir_deref_instr *dst = nir_src_as_deref(cpy->src[0]); in try_lower_memcpy() 130 nir_deref_instr *src = nir_src_as_deref(cpy->src[1]); in try_lower_memcpy() local 133 if (dst == src) { in try_lower_memcpy() 138 if (!nir_src_is_const(cpy->src[2])) in try_lower_memcpy() 141 uint64_t size = nir_src_as_uint(cpy->src[2]); in try_lower_memcpy() 147 if (glsl_type_is_vector_or_scalar(src->type) && in try_lower_memcpy() 150 glsl_get_explicit_size(src in try_lower_memcpy() [all...] |
H A D | nir_opt_offsets.c | 47 !alu->src[0].src.is_ssa || in try_extract_const_addition() 48 !alu->src[1].src.is_ssa || in try_extract_const_addition() 49 alu->src[0].negate || alu->src[0].abs || in try_extract_const_addition() 50 alu->src[1].negate || alu->src[1].abs) in try_extract_const_addition() 53 nir_ssa_scalar src[2] = { in try_extract_const_addition() 54 {alu->src[ in try_extract_const_addition() [all...] |
H A D | nir_instr_set.c | 29 src_is_ssa(nir_src *src, void *data) in src_is_ssa() argument 32 return src->is_ssa; in src_is_ssa() 89 hash_src(uint32_t hash, const nir_src *src) in hash_src() argument 91 assert(src->is_ssa); in hash_src() 92 hash = HASH(hash, src->ssa); in hash_src() 97 hash_alu_src(uint32_t hash, const nir_alu_src *src, unsigned num_components) in hash_alu_src() argument 99 hash = HASH(hash, src->abs); in hash_alu_src() 100 hash = HASH(hash, src->negate); in hash_alu_src() 103 hash = HASH(hash, src->swizzle[i]); in hash_alu_src() 105 hash = hash_src(hash, &src in hash_alu_src() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktShaderExecutor.cpp | 88 std::ostringstream src; in generateEmptyFragmentSource() local 90 src << "#version 450\n" in generateEmptyFragmentSource() 93 src << "void main (void)\n{\n"; in generateEmptyFragmentSource() 94 src << " o_color = vec4(0.0);\n"; in generateEmptyFragmentSource() 95 src << "}\n"; in generateEmptyFragmentSource() 97 return src.str(); in generateEmptyFragmentSource() 100 void packFloat16Bit (std::ostream& src, const std::vector<Symbol>& outputs) in packFloat16Bit() argument 110 src << "\tpacked_" << symIter->name << "[" << i << "] = uintBitsToFloat(packFloat2x16(f16vec2(" << symIter->name << "[" << i << "], -1.0)));\n"; in packFloat16Bit() 160 src << "\tpacked_" << symIter->name << "[" << i << "][" << j << "] = uintBitsToFloat(packFloat2x16(f16vec2(" << symIter->name << "[" << i << "][" << j << "], -1.0)));\n"; in packFloat16Bit() 165 src << "\tpacked in packFloat16Bit() 173 std::ostringstream src; generatePassthroughVertexShader() local 206 std::ostringstream src; generateVertexShader() local 314 generateFragShaderOutputDecl(std::ostream& src, const ShaderSpec& shaderSpec, bool useIntOutputs, const std::map<std::string, int>& outLocationMap, const std::string& outputPrefix) generateFragShaderOutputDecl() argument 363 generateFragShaderOutAssign(std::ostream& src, const ShaderSpec& shaderSpec, bool useIntOutputs, const std::string& valuePrefix, const std::string& outputPrefix, const bool isInput16Bit = false) generateFragShaderOutAssign() argument 398 std::ostringstream src; generatePassthroughFragmentShader() local 435 std::ostringstream src; generateGeometryShader() local 517 std::ostringstream src; generateFragmentShader() local 1679 declareBufferBlocks(std::ostream& src, const ShaderSpec& spec) declareBufferBlocks() argument 1715 generateExecBufferIo(std::ostream& src, const ShaderSpec& spec, const char* invocationNdxName) generateExecBufferIo() argument 2008 std::ostringstream src; moveBitOperation() local 2018 std::ostringstream src; scalarComparison() local 2139 std::ostringstream src; generateSpirv() local 2622 std::ostringstream src; generateComputeShader() local 2879 std::ostringstream src; generateMeshShader() local 2925 std::ostringstream src; generateTaskShader() local 3086 std::ostringstream src; generateVertexShaderForTess() local 3481 std::ostringstream src; generateTessControlShader() local 3514 std::ostringstream src; generateEmptyTessEvalShader() local 3578 std::ostringstream src; generatePassthroughTessControlShader() local 3600 std::ostringstream src; generateTessEvalShader() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
H A D | vktShaderExecutor.cpp | 88 std::ostringstream src; in generateEmptyFragmentSource() local 90 src << "#version 450\n" in generateEmptyFragmentSource() 93 src << "void main (void)\n{\n"; in generateEmptyFragmentSource() 94 src << " o_color = vec4(0.0);\n"; in generateEmptyFragmentSource() 95 src << "}\n"; in generateEmptyFragmentSource() 97 return src.str(); in generateEmptyFragmentSource() 100 void packFloat16Bit (std::ostream& src, const std::vector<Symbol>& outputs) in packFloat16Bit() argument 110 src << "\tpacked_" << symIter->name << "[" << i << "] = uintBitsToFloat(packFloat2x16(f16vec2(" << symIter->name << "[" << i << "], -1.0)));\n"; in packFloat16Bit() 160 src << "\tpacked_" << symIter->name << "[" << i << "][" << j << "] = uintBitsToFloat(packFloat2x16(f16vec2(" << symIter->name << "[" << i << "][" << j << "], -1.0)));\n"; in packFloat16Bit() 165 src << "\tpacked in packFloat16Bit() 173 std::ostringstream src; generatePassthroughVertexShader() local 206 std::ostringstream src; generateVertexShader() local 314 generateFragShaderOutputDecl(std::ostream& src, const ShaderSpec& shaderSpec, bool useIntOutputs, const std::map<std::string, int>& outLocationMap, const std::string& outputPrefix) generateFragShaderOutputDecl() argument 363 generateFragShaderOutAssign(std::ostream& src, const ShaderSpec& shaderSpec, bool useIntOutputs, const std::string& valuePrefix, const std::string& outputPrefix, const bool isInput16Bit = false) generateFragShaderOutAssign() argument 398 std::ostringstream src; generatePassthroughFragmentShader() local 435 std::ostringstream src; generateGeometryShader() local 517 std::ostringstream src; generateFragmentShader() local 1679 declareBufferBlocks(std::ostream& src, const ShaderSpec& spec) declareBufferBlocks() argument 1715 generateExecBufferIo(std::ostream& src, const ShaderSpec& spec, const char* invocationNdxName) generateExecBufferIo() argument 2008 std::ostringstream src; moveBitOperation() local 2018 std::ostringstream src; scalarComparison() local 2139 std::ostringstream src; generateSpirv() local 2622 std::ostringstream src; generateComputeShader() local 2879 std::ostringstream src; generateMeshShader() local 2925 std::ostringstream src; generateTaskShader() local 3086 std::ostringstream src; generateVertexShaderForTess() local 3481 std::ostringstream src; generateTessControlShader() local 3514 std::ostringstream src; generateEmptyTessEvalShader() local 3578 std::ostringstream src; generatePassthroughTessControlShader() local 3600 std::ostringstream src; generateTessEvalShader() local [all...] |
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | picture_rescale_enc.c | 14 #include "src/webp/encode.h" 21 #include "src/enc/vp8i_enc.h" 22 #include "src/utils/rescaler_utils.h" 23 #include "src/utils/utils.h" 27 // Grab the 'specs' (writer, *opaque, width, height...) from 'src' and copy them 29 static void PictureGrabSpecs(const WebPPicture* const src, in PictureGrabSpecs() argument 31 assert(src != NULL && dst != NULL); in PictureGrabSpecs() 32 *dst = *src; in PictureGrabSpecs() 59 int WebPPictureCopy(const WebPPicture* src, WebPPicture* dst) { in WebPPictureCopy() argument 60 if (src in WebPPictureCopy() 93 WebPPictureView(const WebPPicture* src, int left, int top, int width, int height, WebPPicture* dst) WebPPictureView() argument 154 const uint8_t* const src = WebPPictureCrop() local 167 RescalePlane(const uint8_t* src, int src_width, int src_height, int src_stride, uint8_t* dst, int dst_width, int dst_height, int dst_stride, rescaler_t* const work, int num_channels) RescalePlane() argument 277 WebPPictureCopy(const WebPPicture* src, WebPPicture* dst) WebPPictureCopy() argument 288 WebPPictureView(const WebPPicture* src, int left, int top, int width, int height, WebPPicture* dst) WebPPictureView() argument [all...] |
/third_party/skia/src/core/ |
H A D | SkLineClipper.cpp | 9 #include "src/core/SkLineClipper.h" 30 static SkScalar sect_with_horizontal(const SkPoint src[2], SkScalar Y) { in sect_with_horizontal() argument 31 SkScalar dy = src[1].fY - src[0].fY; in sect_with_horizontal() 33 return SkScalarAve(src[0].fX, src[1].fX); in sect_with_horizontal() 37 double X0 = src[0].fX; in sect_with_horizontal() 38 double Y0 = src[0].fY; in sect_with_horizontal() 39 double X1 = src[1].fX; in sect_with_horizontal() 40 double Y1 = src[ in sect_with_horizontal() 51 sect_with_vertical(const SkPoint src[2], SkScalar X) sect_with_vertical() argument 67 sect_clamp_with_vertical(const SkPoint src[2], SkScalar x) sect_clamp_with_vertical() argument 90 IntersectLine(const SkPoint src[2], const SkRect& clip, SkPoint dst[2]) IntersectLine() argument [all...] |
/device/soc/rockchip/common/hardware/rga/include/ |
H A D | im2d.h | 367 * @param src 375 #define imcheck(src, dst, src_rect, dst_rect, ...) \ 391 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \ 393 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \ 400 #define imcheck_composite(src, dst, pat, src_rect, dst_rect, pat_rect, ...) \ 406 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \ 408 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \ 415 IM_API IM_STATUS imcheck_t(const rga_buffer_t src, const rga_buffer_t dst, const rga_buffer_t pat, 422 * @param src 432 #define imresize(src, ds [all...] |
/device/soc/rockchip/rk3399/hardware/rga/include/ |
H A D | im2d.h | 377 * @param src 385 #define imcheck(src, dst, src_rect, dst_rect, ...) \ 401 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \ 403 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \ 410 #define imcheck_composite(src, dst, pat, src_rect, dst_rect, pat_rect, ...) \ 416 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \ 418 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \ 425 IM_API IM_STATUS imcheck_t(const rga_buffer_t src, const rga_buffer_t dst, const rga_buffer_t pat, 432 * @param src 442 #define imresize(src, ds [all...] |
/device/soc/rockchip/rk3568/hardware/rga/include/ |
H A D | im2d.h | 377 * @param src 385 #define imcheck(src, dst, src_rect, dst_rect, ...) \ 401 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \ 403 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \ 410 #define imcheck_composite(src, dst, pat, src_rect, dst_rect, pat_rect, ...) \ 416 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \ 418 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \ 425 IM_API IM_STATUS imcheck_t(const rga_buffer_t src, const rga_buffer_t dst, const rga_buffer_t pat, 432 * @param src 442 #define imresize(src, ds [all...] |
/third_party/typescript/tests/baselines/reference/tsbuildWatch/reexport/ |
H A D | Reports-errors-correctly.js | 2 //// [/user/username/projects/reexport/src/tsconfig.json]
10 //// [/user/username/projects/reexport/src/main/tsconfig.json]
21 //// [/user/username/projects/reexport/src/main/index.ts]
29 //// [/user/username/projects/reexport/src/pure/tsconfig.json]
40 //// [/user/username/projects/reexport/src/pure/index.ts]
44 //// [/user/username/projects/reexport/src/pure/session.ts]
67 /a/lib/tsc.js -b -w -verbose src
73 * src/pure/tsconfig.json
74 * src/main/tsconfig.json
75 * src/tsconfi [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless_neon.c | 14 #include "src/dsp/dsp.h" 20 #include "src/dsp/lossless.h" 21 #include "src/dsp/neon.h" 29 static void ConvertBGRAToRGBA_NEON(const uint32_t* src, in ConvertBGRAToRGBA_NEON() argument 31 const uint32_t* const end = src + (num_pixels & ~15); in ConvertBGRAToRGBA_NEON() 32 for (; src < end; src += 16) { in ConvertBGRAToRGBA_NEON() 33 uint8x16x4_t pixel = vld4q_u8((uint8_t*)src); in ConvertBGRAToRGBA_NEON() 41 VP8LConvertBGRAToRGBA_C(src, num_pixels & 15, dst); // left-overs in ConvertBGRAToRGBA_NEON() 44 static void ConvertBGRAToBGR_NEON(const uint32_t* src, in ConvertBGRAToBGR_NEON() argument 56 ConvertBGRAToRGB_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGB_NEON() argument 74 ConvertBGRAToRGBA_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGBA_NEON() argument 92 ConvertBGRAToBGR_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToBGR_NEON() argument 119 ConvertBGRAToRGB_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGB_NEON() argument 212 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd0_NEON() local 226 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd1_NEON() local 279 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd5_NEON() local 304 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd6_NEON() local 320 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd7_NEON() local 366 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd10_NEON() local 402 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd11_NEON() local 431 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd12_NEON() local 471 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd13_NEON() local 524 AddGreenToBlueAndRed_NEON(const uint32_t* src, int num_pixels, uint32_t* dst) AddGreenToBlueAndRed_NEON() argument 544 TransformColorInverse_NEON(const VP8LMultipliers* const m, const uint32_t* const src, int num_pixels, uint32_t* dst) TransformColorInverse_NEON() argument [all...] |
/third_party/ffmpeg/libavcodec/x86/ |
H A D | h264_qpel.c | 53 void ff_ ## OPNAME ## _h264_qpel4_h_lowpass_mmxext(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride);\ 54 void ff_ ## OPNAME ## _h264_qpel8_h_lowpass_mmxext(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride);\ 55 void ff_ ## OPNAME ## _h264_qpel8_h_lowpass_ssse3(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride);\ 56 void ff_ ## OPNAME ## _h264_qpel4_h_lowpass_l2_mmxext(uint8_t *dst, const uint8_t *src, const uint8_t *src2, int dstStride, int src2Stride);\ 57 void ff_ ## OPNAME ## _h264_qpel8_h_lowpass_l2_mmxext(uint8_t *dst, const uint8_t *src, const uint8_t *src2, int dstStride, int src2Stride);\ 58 void ff_ ## OPNAME ## _h264_qpel8_h_lowpass_l2_ssse3(uint8_t *dst, const uint8_t *src, const uint8_t *src2, int dstStride, int src2Stride);\ 59 void ff_ ## OPNAME ## _h264_qpel4_v_lowpass_mmxext(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride);\ 60 void ff_ ## OPNAME ## _h264_qpel8or16_v_lowpass_sse2(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h);\ 61 void ff_ ## OPNAME ## _h264_qpel4_hv_lowpass_v_mmxext(const uint8_t *src, int16_t *tmp, int srcStride);\ 63 void ff_ ## OPNAME ## _h264_qpel8or16_hv1_lowpass_op_sse2(const uint8_t *src, int16_ 159 put_h264_qpel8or16_hv1_lowpass_sse2(int16_t *tmp, const uint8_t *src, int tmpStride, int srcStride, int size) put_h264_qpel8or16_hv1_lowpass_sse2() argument 209 put_h264_qpel16_mc00_sse2(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) put_h264_qpel16_mc00_sse2() argument 214 avg_h264_qpel16_mc00_sse2(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) avg_h264_qpel16_mc00_sse2() argument [all...] |
H A D | cavsdsp.c | 129 src -= 2*srcStride;\ 158 : "+a"(src), "+c"(dst)\ 174 : "+a"(src), "+c"(dst)\ 180 src += 4-(h+5)*srcStride;\ 185 static void OPNAME ## cavs_qpel8_h_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride)\ 227 : "+a"(src), "+c"(dst), "+m"(h)\ 234 static inline void OPNAME ## cavs_qpel8or16_v1_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)\ 239 static inline void OPNAME ## cavs_qpel8or16_v2_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)\ 244 static inline void OPNAME ## cavs_qpel8or16_v3_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)\ 249 static void OPNAME ## cavs_qpel8_v1_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_ 323 put_cavs_qpel8_mc00_mmx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) put_cavs_qpel8_mc00_mmx() argument 329 avg_cavs_qpel8_mc00_mmxext(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) avg_cavs_qpel8_mc00_mmxext() argument 335 put_cavs_qpel16_mc00_sse2(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) put_cavs_qpel16_mc00_sse2() argument 341 avg_cavs_qpel16_mc00_sse2(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) avg_cavs_qpel16_mc00_sse2() argument [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | ustrtrns.cpp | 43 const UChar32 *src, in u_strFromUTF32WithSub() 58 if( (src==NULL && srcLength!=0) || srcLength < -1 || in u_strFromUTF32WithSub() 77 while((ch=*src) != 0 && in u_strFromUTF32WithSub() 79 ++src; in u_strFromUTF32WithSub() 86 srcLimit = src; in u_strFromUTF32WithSub() 92 srcLimit = (src!=NULL)?(src + srcLength):NULL; in u_strFromUTF32WithSub() 96 while(src < srcLimit) { in u_strFromUTF32WithSub() 97 ch = *src++; in u_strFromUTF32WithSub() 143 const UChar32 *src, in u_strFromUTF32() 40 u_strFromUTF32WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromUTF32WithSub() argument 140 u_strFromUTF32(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF32() argument 154 u_strToUTF32WithSub(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strToUTF32WithSub() argument 246 u_strToUTF32(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) u_strToUTF32() argument 260 u_strFromUTF8WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromUTF8WithSub() argument 540 u_strFromUTF8(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF8() argument 554 u_strFromUTF8Lenient(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF8Lenient() argument 1071 u_strFromJavaModifiedUTF8WithSub( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromJavaModifiedUTF8WithSub() argument 1313 u_strToJavaModifiedUTF8( char *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) u_strToJavaModifiedUTF8() argument [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | ustrtrns.cpp | 43 const UChar32 *src, in u_strFromUTF32WithSub() 58 if( (src==nullptr && srcLength!=0) || srcLength < -1 || in u_strFromUTF32WithSub() 77 while((ch=*src) != 0 && in u_strFromUTF32WithSub() 79 ++src; in u_strFromUTF32WithSub() 86 srcLimit = src; in u_strFromUTF32WithSub() 92 srcLimit = (src!=nullptr)?(src + srcLength):nullptr; in u_strFromUTF32WithSub() 96 while(src < srcLimit) { in u_strFromUTF32WithSub() 97 ch = *src++; in u_strFromUTF32WithSub() 143 const UChar32 *src, in u_strFromUTF32() 40 u_strFromUTF32WithSub(char16_t *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromUTF32WithSub() argument 140 u_strFromUTF32(char16_t *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF32() argument 154 u_strToUTF32WithSub(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const char16_t *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strToUTF32WithSub() argument 246 u_strToUTF32(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const char16_t *src, int32_t srcLength, UErrorCode *pErrorCode) u_strToUTF32() argument 260 u_strFromUTF8WithSub(char16_t *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromUTF8WithSub() argument 540 u_strFromUTF8(char16_t *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF8() argument 554 u_strFromUTF8Lenient(char16_t *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF8Lenient() argument 1071 u_strFromJavaModifiedUTF8WithSub( char16_t *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromJavaModifiedUTF8WithSub() argument 1313 u_strToJavaModifiedUTF8( char *dest, int32_t destCapacity, int32_t *pDestLength, const char16_t *src, int32_t srcLength, UErrorCode *pErrorCode) u_strToJavaModifiedUTF8() argument [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ustrtrns.cpp | 43 const UChar32 *src, in u_strFromUTF32WithSub() 58 if( (src==NULL && srcLength!=0) || srcLength < -1 || in u_strFromUTF32WithSub() 77 while((ch=*src) != 0 && in u_strFromUTF32WithSub() 79 ++src; in u_strFromUTF32WithSub() 86 srcLimit = src; in u_strFromUTF32WithSub() 92 srcLimit = (src!=NULL)?(src + srcLength):NULL; in u_strFromUTF32WithSub() 96 while(src < srcLimit) { in u_strFromUTF32WithSub() 97 ch = *src++; in u_strFromUTF32WithSub() 143 const UChar32 *src, in u_strFromUTF32() 40 u_strFromUTF32WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromUTF32WithSub() argument 140 u_strFromUTF32(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF32() argument 154 u_strToUTF32WithSub(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strToUTF32WithSub() argument 246 u_strToUTF32(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) u_strToUTF32() argument 260 u_strFromUTF8WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromUTF8WithSub() argument 540 u_strFromUTF8(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF8() argument 554 u_strFromUTF8Lenient(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UErrorCode *pErrorCode) u_strFromUTF8Lenient() argument 1071 u_strFromJavaModifiedUTF8WithSub( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) u_strFromJavaModifiedUTF8WithSub() argument 1313 u_strToJavaModifiedUTF8( char *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) u_strToJavaModifiedUTF8() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | hevcdsp_template.c | 134 #define TR_4x4_LUMA(dst, src, step, assign) \ 136 int c0 = src[0 * step] + src[2 * step]; \ 137 int c1 = src[2 * step] + src[3 * step]; \ 138 int c2 = src[0 * step] - src[3 * step]; \ 139 int c3 = 74 * src[1 * step]; \ 141 assign(dst[2 * step], 74 * (src[0 * step] - \ 142 src[ 154 int16_t *src = coeffs; transform_4x4_luma() local 304 pixel *src = (pixel *)_src; sao_band_filter() local 335 pixel *src = (pixel *)_src; sao_edge_filter() local 363 pixel *src = (pixel *)_src; sao_edge_restore_0() local 413 pixel *src = (pixel *)_src; sao_edge_restore_1() local 501 pixel *src = (pixel *)_src; put_hevc_pel_pixels() local 516 pixel *src = (pixel *)_src; put_hevc_pel_uni_pixels() local 533 pixel *src = (pixel *)_src; put_hevc_pel_bi_pixels() local 558 pixel *src = (pixel *)_src; put_hevc_pel_uni_w_pixels() local 584 pixel *src = (pixel *)_src; put_hevc_pel_bi_w_pixels() local 622 pixel *src = (pixel*)_src; put_hevc_qpel_h() local 638 pixel *src = (pixel*)_src; put_hevc_qpel_v() local 657 pixel *src = (pixel*)_src; put_hevc_qpel_hv() local 686 pixel *src = (pixel*)_src; put_hevc_qpel_uni_h() local 712 pixel *src = (pixel*)_src; put_hevc_qpel_bi_h() local 740 pixel *src = (pixel*)_src; put_hevc_qpel_uni_v() local 767 pixel *src = (pixel*)_src; put_hevc_qpel_bi_v() local 796 pixel *src = (pixel*)_src; put_hevc_qpel_uni_hv() local 836 pixel *src = (pixel*)_src; put_hevc_qpel_bi_hv() local 876 pixel *src = (pixel*)_src; put_hevc_qpel_uni_w_h() local 903 pixel *src = (pixel*)_src; put_hevc_qpel_bi_w_h() local 931 pixel *src = (pixel*)_src; put_hevc_qpel_uni_w_v() local 958 pixel *src = (pixel*)_src; put_hevc_qpel_bi_w_v() local 987 pixel *src = (pixel*)_src; put_hevc_qpel_uni_w_hv() local 1028 pixel *src = (pixel*)_src; put_hevc_qpel_bi_w_hv() local 1075 pixel *src = (pixel *)_src; put_hevc_epel_h() local 1091 pixel *src = (pixel *)_src; put_hevc_epel_v() local 1108 pixel *src = (pixel *)_src; put_hevc_epel_hv() local 1138 pixel *src = (pixel *)_src; put_hevc_epel_uni_h() local 1163 pixel *src = (pixel *)_src; put_hevc_epel_bi_h() local 1189 pixel *src = (pixel *)_src; put_hevc_epel_uni_v() local 1214 pixel *src = (pixel *)_src; put_hevc_epel_bi_v() local 1239 pixel *src = (pixel *)_src; put_hevc_epel_uni_hv() local 1278 pixel *src = (pixel *)_src; put_hevc_epel_bi_hv() local 1317 pixel *src = (pixel *)_src; put_hevc_epel_uni_w_h() local 1345 pixel *src = (pixel *)_src; put_hevc_epel_bi_w_h() local 1369 pixel *src = (pixel *)_src; put_hevc_epel_uni_w_v() local 1397 pixel *src = (pixel *)_src; put_hevc_epel_bi_w_v() local 1421 pixel *src = (pixel *)_src; put_hevc_epel_uni_w_hv() local 1462 pixel *src = (pixel *)_src; put_hevc_epel_bi_w_hv() local [all...] |
/third_party/jerryscript/tests/jerry/ |
H A D | regression-test-issue-1556.js | 16 var src = "(function ("; variable 18 src += "a" + i + ", "; 19 src += "b) { var c = 1; })()"; 21 eval(src); 24 var src = "(function ("; variable 26 src += "a" + i + ", "; 27 src += "b) { })()"; 30 eval(src); 38 var src = "(function () {"; variable 40 src [all...] |
/third_party/ffmpeg/libavcodec/aarch64/ |
H A D | vc1dsp_init_aarch64.c | 39 void ff_vc1_v_loop_filter4_neon(uint8_t *src, ptrdiff_t stride, int pq); 40 void ff_vc1_h_loop_filter4_neon(uint8_t *src, ptrdiff_t stride, int pq); 41 void ff_vc1_v_loop_filter8_neon(uint8_t *src, ptrdiff_t stride, int pq); 42 void ff_vc1_h_loop_filter8_neon(uint8_t *src, ptrdiff_t stride, int pq); 43 void ff_vc1_v_loop_filter16_neon(uint8_t *src, ptrdiff_t stride, int pq); 44 void ff_vc1_h_loop_filter16_neon(uint8_t *src, ptrdiff_t stride, int pq); 46 void ff_put_vc1_chroma_mc8_neon(uint8_t *dst, uint8_t *src, ptrdiff_t stride, 48 void ff_avg_vc1_chroma_mc8_neon(uint8_t *dst, uint8_t *src, ptrdiff_t stride, 50 void ff_put_vc1_chroma_mc4_neon(uint8_t *dst, uint8_t *src, ptrdiff_t stride, 52 void ff_avg_vc1_chroma_mc4_neon(uint8_t *dst, uint8_t *src, ptrdiff_ 57 vc1_unescape_buffer_neon(const uint8_t *src, int size, uint8_t *dst) vc1_unescape_buffer_neon() argument [all...] |
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_cid.c | 67 void ngtcp2_scid_copy(ngtcp2_scid *dest, const ngtcp2_scid *src) { in ngtcp2_scid_copy() argument 68 ngtcp2_scid_init(dest, src->seq, &src->cid); in ngtcp2_scid_copy() 69 dest->retired_ts = src->retired_ts; in ngtcp2_scid_copy() 70 dest->flags = src->flags; in ngtcp2_scid_copy() 102 void ngtcp2_dcid_copy(ngtcp2_dcid *dest, const ngtcp2_dcid *src) { in ngtcp2_dcid_copy() argument 103 ngtcp2_dcid_init(dest, src->seq, &src->cid, in ngtcp2_dcid_copy() 104 (src->flags & NGTCP2_DCID_FLAG_TOKEN_PRESENT) ? src in ngtcp2_dcid_copy() 115 ngtcp2_dcid_copy_cid_token(ngtcp2_dcid *dest, const ngtcp2_dcid *src) ngtcp2_dcid_copy_cid_token() argument [all...] |