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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Tools/android/flex-2.5.4a/
install.sh 38 dst=""
69 dst=$1
82 if [ x"$dst" = x ]
92 if [ -d $dst ]
94 dst="$dst"/`basename $src`
99 dstdir=`dirname $dst`
115 $doit $rmcmd $dst
116 $doit $mvcmd $dsttmp $dst
  /libcore/luni/src/main/java/libcore/io/
Memory.java 32 * Used to optimize nio heap buffer bulk get operations. 'dst' must be a primitive array.
35 public static native void unsafeBulkGet(Object dst, int dstOffset, int byteCount,
42 public static native void unsafeBulkPut(byte[] dst, int dstOffset, int byteCount,
91 public static void pokeInt(byte[] dst, int offset, int value, ByteOrder order) {
93 dst[offset++] = (byte) ((value >> 24) & 0xff);
94 dst[offset++] = (byte) ((value >> 16) & 0xff);
95 dst[offset++] = (byte) ((value >> 8) & 0xff);
96 dst[offset ] = (byte) ((value >> 0) & 0xff);
98 dst[offset++] = (byte) ((value >> 0) & 0xff);
99 dst[offset++] = (byte) ((value >> 8) & 0xff)
    [all...]
  /external/kernel-headers/original/linux/
bitmap.h 30 * bitmap_zero(dst, nbits) *dst = 0UL
31 * bitmap_fill(dst, nbits) *dst = ~0UL
32 * bitmap_copy(dst, src, nbits) *dst = *src
33 * bitmap_and(dst, src1, src2, nbits) *dst = *src1 & *src2
34 * bitmap_or(dst, src1, src2, nbits) *dst = *src1 | *src
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 647 Register dst,
650 emit_rex_64(dst);
653 emit_modrm(subcode, dst);
655 } else if (dst.is(rax)) {
660 emit_modrm(subcode, dst);
666 const Operand& dst,
669 emit_rex_64(dst);
672 emit_operand(subcode, dst);
676 emit_operand(subcode, dst);
683 Register dst,
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixInSoft_D16C31_SAT.c 31 LVM_INT16 *dst,
58 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 */
60 *dst++ = 0x7FFF;
62 *dst++ = - 0x8000;
64 *dst++ = (LVM_INT16)Temp;
77 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 */
79 *dst++ = 0x7FFF;
81 *dst++ = - 0x8000;
83 *dst++ = (LVM_INT16)Temp;
96 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 *
    [all...]
LVC_MixSoft_2St_D16C31_SAT.c 32 LVM_INT16 *dst,
44 LVC_MixSoft_1St_D16C31_SAT( (LVMixer3_1St_st *)(&ptrInstance->MixerStream[1]), src2, dst, n);
47 LVC_MixSoft_1St_D16C31_SAT( (LVMixer3_1St_st *)(&ptrInstance->MixerStream[0]), src1, dst, n);
51 LVC_MixSoft_1St_D16C31_SAT((LVMixer3_1St_st *)(&ptrInstance->MixerStream[0]), src1, dst, n);
52 LVC_MixInSoft_D16C31_SAT( (LVMixer3_1St_st *)(&ptrInstance->MixerStream[1]), src2, dst, n);
62 Shift_Sat_v16xv16 ((LVM_INT16)pInstance1->Shift,src1,dst,n);
63 LVC_Core_MixHard_2St_D16C31_SAT( &ptrInstance->MixerStream[0], &ptrInstance->MixerStream[1], dst, src2, dst, n);
66 LVC_Core_MixHard_2St_D16C31_SAT( &ptrInstance->MixerStream[0], &ptrInstance->MixerStream[1], src1, src2, dst, n);
Mac3s_Sat_32x16.c 31 LVM_INT32 *dst,
45 dInVal = *dst;
61 *dst = dOutVal;
62 dst++;
  /external/skia/src/core/
SkBlitter_A1.cpp 32 uint8_t* dst = fDevice.getAddr1(x, y); local
51 *dst |= (left_mask & rite_mask);
53 *dst++ |= left_mask;
54 memset(dst, 0xFF, full_runs);
55 dst += full_runs;
56 *dst |= rite_mask;
SkCubicClipper.cpp 121 bool SkCubicClipper::clipCubic(const SkPoint srcPts[4], SkPoint dst[4]) {
126 dst[0] = srcPts[3];
127 dst[1] = srcPts[2];
128 dst[2] = srcPts[1];
129 dst[3] = srcPts[0];
132 memcpy(dst, srcPts, 4 * sizeof(SkPoint));
139 if (dst[3].fY <= ctop || dst[0].fY >= cbot) {
147 if (dst[0].fY < ctop && chopMonoCubicAtY(dst, ctop, &t))
    [all...]
SkCubicClipper.h 35 bool clipCubic(const SkPoint src[4], SkPoint dst[4]);
  /external/skia/tests/
ClipperTest.cpp 16 SkPoint dst[2]; local
31 bool valid = SkLineClipper::IntersectLine(&gEmpty[i], gR, dst);
33 SkDebugf("----- [%d] %g %g -> %g %g\n", i/2, dst[0].fX, dst[0].fY, dst[1].fX, dst[1].fY);
55 bool valid = SkLineClipper::IntersectLine(&gFull[i], gR, dst);
56 if (!valid || memcmp(&gFull[i], dst, sizeof(dst))) {
57 SkDebugf("++++ [%d] %g %g -> %g %g\n", i/2, dst[0].fX, dst[0].fY, dst[1].fX, dst[1].fY)
    [all...]
  /external/valgrind/main/none/tests/linux/
mremap2.stdout.exp 6 maymv 0 fixed 0 newsz 19 dstpo 0 dst 0x........ ->
12 maymv 0 fixed 0 newsz 19 dstpo 1 dst 0x........ ->
18 maymv 0 fixed 0 newsz 20 dstpo 0 dst 0x........ ->
24 maymv 0 fixed 0 newsz 20 dstpo 1 dst 0x........ ->
30 maymv 0 fixed 0 newsz 21 dstpo 0 dst 0x........ ->
36 maymv 0 fixed 0 newsz 21 dstpo 1 dst 0x........ ->
42 maymv 0 fixed 0 newsz 29 dstpo 0 dst 0x........ ->
48 maymv 0 fixed 0 newsz 29 dstpo 1 dst 0x........ ->
54 maymv 0 fixed 0 newsz 30 dstpo 0 dst 0x........ ->
60 maymv 0 fixed 0 newsz 30 dstpo 1 dst 0x........ ->
    [all...]
  /external/webkit/Source/WebKit/android/plugins/
SkANP.h 69 static SkRect* SetRect(SkRect* dst, const ANPRectF& src);
70 static SkIRect* SetRect(SkIRect* dst, const ANPRectI& src);
71 static ANPRectI* SetRect(ANPRectI* dst, const SkIRect& src);
72 static ANPRectF* SetRect(ANPRectF* dst, const SkRect& src);
73 static SkBitmap* SetBitmap(SkBitmap* dst, const ANPBitmap& src);
74 static bool SetBitmap(ANPBitmap* dst, const SkBitmap& src);
  /bionic/libc/wchar/
wcsncpy.c 44 * Copy src to dst, truncating or null-padding to always copy n bytes.
45 * Return dst.
48 wcsncpy(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n)
51 wchar_t *d = dst;
63 return (dst);
  /external/chromium/third_party/libevent/
strlcpy.c 44 * Copy src to string dst of size siz. At most siz-1 characters
49 _event_strlcpy(dst, src, siz)
50 char *dst;
54 register char *d = dst;
66 /* Not enough room in dst, add NUL and traverse rest of src */
69 *d = '\0'; /* NUL-terminate dst */
install-sh 42 dst=""
88 dst=$1
104 dst=$src
107 if [ -d $dst ]; then
126 if [ x"$dst" = x ]
137 if [ -d $dst ]
139 dst="$dst"/`basename $src`
146 dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
182 $doit $instcmd $dst &
    [all...]
  /external/valgrind/main/none/tests/amd64/
bug137714-amd64.c 20 UChar* dst = malloc(8); local
21 assert(dst);
23 dst[i] = 17 * (i+1);
31 : /*in*/ "r"(regL), "r"(regR), "r"(&dst[0])
35 printf("%02x", dst[i]);
36 free(dst);
42 UChar* dst = malloc(16); local
43 assert(dst);
45 dst[i] = i;
53 : /*in*/ "r"(regL), "r"(regR), "r"(dst)
    [all...]
  /external/valgrind/main/none/tests/x86/
bug137714-x86.c 20 UChar* dst = malloc(8); local
21 assert(dst);
23 dst[i] = 17 * (i+1);
31 : /*in*/ "r"(regL), "r"(regR), "r"(&dst[0])
35 printf("%02x", dst[i]);
36 free(dst);
42 UChar* dst = malloc(16); local
43 assert(dst);
45 dst[i] = i;
53 : /*in*/ "r"(regL), "r"(regR), "r"(dst)
    [all...]
  /external/bluetooth/bluez/attrib/
gatttool.h 24 int interactive(const gchar *src, const gchar *dst, gboolean le);
25 GIOChannel *gatt_connect(const gchar *src, const gchar *dst,
  /external/libvpx/vp8/decoder/arm/neon/
idct_blk_neon.c 19 (short *input, short *dq, unsigned char *pre, unsigned char *dst,
22 (short *dc, unsigned char *pre, unsigned char *dst, int stride);
24 (short *q, short *dq, unsigned char *pre, unsigned char *dst,
28 unsigned char *dst, int stride);
32 unsigned char *dst, int stride, char *eobs, short *dc)
39 idct_dequant_dc_full_2x_neon (q, dq, pre, dst, stride, dc);
41 idct_dequant_dc_0_2x_neon(dc, pre, dst, stride);
44 idct_dequant_dc_full_2x_neon (q+32, dq, pre+8, dst+8, stride, dc+2);
46 idct_dequant_dc_0_2x_neon(dc+2, pre+8, dst+8, stride);
51 dst += 4*stride
    [all...]
  /external/libvpx/vp8/decoder/x86/
idct_blk_sse2.c 17 unsigned char *dst, int dst_stride, short *dc);
20 unsigned char *dst, int dst_stride, short *dc);
24 unsigned char *dst, int dst_stride, int blk_stride);
27 unsigned char *dst, int dst_stride, int blk_stride);
31 unsigned char *dst, int stride, char *eobs, short *dc)
38 idct_dequant_dc_full_2x_sse2 (q, dq, pre, dst, stride, dc);
40 idct_dequant_dc_0_2x_sse2 (q, dq, pre, dst, stride, dc);
43 idct_dequant_dc_full_2x_sse2 (q+32, dq, pre+8, dst+8, stride, dc+2);
45 idct_dequant_dc_0_2x_sse2 (q+32, dq, pre+8, dst+8, stride, dc+2);
50 dst += stride*4
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_RLEaccel_c.h 28 SDL_Surface *dst, SDL_Rect *dstrect);
30 SDL_Surface *dst, SDL_Rect *dstrect);
  /external/webp/src/dec/
dsp.c 59 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
65 static void TransformOne(const int16_t* in, uint8_t* dst) {
84 // an input in [-2048, 2047] interval. We then need to add a dst value
100 dst += BPS;
105 static void TransformTwo(const int16_t* in, uint8_t* dst, int do_two) {
106 TransformOne(in, dst);
108 TransformOne(in + 16, dst + 4);
112 static void TransformUV(const int16_t* in, uint8_t* dst) {
113 VP8Transform(in + 0 * 16, dst, 1)
    [all...]
  /external/bison/build-aux/
install-sh 68 dst=
175 dst=$src
178 if test -d "$dst"; then
198 dst=$dstarg
200 case $dst in
201 -*) dst=./$dst ;;
206 if test -d "$dst"; then
211 dst=$dst/`basename "$src"
    [all...]
  /external/dropbear/
install-sh 54 dst=""
100 dst=$1
116 dst=$src
119 if [ -d $dst ]; then
139 if [ x"$dst" = x ]
150 if [ -d $dst ]
152 dst="$dst"/`basename $src`
159 dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
195 $doit $instcmd $dst &
    [all...]

Completed in 1444 milliseconds

1 2 3 45 6 7 8 91011>>