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

1 2 3 45 6 7 8 91011>>

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Mult3s_32x16.c 31 LVM_INT32 *dst,
44 *dst = temp;
45 dst++;
53 LVM_FLOAT *dst,
63 *dst = temp;
64 dst++;
  /libcore/benchmarks/src/benchmarks/
ArrayCopyBenchmark.java 25 char[] dst = new char[8192]; local
27 dst[i] = src[i];
35 char[] dst = new char[8192]; local
36 System.arraycopy(src, 0, dst, 0, 8192);
43 char[] dst = Arrays.copyOf(src, 8192); local
50 char[] dst = Arrays.copyOfRange(src, 0, 8192); local
  /system/media/audio_utils/
primitives.c 30 void memcpy_to_i16_from_q4_27(int16_t *dst, const int32_t *src, size_t count)
33 *dst++ = clamp16(*src++ >> 12);
37 void memcpy_to_i16_from_u8(int16_t *dst, const uint8_t *src, size_t count)
39 dst += count;
42 *--dst = (int16_t)(*--src - 0x80) << 8;
46 void memcpy_to_u8_from_i16(uint8_t *dst, const int16_t *src, size_t count)
49 *dst++ = (*src++ >> 8) + 0x80;
53 void memcpy_to_u8_from_float(uint8_t *dst, const float *src, size_t count)
56 *dst++ = clamp8_from_float(*src++);
60 void memcpy_to_i16_from_i32(int16_t *dst, const int32_t *src, size_t count
    [all...]
  /hardware/interfaces/sensors/1.0/default/
convert.cpp 27 void convertFromSensor(const sensor_t &src, SensorInfo *dst) {
28 dst->name = src.name;
29 dst->vendor = src.vendor;
30 dst->version = src.version;
31 dst->sensorHandle = src.handle;
32 dst->type = (SensorType)src.type;
33 dst->maxRange = src.maxRange;
34 dst->resolution = src.resolution;
35 dst->power = src.power;
36 dst->minDelay = src.minDelay
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/mmi/
copymem_mmi.c 20 "gssdlc1 %[ftmp0], 0x07(%[dst]) \n\t" \
21 "gssdrc1 %[ftmp0], 0x00(%[dst]) \n\t" \
22 "sdl %[tmp0], 0x0f(%[dst]) \n\t" \
23 "sdr %[tmp0], 0x08(%[dst]) \n\t" \
24 MMI_ADDU(%[dst], %[dst], %[dst_stride]) \
30 "gssdlc1 %[ftmp1], 0x07(%[dst]) \n\t" \
31 "gssdrc1 %[ftmp1], 0x00(%[dst]) \n\t" \
32 "sdl %[tmp1], 0x0f(%[dst]) \n\t" \
33 "sdr %[tmp1], 0x08(%[dst]) \n\t"
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_blend_logicop.c 47 LLVMValueRef dst)
59 res = LLVMBuildNot(builder, LLVMBuildOr(builder, src, dst, ""), "");
62 res = LLVMBuildAnd(builder, LLVMBuildNot(builder, src, ""), dst, "");
68 res = LLVMBuildAnd(builder, src, LLVMBuildNot(builder, dst, ""), "");
71 res = LLVMBuildNot(builder, dst, "");
74 res = LLVMBuildXor(builder, src, dst, "");
77 res = LLVMBuildNot(builder, LLVMBuildAnd(builder, src, dst, ""), "");
80 res = LLVMBuildAnd(builder, src, dst, "");
83 res = LLVMBuildNot(builder, LLVMBuildXor(builder, src, dst, ""), "");
86 res = dst;
    [all...]
  /external/opencv/cv/src/
_cvmatrix.h 45 #define icvCopyVector( src, dst, len ) memcpy( (dst), (src), (len)*sizeof((dst)[0]))
46 #define icvSetZero( dst, len ) memset( (dst), 0, (len)*sizeof((dst)[0]))
48 #define icvCopyVector_32f( src, len, dst ) memcpy((dst),(src),(len)*sizeof(float))
49 #define icvSetZero_32f( dst, cols, rows ) memset((dst),0,(rows)*(cols)*sizeof(float)
    [all...]
  /external/v8/src/ia32/
assembler-ia32.h 597 void pop(Register dst);
598 void pop(const Operand& dst);
604 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); }
605 void mov_b(Register dst, const Operand& src);
606 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); }
607 void mov_b(const Operand& dst, int8_t src) { mov_b(dst, Immediate(src)); }
608 void mov_b(const Operand& dst, const Immediate& src)
    [all...]
  /art/libartbase/base/
