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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
install-sh 72 dst=""
118 dst=$1
134 dst=$src
137 if [ -d "$dst" ]; then
157 if [ x"$dst" = x ]
168 if [ -d "$dst" ]
170 dst=$dst/`basename "$src"`
177 dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
213 $doit $instcmd "$dst" &
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
install-sh 72 dst=""
118 dst=$1
134 dst=$src
137 if [ -d "$dst" ]; then
157 if [ x"$dst" = x ]
168 if [ -d "$dst" ]
170 dst=$dst/`basename "$src"`
177 dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
213 $doit $instcmd "$dst" &
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_other.c 42 float *dst = dst_row; local
46 rgb9e5_to_float3(value, dst);
47 dst[3] = 1; /* a */
49 dst += 4;
64 uint8_t *dst = dst_row; local
67 *(uint32_t *)dst = value;
69 dst += 4;
77 util_format_r9g9b9e5_float_fetch_rgba_float(float *dst, const uint8_t *src,
81 rgb9e5_to_float3(value, dst);
82 dst[3] = 1; /* a *
94 uint8_t *dst = dst_row; local
121 uint8_t *dst = dst_row; local
145 float *dst = dst_row; local
167 uint8_t *dst = dst_row; local
197 uint8_t *dst = dst_row; local
224 uint8_t *dst = dst_row; local
308 float *dst = dst_row; local
336 uint8_t *dst = dst_row; local
365 uint16_t *dst = (uint16_t *)dst_row; local
391 uint16_t *dst = (uint16_t *)dst_row; local
    [all...]
u_format_etc.c 39 float *dst = dst_row + (y + j) * dst_stride / sizeof(*dst_row) + x * comps; local
44 dst[0] = ubyte_to_float(tmp[0]);
45 dst[1] = ubyte_to_float(tmp[1]);
46 dst[2] = ubyte_to_float(tmp[2]);
47 dst[3] = 1.0f;
48 dst += comps;
66 util_format_etc1_rgb8_fetch_rgba_float(float *dst, const uint8_t *src, unsigned i, unsigned j)
76 dst[0] = ubyte_to_float(tmp[0]);
77 dst[1] = ubyte_to_float(tmp[1]);
78 dst[2] = ubyte_to_float(tmp[2])
    [all...]
u_format_rgtc.c 32 util_format_rgtc1_unorm_fetch_rgba_8unorm(uint8_t *dst, const uint8_t *src, unsigned i, unsigned j)
34 util_format_unsigned_fetch_texel_rgtc(0, src, i, j, dst, 1);
35 dst[1] = 0;
36 dst[2] = 0;
37 dst[3] = 255;
52 uint8_t *dst = dst_row + (y + j)*dst_stride/sizeof(*dst_row) + (x + i)*comps; local
53 util_format_unsigned_fetch_texel_rgtc(0, src, i, j, dst, 1);
54 dst[1] = 0;
55 dst[2] = 0;
56 dst[3] = 255
73 uint8_t *dst = dst_row; local
98 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
120 uint8_t *dst = dst_row; local
171 int8_t *dst = (int8_t *)dst_row; local
196 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
244 uint8_t *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*comps; local
264 uint8_t *dst = dst_row; local
289 uint8_t *dst = dst_row; local
323 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
380 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
403 int8_t *dst = (int8_t *)dst_row; local
    [all...]
  /external/v8/src/
string-case.cc 16 bool CheckFastAsciiConvert(char* dst, const char* src, int length, bool changed,
20 if (dst[i] == src[i]) continue;
24 DCHECK(dst[i] == src[i] + ('a' - 'A'));
27 DCHECK(dst[i] == src[i] - ('a' - 'A'));
56 int FastAsciiConvert(char* dst, const char* src, int length,
59 char* saved_dst = dst;
72 // dst is newly allocated and always aligned.
73 DCHECK(IsAligned(reinterpret_cast<intptr_t>(dst), sizeof(uintptr_t)));
85 *reinterpret_cast<uintptr_t*>(dst) = w;
87 dst += sizeof(uintptr_t)
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_MixSoft_2St_D16C31_SAT.c 32 LVM_FLOAT *dst,
47 src2, dst, n);
51 src1, dst, n);
57 src1, dst, n);
59 src2, dst, n);
67 src1, src2, dst, n);
74 LVM_INT16 *dst,
86 LVC_MixSoft_1St_D16C31_SAT( (LVMixer3_1St_st *)(&ptrInstance->MixerStream[1]), src2, dst, n);
89 LVC_MixSoft_1St_D16C31_SAT( (LVMixer3_1St_st *)(&ptrInstance->MixerStream[0]), src1, dst, n);
93 LVC_MixSoft_1St_D16C31_SAT((LVMixer3_1St_st *)(&ptrInstance->MixerStream[0]), src1, dst, n)
    [all...]
  /external/speex/libspeex/
os_support.h 93 /** Copy n bytes of memory from src to dst. The 0* term provides compile-time type checking */
95 #define SPEEX_COPY(dst, src, n) (memcpy((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
98 /** Copy n bytes of memory from src to dst, allowing overlapping regions. The 0* term
101 #define SPEEX_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) )
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
InputPointersTests.java 108 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY); local
109 dst.set(src);
110 assertEquals("size after set", dst.getPointerSize(), src.getPointerSize());
111 assertSame("xCoordinates after set", dst.getXCoordinates(), src.getXCoordinates());
112 assertSame("yCoordinates after set", dst.getYCoordinates(), src.getYCoordinates());
113 assertSame("pointerIds after set", dst.getPointerIds(), src.getPointerIds());
114 assertSame("times after set", dst.getTimes(), src.getTimes());
127 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY); local
128 dst.copy(src);
129 assertEquals("size after copy", dst.getPointerSize(), src.getPointerSize())
147 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY); local
216 final InputPointers dst = new InputPointers(DEFAULT_CAPACITY); local
    [all...]
  /external/opencv/cxcore/src/
cxlogic.cpp 64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
70 if( (((size_t)src1 | (size_t)src2 | (size_t)dst) & 3) == 0 ) \
77 ((int*)(dst+i))[0] = t0; \
78 ((int*)(dst+i))[1] = t1; \
83 ((int*)(dst+i))[2] = t0; \
84 ((int*)(dst+i))[3] = t1; \
90 *(int*)(dst+i) = t; \
97 dst[i] = (uchar)t;
190 CvMat dststub, *dst = (CvMat*)dstarr; local
354 CvMat dststub, *dst = (CvMat*)dstarr; local
624 CvMat dststub, *dst = (CvMat*)dstarr; local
    [all...]
cxlut.cpp 53 dst[i] = t0; \
54 dst[i+1] = t1; \
58 dst[i+2] = t0; \
59 dst[i+3] = t1; \
65 dst[i] = t0; \
74 dst[i] = t0; \
75 dst[i+1] = t1; \
84 dst[i] = t0; \
85 dst[i+1] = t1; \
86 dst[i+2] = t2;
224 CvMat dststub, *dst = (CvMat*)dstarr; local
    [all...]
  /external/skia/src/utils/
SkFrontBufferedStream.cpp 47 // dst, if non-nullptr. Updates fOffset. Assumes that fOffset is less
49 size_t readFromBuffer(char* dst, size_t size);
51 // Buffer up to size bytes from the stream, and copy to dst if non-
54 size_t bufferAndWriteTo(char* dst, size_t size);
56 // Read up to size bytes directly from the stream and into dst if non-
59 size_t readDirectlyFromStream(char* dst, size_t size);
101 size_t FrontBufferedStream::readFromBuffer(char* dst, size_t size) {
107 if (dst != nullptr) {
108 memcpy(dst, fBuffer + fOffset, bytesToCopy);
119 size_t FrontBufferedStream::bufferAndWriteTo(char* dst, size_t size)
176 char* dst = reinterpret_cast<char*>(voidDst); local
    [all...]
  /external/skqp/src/utils/
SkFrontBufferedStream.cpp 47 // dst, if non-nullptr. Updates fOffset. Assumes that fOffset is less
49 size_t readFromBuffer(char* dst, size_t size);
51 // Buffer up to size bytes from the stream, and copy to dst if non-
54 size_t bufferAndWriteTo(char* dst, size_t size);
56 // Read up to size bytes directly from the stream and into dst if non-
59 size_t readDirectlyFromStream(char* dst, size_t size);
101 size_t FrontBufferedStream::readFromBuffer(char* dst, size_t size) {
107 if (dst != nullptr) {
108 memcpy(dst, fBuffer + fOffset, bytesToCopy);
119 size_t FrontBufferedStream::bufferAndWriteTo(char* dst, size_t size)
176 char* dst = reinterpret_cast<char*>(voidDst); local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
opcodes.s 13 add *ar2+, 16, a ; Smem, 16, src [,dst]
14 add *ar3+, a, b ; Smem [,SHIFT], src [,dst] (-16<=SHIFT<=15)
17 add *ar3+, *ar4+, a ; Xmem, Ymem, dst
18 add #-32768, a ; #lk [,SHFT], src [,dst] (-32768<=lk<=32767)
20 add #0,16,a,b ; #lk, 16, src, [,dst]
22 add a,-16,b ; src [,SHIFT][,dst]
23 add a,asm,b ; src, ASM [,dst]
29 and #1,1,a,b ; #lk[,SHFT],src[,dst]
31 and #1,#16,a,b ; #lk,16,src[,dst]
33 and a ; src[,SHIFT][,dst]
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 165 struct rc_dst_register * dst,
168 dst->File = translate_register_file(src->Register.File);
169 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index);
170 dst->WriteMask = src->Register.WriteMask;
181 struct rc_src_register * dst,
186 dst->File = translate_register_file(src->Register.File);
187 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index);
188 dst->RelAddr = src->Register.Indirect;
189 dst->Swizzle = tgsi_util_get_full_src_register_swizzle(src, 0);
190 dst->Swizzle |= tgsi_util_get_full_src_register_swizzle(src, 1) << 3
252 struct rc_instruction * dst; local
    [all...]
  /art/libartbase/base/unix_file/
random_access_file_utils.cc 25 bool CopyFile(const RandomAccessFile& src, RandomAccessFile* dst) {
32 if (dst->Write(&buf[0], n, offset) != n) {
  /bionic/libc/bionic/
string_l.cpp 40 size_t strxfrm_l(char* dst, const char* src, size_t n, locale_t) {
41 return strxfrm(dst, src, n);
  /device/google/contexthub/firmware/lib/libc/
memset.c 67 u_char *dst; local
69 dst = dst0;
78 * dst dst+length-1
85 *dst++ = VAL;
103 if ((t = (long)dst & wmask) != 0) {
107 *dst++ = VAL;
114 *(u_int *)dst = WIDEVAL;
115 dst += wsize;
122 *dst++ = VAL
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
wcsftime.c 61 char *dst, *dstp, *sformat; local
65 sformat = dst = NULL;
89 dst = malloc(maxsize * MB_CUR_MAX);
90 if (dst == NULL)
92 if (strftime(dst, maxsize, sformat, timeptr) == 0)
94 dstp = dst;
100 free(dst);
106 free(dst);
  /external/deqp/execserver/
xsPosixFileReader.hpp 45 int read (deUint8* dst, int numBytes) { return m_buf.tryRead(numBytes, dst); }
  /external/deqp/framework/egl/wrapper/
eglwFunctions.hpp 55 void initCore (Functions* dst, const FunctionLoader* loader);
56 void initExtensions (Functions* dst, const FunctionLoader* loader);
  /external/fio/os/windows/posix/include/arpa/
inet.h 16 char *restrict dst, socklen_t size);
17 int inet_pton(int af, const char *restrict src, void *restrict dst);
  /external/kmod/testsuite/
populate-modules.sh 70 dst=${ROOTFS}/$k
73 if test "${dst: -1}" = "/"; then
74 install -d $dst
75 install -t $dst $src
77 install -D $src $dst
  /external/libnfnetlink/src/
iftable.h 4 int iftable_delete(u_int32_t dst, u_int32_t mask, u_int32_t gw, u_int32_t oif);
5 int iftable_insert(u_int32_t dst, u_int32_t mask, u_int32_t gw, u_int32_t oif);
  /external/libvpx/libvpx/vp8/common/arm/neon/
idct_blk_neon.c 17 void idct_dequant_full_2x_neon(short *q, short *dq, unsigned char *dst,
19 void idct_dequant_0_2x_neon(short *q, short dq, unsigned char *dst, int stride);
21 void vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst,
28 idct_dequant_full_2x_neon(q, dq, dst, stride);
30 idct_dequant_0_2x_neon(q, dq[0], dst, stride);
35 idct_dequant_full_2x_neon(q + 32, dq, dst + 8, stride);
37 idct_dequant_0_2x_neon(q + 32, dq[0], dst + 8, stride);
40 dst += 4 * stride;

Completed in 813 milliseconds

<<11121314151617181920>>