Home
last modified time | relevance | path

Searched refs:src (Results 776 - 800 of 8486) sorted by relevance

1...<<31323334353637383940>>...340

/third_party/musl/porting/uniproton/kernel/src/stdio/
H A D__string_read.c6 char *src = f->cookie; in __string_read() local
8 char *end = memchr(src, 0, k); in __string_read()
9 if (end) k = end-src; in __string_read()
11 memcpy(buf, src, len); in __string_read()
12 f->rpos = (void *)(src+len); in __string_read()
13 f->rend = (void *)(src+k); in __string_read()
14 f->cookie = src+k; in __string_read()
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H A D__string_read.c6 char *src = f->cookie; in __string_read() local
8 char *end = memchr(src, 0, k); in __string_read()
9 if (end) k = end-src; in __string_read()
11 memcpy(buf, src, len); in __string_read()
12 f->rpos = (void *)(src+len); in __string_read()
13 f->rend = (void *)(src+k); in __string_read()
14 f->cookie = src+k; in __string_read()
/third_party/musl/libc-test/src/functionalext/supplement/multibyte/
H A Dwcstombs.c31 wchar_t src[] = L"Hello"; in wcstombs_0100() local
33 size_t result = wcstombs(buf, src, BUF_SIZE); in wcstombs_0100()
47 wchar_t src[] = L"Hello"; in wcstombs_0200() local
49 size_t result = wcstombs(buf, src, 0); in wcstombs_0200()
62 wchar_t src[] = L"Hello"; in wcstombs_0300() local
64 size_t result = wcstombs(NULL, src, 0); in wcstombs_0300()
65 if (result != wcslen(src)) { in wcstombs_0300()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dbase64.c30 BASE64Decode(const char* src) in BASE64Decode() argument
32 size_t in_len = strlen (src); in BASE64Decode()
44 while (*src) { in BASE64Decode()
45 char a = base64_digits[(unsigned char)*(src++)]; in BASE64Decode()
46 char b = base64_digits[(unsigned char)*(src++)]; in BASE64Decode()
47 char c = base64_digits[(unsigned char)*(src++)]; in BASE64Decode()
48 char d = base64_digits[(unsigned char)*(src++)]; in BASE64Decode()
/third_party/skia/third_party/externals/tint/src/ast/
H A Doverride_decoration.cc15 #include "src/ast/override_decoration.h"
19 #include "src/program_builder.h"
26 OverrideDecoration::OverrideDecoration(ProgramID pid, const Source& src) in OverrideDecoration() argument
27 : Base(pid, src), has_value(false), value(0) {} in OverrideDecoration()
30 const Source& src, in OverrideDecoration()
32 : Base(pid, src), has_value(true), value(val) {} in OverrideDecoration()
42 auto src = ctx->Clone(source); in Clone() local
44 return ctx->dst->create<OverrideDecoration>(src, value); in Clone()
46 return ctx->dst->create<OverrideDecoration>(src); in Clone()
29 OverrideDecoration(ProgramID pid, const Source& src, uint32_t val) OverrideDecoration() argument
/third_party/skia/third_party/externals/tint/src/transform/
H A Dadd_empty_entry_point_test.cc15 #include "src/transform/add_empty_entry_point.h"
19 #include "src/transform/test_helper.h"
28 auto* src = R"()"; in TEST_F() local
36 auto got = Run<AddEmptyEntryPoint>(src); in TEST_F()
42 auto* src = R"( in TEST_F() local
48 auto* expect = src; in TEST_F()
50 auto got = Run<AddEmptyEntryPoint>(src); in TEST_F()
56 auto* src = R"(var<private> unused_entry_point : f32;)"; in TEST_F() local
66 auto got = Run<AddEmptyEntryPoint>(src); in TEST_F()
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dbuiltin-prototype.c1 void memcpy(void *dst, const void *src, unsigned int size);
2 void memcpy(void *dst, const void *src, unsigned int size) in memcpy() argument
4 __builtin_memcpy(dst, src, size); in memcpy()
7 unsigned int strlen(const char *src);
8 unsigned int strlen(const char *src) in strlen() argument
10 return __builtin_strlen(src); in strlen()
/foundation/multimedia/image_effect/frameworks/native/efilter/filterimpl/crop/
H A Dcrop_efilter.cpp84 void Crop(EffectBuffer *src, EffectBuffer *dst, Region *region) in Crop() argument
97 auto *srcBuffer = static_cast<char *>(src->buffer_); in Crop()
99 uint32_t srcRowStride = src->bufferInfo_->rowStride_; in Crop()
114 ErrorCode CropEFilter::Render(EffectBuffer *src, EffectBuffer *dst, std::shared_ptr<EffectContext> &context) in Render() argument
116 CHECK_AND_RETURN_RET_LOG(src != nullptr && dst != nullptr, ErrorCode::ERR_INPUT_NULL, in Render()
117 "input error! src=%{public}p, dst=%{public}p", src, dst); in Render()
118 CHECK_AND_RETURN_RET_LOG(src->bufferInfo_ != nullptr && dst->bufferInfo_ != nullptr, ErrorCode::ERR_INPUT_NULL, in Render()
119 "input error! src->bufferInfo_=%{public}d, dst->bufferInfo_=%{public}d", in Render()
120 src in Render()
134 UpdateDstEffectBufferIfNeed(EffectBuffer *src, EffectBuffer *dst) UpdateDstEffectBufferIfNeed() argument
152 CropToOutputBuffer(EffectBuffer *src, std::shared_ptr<EffectContext> &context, std::shared_ptr<EffectBuffer> &output) CropToOutputBuffer() argument
[all...]
/third_party/icu/icu4c/source/common/unicode/
H A Dustring.h134 * Concatenate two ustrings. Appends a copy of <code>src</code>,
136 * character from <code>src</code> overwrites the null terminator in <code>dst</code>.
139 * @param src The source string.
145 const UChar *src);
149 * Appends at most <code>n</code> characters from <code>src</code> to <code>dst</code>.
151 * If src is too long, then only <code>n-1</code> characters will be copied
156 * @param src The source string (can be NULL/invalid if n<=0).
163 const UChar *src,
391 * argument src is a pointer to the string. In subsequent calls to
392 * return successive tokens of that string, src mus
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Dustring.h134 * Concatenate two ustrings. Appends a copy of <code>src</code>,
136 * character from <code>src</code> overwrites the null terminator in <code>dst</code>.
139 * @param src The source string.
145 const UChar *src);
149 * Appends at most <code>n</code> characters from <code>src</code> to <code>dst</code>.
151 * If src is too long, then only <code>n-1</code> characters will be copied
156 * @param src The source string (can be NULL/invalid if n<=0).
163 const UChar *src,
391 * argument src is a pointer to the string. In subsequent calls to
392 * return successive tokens of that string, src mus
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dustring.h134 * Concatenate two ustrings. Appends a copy of <code>src</code>,
136 * character from <code>src</code> overwrites the null terminator in <code>dst</code>.
139 * @param src The source string.
145 const UChar *src);
149 * Appends at most <code>n</code> characters from <code>src</code> to <code>dst</code>.
151 * If src is too long, then only <code>n-1</code> characters will be copied
156 * @param src The source string (can be NULL/invalid if n<=0).
163 const UChar *src,
391 * argument src is a pointer to the string. In subsequent calls to
392 * return successive tokens of that string, src mus
[all...]
/third_party/skia/include/private/
H A DSkTDArray.h30 SkTDArray(const T src[], int count) { in SkTDArray() argument
31 SkASSERT(src || count == 0); in SkTDArray()
37 memcpy(fArray, src, sizeof(T) * SkToSizeT(count)); in SkTDArray()
42 SkTDArray(const SkTDArray<T>& src) : fArray(nullptr), fReserve(0), fCount(0) { in SkTDArray() argument
43 SkTDArray<T> tmp(src.fArray, src.fCount); in SkTDArray()
46 SkTDArray(SkTDArray<T>&& src) : fArray(nullptr), fReserve(0), fCount(0) { in SkTDArray() argument
47 this->swap(src); in SkTDArray()
53 SkTDArray<T>& operator=(const SkTDArray<T>& src) { in operator =() argument
54 if (this != &src) { in operator =()
65 operator =(SkTDArray<T>&& src) operator =() argument
[all...]
/third_party/node/deps/v8/src/codegen/ppc/
H A Dassembler-ppc.h47 #include "src/base/numbers/double.h"
48 #include "src/codegen/assembler.h"
49 #include "src/codegen/constant-pool.h"
50 #include "src/codegen/external-reference.h"
51 #include "src/codegen/label.h"
52 #include "src/codegen/ppc/constants-ppc.h"
53 #include "src/codegen/ppc/register-ppc.h"
54 #include "src/objects/smi.h"
334 inline void name(const Register dst, const Register src, \
336 x_form(instr_name, src, ds
413 notx(Register dst, Register src, RCBit rc = LeaveRC) notx() argument
416 lwax(Register rt, const MemOperand& src) lwax() argument
1170 push(Register src) push() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_colormatrix.c72 const AVFrame *src; member
85 { "src", "set source color matrix", OFFSET(source), AV_OPT_TYPE_INT, {.i64=COLOR_MODE_NONE}, COLOR_MODE_NONE, COLOR_MODE_COUNT-1, .flags=FLAGS, .unit="color_mode" },
208 const AVFrame *src = td->src; in process_slice_uyvy422() local
210 const int height = src->height; in process_slice_uyvy422()
211 const int width = src->width*2; in process_slice_uyvy422()
212 const int src_pitch = src->linesize[0]; in process_slice_uyvy422()
216 const unsigned char *srcp = src->data[0] + slice_start * src_pitch; in process_slice_uyvy422()
246 const AVFrame *src = td->src; in process_slice_yuv444p() local
293 const AVFrame *src = td->src; process_slice_yuv422p() local
341 const AVFrame *src = td->src; process_slice_yuv420p() local
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_lower_regioning.cpp43 inst->src[0].type == inst->dst.type && in is_byte_raw_mov()
45 !inst->src[0].negate && in is_byte_raw_mov()
46 !inst->src[0].abs; in is_byte_raw_mov()
83 if (!is_uniform(inst->src[i]) && !inst->is_control_source(i)) { in required_dst_byte_stride()
84 const unsigned size = type_sz(inst->src[i].type); in required_dst_byte_stride()
85 max_stride = MAX2(max_stride, inst->src[i].stride * size); in required_dst_byte_stride()
113 if (!is_uniform(inst->src[i]) && !inst->is_control_source(i)) in required_dst_byte_offset()
114 if (reg_offset(inst->src[i]) % REG_SIZE != in required_dst_byte_offset()
190 devinfo->verx10 >= 125) && type_sz(inst->src[0].type) > 4) || in required_exec_type()
192 brw_reg_type_is_floating_point(inst->src[ in required_exec_type()
[all...]
/third_party/mesa3d/src/gallium/frontends/va/
H A Dpostproc.c58 struct pipe_video_buffer *src, in vlVaPostProcCompositor()
81 vl_compositor_set_buffer_layer(&drv->cstate, &drv->compositor, 0, src, in vlVaPostProcCompositor()
117 struct pipe_video_buffer *src, in vlVaVidEngineBlit()
125 if (src->buffer_format != PIPE_FORMAT_NV12 || in vlVaVidEngineBlit()
142 context->desc.vidproc.base.input_format = src->buffer_format; in vlVaVidEngineBlit()
176 context->decoder->process_frame(context->decoder, src, &context->desc.vidproc); in vlVaVidEngineBlit()
185 struct pipe_video_buffer *src, in vlVaPostProcBlit()
197 if ((src->buffer_format == PIPE_FORMAT_B8G8R8X8_UNORM || in vlVaPostProcBlit()
198 src->buffer_format == PIPE_FORMAT_B8G8R8A8_UNORM || in vlVaPostProcBlit()
199 src in vlVaPostProcBlit()
55 vlVaPostProcCompositor(vlVaDriver *drv, vlVaContext *context, const VARectangle *src_region, const VARectangle *dst_region, struct pipe_video_buffer *src, struct pipe_video_buffer *dst, enum vl_compositor_deinterlace deinterlace) vlVaPostProcCompositor() argument
114 vlVaVidEngineBlit(vlVaDriver *drv, vlVaContext *context, const VARectangle *src_region, const VARectangle *dst_region, struct pipe_video_buffer *src, struct pipe_video_buffer *dst, enum vl_compositor_deinterlace deinterlace, VAProcPipelineParameterBuffer* param) vlVaVidEngineBlit() argument
182 vlVaPostProcBlit(vlVaDriver *drv, vlVaContext *context, const VARectangle *src_region, const VARectangle *dst_region, struct pipe_video_buffer *src, struct pipe_video_buffer *dst, enum vl_compositor_deinterlace deinterlace) vlVaPostProcBlit() argument
359 struct pipe_video_buffer *src, *dst; vlVaHandleVAProcPipelineParameterBufferType() local
[all...]
/third_party/typescript/tests/baselines/reference/tsbuildWatch/noEmitOnError/
H A Ddoes-not-emit-any-files-on-error.js16 //// [/user/username/projects/noEmitOnError/src/main.ts]
22 //// [/user/username/projects/noEmitOnError/src/other.ts]
63 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
69 /user/username/projects/noEmitOnError/src/main.ts
70 /user/username/projects/noEmitOnError/src/other.ts
83 /user/username/projects/noemitonerror/src/main.ts:
85 /user/username/projects/noemitonerror/src/other.ts:
98 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
117 Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/mai
[all...]
/third_party/node/deps/v8/src/wasm/baseline/x64/
H A Dliftoff-assembler-x64.h8 #include "src/base/platform/wrappers.h"
9 #include "src/codegen/assembler.h"
10 #include "src/codegen/cpu-features.h"
11 #include "src/codegen/machine-type.h"
12 #include "src/codegen/x64/register-x64.h"
13 #include "src/heap/memory-chunk.h"
14 #include "src/wasm/baseline/liftoff-assembler.h"
15 #include "src/wasm/simd-shuffle.h"
16 #include "src/wasm/wasm-objects.h"
93 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, Operand src, in Load() argument
119 Store(LiftoffAssembler* assm, Operand dst, LiftoffRegister src, ValueKind kind) Store() argument
397 StoreTaggedPointer(Register dst_addr, Register offset_reg, int32_t offset_imm, LiftoffRegister src, LiftoffRegList pinned, SkipWriteBarrier skip_write_barrier) StoreTaggedPointer() argument
492 Store(Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister src, StoreType type, LiftoffRegList , uint32_t* protected_store_pc, bool is_store_mem) Store() argument
526 AtomicStore(Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister src, StoreType type, LiftoffRegList pinned) AtomicStore() argument
856 StoreCallerFrameSlot(LiftoffRegister src, uint32_t caller_slot_idx, ValueKind kind) StoreCallerFrameSlot() argument
873 Operand src = liftoff::GetStackSlot(src_offset); MoveStackValue() local
892 Move(Register dst, Register src, ValueKind kind) Move() argument
902 Move(DoubleRegister dst, DoubleRegister src, ValueKind kind) Move() argument
1223 EmitShiftOperation(LiftoffAssembler* assm, Register dst, Register src, Register amount, void (Assembler::*emit_shift)(Register)) EmitShiftOperation() argument
1255 emit_i32_shl(Register dst, Register src, Register amount) emit_i32_shl() argument
1261 emit_i32_shli(Register dst, Register src, int32_t amount) emit_i32_shli() argument
1267 emit_i32_sar(Register dst, Register src, Register amount) emit_i32_sar() argument
1273 emit_i32_sari(Register dst, Register src, int32_t amount) emit_i32_sari() argument
1279 emit_i32_shr(Register dst, Register src, Register amount) emit_i32_shr() argument
1285 emit_i32_shri(Register dst, Register src, int32_t amount) emit_i32_shri() argument
1291 emit_i32_clz(Register dst, Register src) emit_i32_clz() argument
1295 emit_i32_ctz(Register dst, Register src) emit_i32_ctz() argument
1299 emit_i32_popcnt(Register dst, Register src) emit_i32_popcnt() argument
1420 emit_i64_shl(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shl() argument
1426 emit_i64_shli(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shli() argument
1432 emit_i64_sar(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_sar() argument
1438 emit_i64_sari(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_sari() argument
1444 emit_i64_shr(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shr() argument
1450 emit_i64_shri(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shri() argument
1456 emit_i64_clz(LiftoffRegister dst, LiftoffRegister src) emit_i64_clz() argument
1460 emit_i64_ctz(LiftoffRegister dst, LiftoffRegister src) emit_i64_ctz() argument
1464 emit_i64_popcnt(LiftoffRegister dst, LiftoffRegister src) emit_i64_popcnt() argument
1476 emit_u32_to_uintptr(Register dst, Register src) emit_u32_to_uintptr() argument
1616 emit_f32_abs(DoubleRegister dst, DoubleRegister src) emit_f32_abs() argument
1627 emit_f32_neg(DoubleRegister dst, DoubleRegister src) emit_f32_neg() argument
1638 emit_f32_ceil(DoubleRegister dst, DoubleRegister src) emit_f32_ceil() argument
1644 emit_f32_floor(DoubleRegister dst, DoubleRegister src) emit_f32_floor() argument
1650 emit_f32_trunc(DoubleRegister dst, DoubleRegister src) emit_f32_trunc() argument
1656 emit_f32_nearest_int(DoubleRegister dst, DoubleRegister src) emit_f32_nearest_int() argument
1663 emit_f32_sqrt(DoubleRegister dst, DoubleRegister src) emit_f32_sqrt() argument
1749 emit_f64_abs(DoubleRegister dst, DoubleRegister src) emit_f64_abs() argument
1760 emit_f64_neg(DoubleRegister dst, DoubleRegister src) emit_f64_neg() argument
1771 emit_f64_ceil(DoubleRegister dst, DoubleRegister src) emit_f64_ceil() argument
1777 emit_f64_floor(DoubleRegister dst, DoubleRegister src) emit_f64_floor() argument
1783 emit_f64_trunc(DoubleRegister dst, DoubleRegister src) emit_f64_trunc() argument
1789 emit_f64_nearest_int(DoubleRegister dst, DoubleRegister src) emit_f64_nearest_int() argument
1796 emit_f64_sqrt(DoubleRegister dst, DoubleRegister src) emit_f64_sqrt() argument
1805 ConvertFloatToIntAndBack(LiftoffAssembler* assm, Register dst, DoubleRegister src, DoubleRegister converted_back) ConvertFloatToIntAndBack() argument
1840 EmitTruncateFloatToInt(LiftoffAssembler* assm, Register dst, DoubleRegister src, Label* trap) EmitTruncateFloatToInt() argument
1872 EmitSatTruncateFloatToInt(LiftoffAssembler* assm, Register dst, DoubleRegister src) EmitSatTruncateFloatToInt() argument
1949 EmitSatTruncateFloatToUInt64(LiftoffAssembler* assm, Register dst, DoubleRegister src) EmitSatTruncateFloatToUInt64() argument
1991 emit_type_conversion(WasmOpcode opcode, LiftoffRegister dst, LiftoffRegister src, Label* trap) emit_type_conversion() argument
2108 emit_i32_signextend_i8(Register dst, Register src) emit_i32_signextend_i8() argument
2112 emit_i32_signextend_i16(Register dst, Register src) emit_i32_signextend_i16() argument
2116 emit_i64_signextend_i8(LiftoffRegister dst, LiftoffRegister src) emit_i64_signextend_i8() argument
2121 emit_i64_signextend_i16(LiftoffRegister dst, LiftoffRegister src) emit_i64_signextend_i16() argument
2126 emit_i64_signextend_i32(LiftoffRegister dst, LiftoffRegister src) emit_i64_signextend_i32() argument
2178 emit_i32_eqz(Register dst, Register src) emit_i32_eqz() argument
2193 emit_i64_eqz(Register dst, LiftoffRegister src) emit_i64_eqz() argument
2363 EmitAnyTrue(LiftoffAssembler* assm, LiftoffRegister dst, LiftoffRegister src) EmitAnyTrue() argument
2371 EmitAllTrue(LiftoffAssembler* assm, LiftoffRegister dst, LiftoffRegister src, base::Optional<CpuFeature> feature = base::nullopt) EmitAllTrue() argument
2430 LoadLane(LiftoffRegister dst, LiftoffRegister src, Register addr, Register offset_reg, uintptr_t offset_imm, LoadType type, uint8_t laneidx, uint32_t* protected_load_pc) LoadLane() argument
2449 StoreLane(Register dst, Register offset, uintptr_t offset_imm, LiftoffRegister src, StoreType type, uint8_t lane, uint32_t* protected_store_pc) StoreLane() argument
2513 emit_i8x16_popcnt(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_popcnt() argument
2519 emit_i8x16_splat(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_splat() argument
2524 emit_i16x8_splat(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_splat() argument
2529 emit_i32x4_splat(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_splat() argument
2535 emit_i64x2_splat(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_splat() argument
2541 emit_f32x4_splat(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_splat() argument
2546 emit_f64x2_splat(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_splat() argument
2846 emit_s128_not(LiftoffRegister dst, LiftoffRegister src) emit_s128_not() argument
2883 emit_i8x16_neg(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_neg() argument
2894 emit_v128_anytrue(LiftoffRegister dst, LiftoffRegister src) emit_v128_anytrue() argument
2899 emit_i8x16_alltrue(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_alltrue() argument
2904 emit_i8x16_bitmask(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_bitmask() argument
3013 emit_i16x8_neg(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_neg() argument
3024 emit_i16x8_alltrue(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_alltrue() argument
3029 emit_i16x8_bitmask(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_bitmask() argument
3150 emit_i16x8_extadd_pairwise_i8x16_s(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_extadd_pairwise_i8x16_s() argument
3156 emit_i16x8_extadd_pairwise_i8x16_u(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_extadd_pairwise_i8x16_u() argument
3193 emit_i32x4_neg(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_neg() argument
3204 emit_i32x4_alltrue(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_alltrue() argument
3209 emit_i32x4_bitmask(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_bitmask() argument
3305 emit_i32x4_extadd_pairwise_i16x8_s(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_extadd_pairwise_i16x8_s() argument
3310 emit_i32x4_extadd_pairwise_i16x8_u(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_extadd_pairwise_i16x8_u() argument
3367 emit_i64x2_neg(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_neg() argument
3372 emit_i64x2_alltrue(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_alltrue() argument
3464 emit_i64x2_bitmask(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_bitmask() argument
3469 emit_i64x2_sconvert_i32x4_low(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_sconvert_i32x4_low() argument
3474 emit_i64x2_sconvert_i32x4_high(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_sconvert_i32x4_high() argument
3479 emit_i64x2_uconvert_i32x4_low(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_uconvert_i32x4_low() argument
3484 emit_i64x2_uconvert_i32x4_high(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_uconvert_i32x4_high() argument
3489 emit_f32x4_abs(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_abs() argument
3494 emit_f32x4_neg(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_neg() argument
3499 emit_f32x4_sqrt(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_sqrt() argument
3504 emit_f32x4_ceil(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_ceil() argument
3511 emit_f32x4_floor(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_floor() argument
3518 emit_f32x4_trunc(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_trunc() argument
3525 emit_f32x4_nearest_int(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_nearest_int() argument
3580 emit_f64x2_abs(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_abs() argument
3585 emit_f64x2_neg(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_neg() argument
3590 emit_f64x2_sqrt(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_sqrt() argument
3595 emit_f64x2_ceil(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_ceil() argument
3602 emit_f64x2_floor(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_floor() argument
3609 emit_f64x2_trunc(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_trunc() argument
3616 emit_f64x2_nearest_int(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_nearest_int() argument
3671 emit_f64x2_convert_low_i32x4_s(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_convert_low_i32x4_s() argument
3676 emit_f64x2_convert_low_i32x4_u(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_convert_low_i32x4_u() argument
3681 emit_f64x2_promote_low_f32x4(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_promote_low_f32x4() argument
3686 emit_i32x4_sconvert_f32x4(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_sconvert_f32x4() argument
3691 emit_i32x4_uconvert_f32x4(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_uconvert_f32x4() argument
3727 emit_f32x4_sconvert_i32x4(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_sconvert_i32x4() argument
3732 emit_f32x4_uconvert_i32x4(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_uconvert_i32x4() argument
3750 emit_f32x4_demote_f64x2_zero(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_demote_f64x2_zero() argument
3787 emit_i16x8_sconvert_i8x16_low(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_sconvert_i8x16_low() argument
3792 emit_i16x8_sconvert_i8x16_high(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_sconvert_i8x16_high() argument
3797 emit_i16x8_uconvert_i8x16_low(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_uconvert_i8x16_low() argument
3802 emit_i16x8_uconvert_i8x16_high(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_uconvert_i8x16_high() argument
3807 emit_i32x4_sconvert_i16x8_low(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_sconvert_i16x8_low() argument
3812 emit_i32x4_sconvert_i16x8_high(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_sconvert_i16x8_high() argument
3817 emit_i32x4_uconvert_i16x8_low(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_uconvert_i16x8_low() argument
3822 emit_i32x4_uconvert_i16x8_high(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_uconvert_i16x8_high() argument
3827 emit_i32x4_trunc_sat_f64x2_s_zero(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_trunc_sat_f64x2_s_zero() argument
3833 emit_i32x4_trunc_sat_f64x2_u_zero(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_trunc_sat_f64x2_u_zero() argument
3860 emit_i8x16_abs(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_abs() argument
3865 emit_i16x8_abs(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_abs() argument
3870 emit_i32x4_abs(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_abs() argument
3875 emit_i64x2_abs(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_abs() argument
4172 emit_set_if_nan(Register dst, DoubleRegister src, ValueKind kind) emit_set_if_nan() argument
4186 emit_s128_set_if_nan(Register dst, LiftoffRegister src, Register tmp_gp, LiftoffRegister tmp_s128, ValueKind lane_kind) emit_s128_set_if_nan() argument
4210 const LiftoffAssembler::VarState& src = slot.src_; Construct() local
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/c_adapter/
H A Dmod.rs106 let src = &*(ptr as *const usize);
107 *src == tar_type.as_usize()
131 src: *mut SafeCffiWrapper<T>,
134 src.as_mut().map(|obj| {
141 src: *const SafeCffiWrapper<T>,
144 if let Some(obj) = src.as_ref() {
146 let wrapper = &*src;
154 src: *mut SafeCffiWrapper<T>,
157 if let Some(obj) = src.as_mut() {
159 let wrapper = &mut *src;
200 let mut src = 3; ut_wrapper() variables
[all...]
/third_party/elfutils/tests/
H A Drun-strip-reloc.sh39 testrun ${abs_top_builddir}/src/strip -o $outfile1 -f $debugfile1 $infile ||
42 testrun ${abs_top_builddir}/src/strip --reloc-debug-sections -o $outfile2 \
47 testrun ${abs_top_builddir}/src/readelf -a $outfile1 > readelf.out ||
50 testrun_compare ${abs_top_builddir}/src/readelf -a $outfile2 < readelf.out ||
62 testrun ${abs_top_builddir}/src/readelf -w $debugfile1 \
66 testrun ${abs_top_builddir}/src/readelf -w $debugfile2 \
73 testrun ${abs_top_builddir}/src/strip --reloc-debug-sections-only \
125 runtest ${abs_top_builddir}/src/strip 0
126 runtest ${abs_top_builddir}/src/strip.o 1
131 testrun ${abs_top_builddir}/src/elfcompres
[all...]
/third_party/ffmpeg/libavformat/
H A Dsdsdec.c30 void (*read_block)(const uint8_t *src, uint32_t *dst);
41 static void byte2_read(const uint8_t *src, uint32_t *dst) in byte2_read() argument
46 unsigned sample = ((unsigned)src[i + 0] << 25) + ((unsigned)src[i + 1] << 18); in byte2_read()
52 static void byte3_read(const uint8_t *src, uint32_t *dst) in byte3_read() argument
59 sample = ((unsigned)src[i + 0] << 25) | ((unsigned)src[i + 1] << 18) | ((unsigned)src[i + 2] << 11); in byte3_read()
64 static void byte4_read(const uint8_t *src, uint32_t *dst) in byte4_read() argument
71 sample = ((unsigned)src[ in byte4_read()
[all...]
/third_party/gn/src/base/strings/
H A Dutf_string_conversions.cc62 bool DoUTFConversion(const char* src, in DoUTFConversion() argument
70 CBU8_NEXT(src, i, src_len, code_point); in DoUTFConversion()
84 bool DoUTFConversion(const char16_t* src, in DoUTFConversion() argument
105 if (CBU16_IS_LEAD(src[i]) && CBU16_IS_TRAIL(src[i + 1])) { in DoUTFConversion()
106 code_point = CBU16_GET_SUPPLEMENTARY(src[i], src[i + 1]); in DoUTFConversion()
113 code_point = ConvertSingleChar(src[i]); in DoUTFConversion()
121 UnicodeAppendUnsafe(dest, dest_len, ConvertSingleChar(src[i])); in DoUTFConversion()
159 bool UTF8ToUTF16(const char* src, size_ argument
171 UTF16ToUTF8(const char16_t* src, size_t src_len, std::string* output) UTF16ToUTF8() argument
[all...]
/third_party/ffmpeg/libswscale/x86/
H A Drgb2rgb.c119 void ff_shuffle_bytes_2103_mmxext(const uint8_t *src, uint8_t *dst, int src_size);
120 void ff_shuffle_bytes_2103_ssse3(const uint8_t *src, uint8_t *dst, int src_size);
121 void ff_shuffle_bytes_0321_ssse3(const uint8_t *src, uint8_t *dst, int src_size);
122 void ff_shuffle_bytes_1230_ssse3(const uint8_t *src, uint8_t *dst, int src_size);
123 void ff_shuffle_bytes_3012_ssse3(const uint8_t *src, uint8_t *dst, int src_size);
124 void ff_shuffle_bytes_3210_ssse3(const uint8_t *src, uint8_t *dst, int src_size);
127 void ff_shuffle_bytes_2103_avx2(const uint8_t *src, uint8_t *dst, int src_size);
128 void ff_shuffle_bytes_0321_avx2(const uint8_t *src, uint8_t *dst, int src_size);
129 void ff_shuffle_bytes_1230_avx2(const uint8_t *src, uint8_t *dst, int src_size);
130 void ff_shuffle_bytes_3012_avx2(const uint8_t *src, uint8_
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestReorder.java120 String src, srcU16, dest = ""; in testReorder()
126 src = logicalOrder[testNumber]; in testReorder()
127 srcU16 = pseudoToU16(src); in testReorder()
142 testNumber, visualOrder[testNumber], dest, src, null, in testReorder()
145 checkWhatYouCan(bidi, src, dest); in testReorder()
150 src = logicalOrder[testNumber]; in testReorder()
151 srcU16 = pseudoToU16(src); in testReorder()
174 src = logicalOrder[testNumber]; in testReorder()
175 srcU16 = pseudoToU16(src); in testReorder()
200 src in testReorder()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/
H A DTestReorder.java123 String src, srcU16, dest = ""; in testReorder()
129 src = logicalOrder[testNumber]; in testReorder()
130 srcU16 = pseudoToU16(src); in testReorder()
145 testNumber, visualOrder[testNumber], dest, src, null, in testReorder()
148 checkWhatYouCan(bidi, src, dest); in testReorder()
153 src = logicalOrder[testNumber]; in testReorder()
154 srcU16 = pseudoToU16(src); in testReorder()
177 src = logicalOrder[testNumber]; in testReorder()
178 srcU16 = pseudoToU16(src); in testReorder()
203 src in testReorder()
[all...]

Completed in 17 milliseconds

1...<<31323334353637383940>>...340