strlcpy.h 31 static inline size_t strlcpy(char* dst, const char* src, size_t size) {
33 return snprintf(dst, size, "%s", src);
  /art/test/646-checker-arraycopy-large-cst-pos/src/
Main.java 30 Object[] dst = new Object[2048]; local
34 System.arraycopy(src, 0, dst, 1024, 64);
  /bionic/libc/bionic/
wmempcpy.cpp 31 wchar_t* wmempcpy(wchar_t* dst, const wchar_t* src, size_t n) {
32 return wmemcpy(dst, src, n) + n;
  /build/make/core/
distdir.mk 33 # A global variable to remember all dist'ed src:dst pairs.
34 # So if a src:dst is already dist'ed by another goal,
51 $(eval dst := $(word 2,$(fw))) \
52 $(eval dst := $(if $(dst),$(dst),$(notdir $(src)))) \
53 $(if $(filter $(_all_dist_src_dst_pairs),$(src):$(dst)),\
54 $(eval $(call add-dependency,$(1),$(DIST_DIR)/$(dst))),\
56 $(src),$(DIST_DIR)/$(dst),$(1)))\
57 $(eval _all_dist_src_dst_pairs += $(src):$(dst))\
    [all...]
  /external/e2fsprogs/lib/uuid/
copy.c 38 void uuid_copy(uuid_t dst, const uuid_t src)
44 for (i=0, cp1 = dst, cp2 = src; i < 16; i++)
  /external/libvpx/libvpx/vp9/encoder/
vp9_extend.h 22 YV12_BUFFER_CONFIG *dst);
25 YV12_BUFFER_CONFIG *dst, int srcy,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_lower_d2x.cpp 39 if (inst->dst.type != BRW_REGISTER_TYPE_F &&
40 inst->dst.type != BRW_REGISTER_TYPE_D &&
41 inst->dst.type != BRW_REGISTER_TYPE_UD)
47 assert(inst->dst.file == VGRF);
49 fs_reg dst = inst->dst; local
64 fs_reg strided_temp = subscript(temp, inst->dst.type, 0);
66 ibld.MOV(dst, strided_temp);
  /external/syslinux/com32/lib/
stpcpy.c 9 char *stpcpy(char *dst, const char *src)
11 char *q = dst;
stpncpy.c 9 char *stpncpy(char *dst, const char *src, size_t n)
11 char *q = dst;
  /external/tensorflow/tensorflow/core/framework/
bfloat16.h 57 void FloatToBFloat16(const float* src, bfloat16* dst, int64 size);
58 void BFloat16ToFloat(const bfloat16* src, float* dst, int64 size);
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 34 LVM_FLOAT *dst,
38 LVM_INT16 *dst,
42 LVM_INT32 *dst,
48 LVM_FLOAT *dst,
52 LVM_INT16 *dst,
67 LVM_FLOAT *dst,
72 LVM_INT16 *dst,
86 LVM_INT32 *dst,
92 LVM_FLOAT *dst, /* Source/destination */
99 LVM_INT16 *dst,
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 43 * Copies {@code byteCount} bytes from the current position into {@code dst}, starting at
48 public abstract void readByteArray(byte[] dst, int dstOffset, int byteCount);
65 * Copies {@code intCount} 32-bit ints from the current position into {@code dst}, starting at
70 public abstract void readIntArray(int[] dst, int dstOffset, int intCount);
  /external/pcre/dist2/src/sljit/
sljitNativeSPARC_32.c 27 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw imm)
30 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst));
32 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((imm >> 10) & 0x3fffff), DR(dst)));
33 return (imm & 0x3ff) ? push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (imm & 0x3ff), DR(dst)) : SLJIT_SUCCESS;
39 sljit_s32 dst, sljit_s32 src1, sljit_sw src2)
49 if (dst != src2
    [all...]
  /external/deqp/framework/referencerenderer/
rrVertexAttrib.cpp 60 inline void readOrder (typename tcu::Vector<DstScalarType, 4>& dst, const int size, const void* ptr)
65 dst[Order::T0] = DstScalarType(aligned[0]);
66 if (size >= 2) dst[Order::T1] = DstScalarType(aligned[1]);
67 if (size >= 3) dst[Order::T2] = DstScalarType(aligned[2]);
68 if (size >= 4) dst[Order::T3] = DstScalarType(aligned[3]);
72 inline void readUnormOrder (tcu::Vec4& dst, const int size, const void* ptr)
79 dst[Order::T0] = float(aligned[0]) / float(range);
80 if (size >= 2) dst[Order::T1] = float(aligned[1]) / float(range);
81 if (size >= 3) dst[Order::T2] = float(aligned[2]) / float(range);
82 if (size >= 4) dst[Order::T3] = float(aligned[3]) / float(range)
    [all...]
  /external/icu/icu4c/source/common/
cpputils.h 28 inline void uprv_arrayCopy(const double* src, double* dst, int32_t count)
29 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); }
33 double* dst, int32_t dstStart, int32_t count)
34 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); }
37 inline void uprv_arrayCopy(const int8_t* src, int8_t* dst, int32_t count)
38 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); }
42 int8_t* dst, int32_t dstStart, int32_t count)
43 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); }
46 inline void uprv_arrayCopy(const int16_t* src, int16_t* dst, int32_t count)
47 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src));
    [all...]
  /external/libxml2/os400/
xmlcatlgcl.c 82 vary4nappend(vary4 * dst, const char * src, size_t len)
85 if (len > sizeof(dst->string) - dst->len)
86 len = sizeof(dst->string) - dst->len;
89 memcpy(dst->string + dst->len, src, len);
90 dst->len += len;
96 vary4append(vary4 * dst, const char * src)
99 vary4nappend(dst, src, strlen(src))
    [all...]
  /art/libartbase/base/unix_file/
random_access_file_utils.h 24 // Copies from 'src' to 'dst'. Reads all the data from 'src', and writes it
25 // to 'dst'. Not thread-safe. Neither file will be closed.
26 bool CopyFile(const RandomAccessFile& src, RandomAccessFile* dst);

Completed in 845 milliseconds

1 2 3 45 6 7 8 91011>>