HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 276 - 300 of 6525) sorted by null

<<11121314151617181920>>

  /external/libvpx/libvpx/vp8/common/mips/msa/
copymem_msa.c 14 static void copy_8x4_msa(uint8_t *src, int32_t src_stride, uint8_t *dst,
19 SD4(src0, src1, src2, src3, dst, dst_stride);
22 static void copy_8x8_msa(uint8_t *src, int32_t src_stride, uint8_t *dst,
28 SD4(src0, src1, src2, src3, dst, dst_stride);
29 dst += (4 * dst_stride);
32 SD4(src0, src1, src2, src3, dst, dst_stride);
35 static void copy_16x16_msa(uint8_t *src, int32_t src_stride, uint8_t *dst,
44 ST_UB8(src0, src1, src2, src3, src4, src5, src6, src7, dst, dst_stride);
45 dst += (8 * dst_stride);
46 ST_UB8(src8, src9, src10, src11, src12, src13, src14, src15, dst, dst_stride)
    [all...]
  /external/libvpx/libvpx/vpx_scale/
vpx_scale.h 16 extern void vpx_scale_frame(YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_lower_pack.cpp 39 assert(inst->dst.file == VGRF);
41 fs_reg dst = inst->dst; local
45 ibld.MOV(subscript(dst, inst->src[i].type, i), inst->src[i]);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.h 31 void *dst, unsigned dst_pitch,
35 void *dst, unsigned dst_pitch,
  /external/strace/tests/
hexdump_strdup.c 42 char *dst = malloc(dst_size); local
43 if (!dst)
46 char *p = dst;
59 return dst;
hexquote_strndup.c 42 char *dst = malloc(dst_size); local
43 if (!dst)
46 char *p = dst;
57 return dst;
  /external/strace/tests-m32/
hexdump_strdup.c 42 char *dst = malloc(dst_size); local
43 if (!dst)
46 char *p = dst;
59 return dst;
hexquote_strndup.c 42 char *dst = malloc(dst_size); local
43 if (!dst)
46 char *p = dst;
57 return dst;
  /external/strace/tests-mx32/
hexdump_strdup.c 42 char *dst = malloc(dst_size); local
43 if (!dst)
46 char *p = dst;
59 return dst;
hexquote_strndup.c 42 char *dst = malloc(dst_size); local
43 if (!dst)
46 char *p = dst;
57 return dst;
  /external/valgrind/memcheck/tests/solaris/
strlcpy.c 18 char *dst = malloc(10); local
19 if (dst == NULL) {
25 copied = strlcpy(dst, src, 10);
29 /* Here dst is not large enough. */
30 copied = strlcpy(dst, src, strlen(src) + 1);
  /external/webrtc/webrtc/modules/video_processing/test/
denoiser_test.cc 23 uint8_t src[16 * 16], dst[16 * 16]; local
30 memset(dst, 0, 8 * 8);
31 df_c->CopyMem8x8(src, 8, dst, 8);
32 EXPECT_EQ(0, memcmp(src, dst, 8 * 8));
34 memset(dst, 0, 16 * 16);
35 df_c->CopyMem16x16(src, 16, dst, 16);
36 EXPECT_EQ(0, memcmp(src, dst, 16 * 16));
38 memset(dst, 0, 8 * 8);
39 df_sse_neon->CopyMem16x16(src, 8, dst, 8);
40 EXPECT_EQ(0, memcmp(src, dst, 8 * 8))
50 uint8_t src[16 * 16], dst[16 * 16]; local
73 uint8_t running_src[16 * 16], src[16 * 16], dst[16 * 16], dst_ref[16 * 16]; local
    [all...]
  /hardware/interfaces/camera/device/3.4/default/
convert.cpp 34 void convertToHidl(const Camera3Stream* src, HalStream* dst) {
35 V3_3::implementation::convertToHidl(src, &dst->v3_3);
36 dst->physicalCameraId = src->physical_camera_id;
39 void convertToHidl(const camera3_stream_configuration_t& src, HalStreamConfiguration* dst) {
40 dst->streams.resize(src.num_streams);
42 convertToHidl(static_cast<Camera3Stream*>(src.streams[i]), &dst->streams[i]);
47 void convertFromHidl(const Stream &src, Camera3Stream* dst) {
48 V3_2::implementation::convertFromHidl(src.v3_2, dst);
50 dst->physical_camera_id = nullptr;
  /hardware/interfaces/sensors/1.0/default/include/sensors/
convert.h 30 void convertFromSensor(const sensor_t &src, SensorInfo *dst);
31 void convertToSensor(const SensorInfo &src, sensor_t *dst);
33 void convertFromSensorEvent(const sensors_event_t &src, Event *dst);
34 void convertToSensorEvent(const Event &src, sensors_event_t *dst);
  /libcore/benchmarks/src/benchmarks/regression/
ByteBufferScalarVersusVectorBenchmark.java 29 ByteBuffer dst = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
32 dst.position(0);
34 dst.put(src.get());
41 byte[] dst = new byte[8192];
44 src.get(dst, 0, dst.length);
50 byte[] dst = new byte[8192];
53 src.get(dst, 0, dst.length);
  /system/bt/osi/include/
compat.h 31 /* Copy src to string dst of size siz. */
32 size_t strlcpy(char* dst, const char* src, size_t siz);
34 /* Appends src to string dst of size siz. */
35 size_t strlcat(char* dst, const char* src, size_t siz);
  /system/extras/memcpy-perf/
test-funcs.cpp 3 void __attribute__((noinline)) memcpy_noinline(void *dst, void *src, size_t size)
5 memcpy(dst,src,size);
8 void __attribute__((noinline)) memset_noinline(void *dst, int value, size_t size)
10 memset(dst, value, size);
  /external/v8/src/x64/
macro-assembler-x64.cc 268 Register dst,
286 leap(dst, FieldOperand(object, offset));
289 testb(dst, Immediate((1 << kPointerSizeLog2) - 1));
295 RecordWrite(object, dst, value, save_fp, remembered_set_action,
304 Move(dst, kZapValue, Assembler::RelocInfoNone());
327 Register dst = index; local
328 leap(dst, Operand(object, index, times_pointer_size,
331 RecordWrite(object, dst, value, save_fp, remembered_set_action,
347 Register dst,
351 DCHECK(!object.is(dst));
397 RecordWriteStub stub(isolate(), object, map, dst, OMIT_REMEMBERED_SET, local
527 const Register dst = scratch; local
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
msp430-dis.c 206 int dst = 0; local
222 case 0: /* Emulated work with dst register. */
258 if (msp430dis_opcode_signed (addr + 2, info, &dst, comm))
262 sprintf (op, "0x%04x", dst);
264 PS ((short) (addr + 2) + dst));
267 dst |= extended_dst << 16;
268 sprintf (op, "0x%05x", dst);
270 (long)((addr + 2 + dst) & 0xfffff));
277 if (msp430dis_opcode_signed (addr + 2, info, &dst, comm))
281 sprintf (op, "&0x%04x", PS (dst));
450 int dst = 0; local
782 int dst = 0; local
886 int dst = 0; local
    [all...]
  /external/valgrind/none/tests/s390x/
cu24.stdout.exp 5 dst len: 0
11 dst address difference: 0 dst len: 4000
15 dst address difference: 0 dst len: 4000
19 dst address difference: 0 dst len: 4000
23 dst address difference: 0 dst len: 4000
27 dst address difference: 0 dst len: 400
    [all...]
cu24_1.stdout.exp 5 dst len: 0
11 dst address difference: 0 dst len: 4000
15 dst address difference: 0 dst len: 4000
19 dst address difference: 0 dst len: 4000
23 dst address difference: 0 dst len: 4000
27 dst address difference: 0 dst len: 400
    [all...]
cu12.stdout.exp 7 dst address difference: 12 dst len: 1988
14 dst address difference: 0 dst len: 2000
19 dst address difference: 0 dst len: 2000
24 dst address difference: 0 dst len: 2000
29 dst address difference: 0 dst len: 200
    [all...]
  /external/skia/src/opts/
SkSwizzler_opts.h 21 static void RGBA_to_rgbA_portable(uint32_t* dst, const void* vsrc, int count) {
31 dst[i] = (uint32_t)a << 24
38 static void RGBA_to_bgrA_portable(uint32_t* dst, const void* vsrc, int count) {
48 dst[i] = (uint32_t)a << 24
55 static void RGBA_to_BGRA_portable(uint32_t* dst, const void* vsrc, int count) {
62 dst[i] = (uint32_t)a << 24
69 static void RGB_to_RGB1_portable(uint32_t dst[], const void* vsrc, int count) {
76 dst[i] = (uint32_t)0xFF << 24
83 static void RGB_to_BGR1_portable(uint32_t dst[], const void* vsrc, int count) {
90 dst[i] = (uint32_t)0xFF << 2
    [all...]
  /external/skqp/src/opts/
SkSwizzler_opts.h 21 static void RGBA_to_rgbA_portable(uint32_t* dst, const void* vsrc, int count) {
31 dst[i] = (uint32_t)a << 24
38 static void RGBA_to_bgrA_portable(uint32_t* dst, const void* vsrc, int count) {
48 dst[i] = (uint32_t)a << 24
55 static void RGBA_to_BGRA_portable(uint32_t* dst, const void* vsrc, int count) {
62 dst[i] = (uint32_t)a << 24
69 static void RGB_to_RGB1_portable(uint32_t dst[], const void* vsrc, int count) {
76 dst[i] = (uint32_t)0xFF << 24
83 static void RGB_to_BGR1_portable(uint32_t dst[], const void* vsrc, int count) {
90 dst[i] = (uint32_t)0xFF << 2
    [all...]
  /external/swiftshader/src/Shader/
ShaderCore.hpp 222 void mov(Vector4f &dst, const Vector4f &src, bool integerDestination = false);
223 void neg(Vector4f &dst, const Vector4f &src);
224 void ineg(Vector4f &dst, const Vector4f &src);
225 void f2b(Vector4f &dst, const Vector4f &src);
226 void b2f(Vector4f &dst, const Vector4f &src);
227 void f2i(Vector4f &dst, const Vector4f &src);
228 void i2f(Vector4f &dst, const Vector4f &src);
229 void f2u(Vector4f &dst, const Vector4f &src);
230 void u2f(Vector4f &dst, const Vector4f &src);
231 void i2b(Vector4f &dst, const Vector4f &src)
    [all...]

Completed in 611 milliseconds

<<11121314151617181920>>