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

1 2 3 4 5 6 78 91011>>

  /bionic/libc/arch-arm64/generic/bionic/
memset.S 77 #define dst x3 define
89 cmp count, dst
151 bic dst, dstin, 15
157 sub count, dstend, dst /* Count is 16 too large. */
158 add dst, dst, 16
160 1: stp q0, q0, [dst], 64
161 stp q0, q0, [dst, -32]
181 str q0, [dst, 16]
182 stp q0, q0, [dst, 32
    [all...]
string_copy.S 70 #define dst x0 define
78 #define dst x2 define
106 mov dst, dstin
128 stp data1, data2, [dst], #16
138 str data1, [dst], #7
140 str data1, [dst]
145 str data1_w, [dst], #4
149 strh data1_w, [dst], #2
153 strb data1_w, [dst]
159 // Back up one so that dst points to the '\0' string terminator
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
file_util.py 18 def _copy_file_contents(src, dst, buffer_size=16*1024):
19 """Copy the file 'src' to 'dst'.
22 'src', or writing to 'dst', raises DistutilsFileError. Data is
36 if os.path.exists(dst):
38 os.unlink(dst)
41 "could not delete '%s': %s" % (dst, errstr))
44 fdst = open(dst, 'wb')
47 "could not create '%s': %s" % (dst, errstr))
63 "could not write to '%s': %s" % (dst, errstr))
71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0,
    [all...]
  /external/syslinux/core/
sysappend.c 31 static char *copy_and_mangle(char *dst, const char *src)
34 char *end = dst;
40 *dst++ = '_';
43 *dst++ = c;
44 end = dst;
87 char *dst; local
92 dst = sysuuid_str+8;
98 dst += sprintf(dst, "%02x", *src++);
102 *dst++ = '-'
    [all...]
  /external/valgrind/none/tests/s390x/
cu41.stdout.exp 5 dst len: 0
11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
19 dst address difference: 0 dst len: 1000
23 dst address difference: 0 dst len: 1000
27 dst address difference: 0 dst len: 100
    [all...]
cu21.stdout.exp 5 dst len: 0
11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
19 dst address difference: 0 dst len: 1000
23 dst address difference: 0 dst len: 1000
27 dst address difference: 0 dst len: 100
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
file_util.py 18 def _copy_file_contents(src, dst, buffer_size=16*1024):
19 """Copy the file 'src' to 'dst'.
22 'src', or writing to 'dst', raises DistutilsFileError. Data is
36 if os.path.exists(dst):
38 os.unlink(dst)
41 "could not delete '%s': %s" % (dst, errstr))
44 fdst = open(dst, 'wb')
47 "could not create '%s': %s" % (dst, errstr))
63 "could not write to '%s': %s" % (dst, errstr))
71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
file_util.py 18 def _copy_file_contents(src, dst, buffer_size=16*1024):
19 """Copy the file 'src' to 'dst'.
22 'src', or writing to 'dst', raises DistutilsFileError. Data is
36 if os.path.exists(dst):
38 os.unlink(dst)
41 "could not delete '%s': %s" % (dst, errstr))
44 fdst = open(dst, 'wb')
47 "could not create '%s': %s" % (dst, errstr))
63 "could not write to '%s': %s" % (dst, errstr))
71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
file_util.py 18 def _copy_file_contents(src, dst, buffer_size=16*1024):
19 """Copy the file 'src' to 'dst'.
22 'src', or writing to 'dst', raises DistutilsFileError. Data is
36 if os.path.exists(dst):
38 os.unlink(dst)
41 "could not delete '%s': %s" % (dst, errstr))
44 fdst = open(dst, 'wb')
47 "could not create '%s': %s" % (dst, errstr))
63 "could not write to '%s': %s" % (dst, errstr))
71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
file_util.py 18 def _copy_file_contents(src, dst, buffer_size=16*1024):
19 """Copy the file 'src' to 'dst'.
22 'src', or writing to 'dst', raises DistutilsFileError. Data is
36 if os.path.exists(dst):
38 os.unlink(dst)
41 "could not delete '%s': %s" % (dst, errstr))
44 fdst = open(dst, 'wb')
47 "could not create '%s': %s" % (dst, errstr))
63 "could not write to '%s': %s" % (dst, errstr))
71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0
    [all...]
  /system/core/libcutils/arch-mips/
android_memset.c 36 void android_memset16(uint16_t* dst, uint16_t value, size_t size)
41 *dst++ = value;
45 if (((uintptr_t)dst & 2) && size) {
47 *dst++ = value;
50 /* dst is now 32-bit-aligned */
53 android_memset32((uint32_t*) dst, value32, size<<1);
55 dst[size-1] = value; /* fill unpaired last elem */
63 void android_memset32(uint32_t* dst, uint32_t value, size_t size)
68 *dst++ = value;
72 if (((uintptr_t)dst & 4) && size)
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12365c.c 10 char *dst = (char *) d; local
13 *dst++ = *src++;
20 char *dst = (char *) d; local
22 if (src >= dst)
24 *dst++ = *src++;
27 dst += n;
30 *--dst = *--src;
37 char *dst = (char *) d; local
39 *dst++ = c;
46 char *dst = (char *) d local
    [all...]
  /external/libedit/src/
strlcat.c 38 * Appends src to string dst of size siz (unlike strncat, siz is the
39 * full size of dst, not space left). At most siz-1 characters
40 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
41 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
45 strlcat(char *dst, const char *src, size_t siz)
48 char *d = dst;
53 _DIAGASSERT(dst != NULL);
56 /* Find the end of dst and adjust bytes left but don't go past end */
59 dlen = d - dst;
75 _DIAGASSERT(dst != NULL)
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/java/src/main/java/org/tensorflow/lite/
Tensor.java 33 <T> T copyTo(T dst) {
34 if (NativeInterpreterWrapper.dataTypeOf(dst) != dtype) {
39 dtype, dst.getClass().getName(), NativeInterpreterWrapper.dataTypeOf(dst)));
41 int[] dstShape = NativeInterpreterWrapper.shapeOf(dst);
48 readMultiDimensionalArray(nativeHandle, dst);
49 return dst;
  /hardware/interfaces/camera/device/3.2/default/include/
convert.h 41 // *dst will point to the data owned by src, but src still owns the data after this call returns.
42 bool convertFromHidl(const CameraMetadata &src, const camera_metadata_t** dst);
43 void convertToHidl(const camera_metadata_t* src, CameraMetadata* dst);
45 void convertFromHidl(const Stream &src, Camera3Stream* dst);
46 void convertToHidl(const Camera3Stream* src, HalStream* dst);
50 camera3_stream_buffer_t* dst);
52 void convertToHidl(const camera3_stream_configuration_t& src, HalStreamConfiguration* dst);
57 void convertToHidl(const camera3_notify_msg* src, NotifyMsg* dst);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/
SetMem.S 67 #define dst x3 define
150 bic dst, dstin, 15
156 sub count, dstend, dst // Count is 16 too large.
157 add dst, dst, 16
159 1: stp q0, q0, [dst], 64
160 stp q0, q0, [dst, -32]
179 str q0, [dst, 16]
180 stp q0, q0, [dst, 32]
181 bic dst, dst, 63
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_latc.c 33 util_format_latc1_unorm_fetch_rgba_8unorm(uint8_t *dst, const uint8_t *src, unsigned i, unsigned j)
39 util_format_unsigned_fetch_texel_rgtc(0, src, i, j, dst, 1);
40 dst[1] = dst[0];
41 dst[2] = dst[0];
42 dst[3] = 255;
69 float *dst = dst_row + (y + j)*dst_stride/sizeof(*dst_row) + (x + i)*4; local
72 dst[0] =
73 dst[1]
137 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
203 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
262 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
    [all...]
u_format_yuv.c 49 float *dst = dst_row; local
62 dst[0] = r; /* r */
63 dst[1] = g0; /* g */
64 dst[2] = b; /* b */
65 dst[3] = 1.0f; /* a */
66 dst += 4;
68 dst[0] = r; /* r */
69 dst[1] = g1; /* g */
70 dst[2] = b; /* b */
71 dst[3] = 1.0f; /* a *
103 uint8_t *dst = dst_row; local
158 uint32_t *dst = (uint32_t *)dst_row; local
207 uint32_t *dst = (uint32_t *)dst_row; local
269 float *dst = dst_row; local
323 uint8_t *dst = dst_row; local
378 uint32_t *dst = (uint32_t *)dst_row; local
427 uint32_t *dst = (uint32_t *)dst_row; local
489 float *dst = dst_row; local
537 uint8_t *dst = dst_row; local
586 uint32_t *dst = (uint32_t *)dst_row; local
639 uint32_t *dst = (uint32_t *)dst_row; local
710 float *dst = dst_row; local
758 uint8_t *dst = dst_row; local
807 uint32_t *dst = (uint32_t *)dst_row; local
860 uint32_t *dst = (uint32_t *)dst_row; local
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixHard_1St_2i_D16C31_SAT.c 34 LVM_FLOAT *dst,
45 *dst++ = 1.0f;
47 *dst++ = -1.0f;
49 *dst++ = (LVM_FLOAT)Temp;
53 *dst++ = 1.0f;
55 *dst++ = -1.0f;
57 *dst++ = (LVM_FLOAT)Temp;
66 LVM_INT16 *dst,
84 *dst++ = 0x7FFF;
86 *dst++ = - 0x8000
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
nj_str.c 21 NJ_CHAR *nj_strcpy(NJ_CHAR *dst, NJ_CHAR *src) {
23 NJ_CHAR *ret = dst;
27 *dst++ = *src++;
29 *dst = *src;
33 NJ_CHAR *nj_strncpy(NJ_CHAR *dst, NJ_CHAR *src, NJ_UINT16 n) {
35 NJ_CHAR *d = dst;
50 return dst;
122 NJ_CHAR *nj_charncpy(NJ_CHAR *dst, NJ_CHAR *src, NJ_UINT16 n) {
124 NJ_CHAR *d = dst;
132 return dst;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_extend.c 19 uint8_t *dst, int dst_pitch, int w, int h,
27 uint8_t *dst_ptr1 = dst - extend_left;
28 uint8_t *dst_ptr2 = dst + w;
42 src_ptr1 = dst - extend_left;
43 src_ptr2 = dst + dst_pitch * (h - 1) - extend_left;
44 dst_ptr1 = dst + dst_pitch * (-extend_top) - extend_left;
45 dst_ptr2 = dst + dst_pitch * (h)-extend_left;
66 uint16_t *dst = CONVERT_TO_SHORTPTR(dst8); local
71 uint16_t *dst_ptr1 = dst - extend_left;
72 uint16_t *dst_ptr2 = dst + w
    [all...]
  /external/mesa3d/src/mesa/x86/rtasm/
x86sse.c 145 struct x86_reg dst,
148 switch (dst.mod) {
151 emit_modrm(p, dst, src);
158 emit_modrm(p, src, dst);
307 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm )
309 assert(dst.mod == mod_REG);
310 emit_1ub(p, 0xb8 + dst.idx);
355 struct x86_reg dst,
358 emit_op_modrm( p, 0x8b, 0x89, dst, src );
362 struct x86_reg dst,
    [all...]
  /external/libvpx/libvpx/vpx_dsp/ppc/
intrapred_vsx.c 14 void vpx_v_predictor_16x16_vsx(uint8_t *dst, ptrdiff_t stride,
20 for (i = 0; i < 16; i++, dst += stride) {
21 vec_vsx_st(d, 0, dst);
25 void vpx_v_predictor_32x32_vsx(uint8_t *dst, ptrdiff_t stride,
32 for (i = 0; i < 32; i++, dst += stride) {
33 vec_vsx_st(d0, 0, dst);
34 vec_vsx_st(d1, 16, dst);
40 void vpx_h_predictor_4x4_vsx(uint8_t *dst, ptrdiff_t stride,
50 vec_vsx_st(vec_sel(v0, vec_vsx_ld(0, dst), (uint8x16_t)mask4), 0, dst); local
52 vec_vsx_st(vec_sel(v1, vec_vsx_ld(0, dst), (uint8x16_t)mask4), 0, dst); local
54 vec_vsx_st(vec_sel(v2, vec_vsx_ld(0, dst), (uint8x16_t)mask4), 0, dst); local
56 vec_vsx_st(vec_sel(v3, vec_vsx_ld(0, dst), (uint8x16_t)mask4), 0, dst); local
74 vec_vsx_st(xxpermdi(v0, vec_vsx_ld(0, dst), 1), 0, dst); local
76 vec_vsx_st(xxpermdi(v1, vec_vsx_ld(0, dst), 1), 0, dst); local
78 vec_vsx_st(xxpermdi(v2, vec_vsx_ld(0, dst), 1), 0, dst); local
80 vec_vsx_st(xxpermdi(v3, vec_vsx_ld(0, dst), 1), 0, dst); local
82 vec_vsx_st(xxpermdi(v4, vec_vsx_ld(0, dst), 1), 0, dst); local
84 vec_vsx_st(xxpermdi(v5, vec_vsx_ld(0, dst), 1), 0, dst); local
86 vec_vsx_st(xxpermdi(v6, vec_vsx_ld(0, dst), 1), 0, dst); local
88 vec_vsx_st(xxpermdi(v7, vec_vsx_ld(0, dst), 1), 0, dst); local
247 vec_vsx_st(vec_sel(vec_packsu(val, tmp), d, (uint8x16_t)mask4), 0, dst); local
253 vec_vsx_st(vec_sel(vec_packsu(val, tmp), d, (uint8x16_t)mask4), 0, dst); local
259 vec_vsx_st(vec_sel(vec_packsu(val, tmp), d, (uint8x16_t)mask4), 0, dst); local
265 vec_vsx_st(vec_sel(vec_packsu(val, tmp), d, (uint8x16_t)mask4), 0, dst); local
277 vec_vsx_st(vec_packsu(val, tmp), 0, dst); local
282 vec_vsx_st(vec_packsu(val, tmp), 0, dst); local
287 vec_vsx_st(vec_packsu(val, tmp), 0, dst); local
292 vec_vsx_st(vec_packsu(val, tmp), 0, dst); local
297 vec_vsx_st(vec_packsu(val, tmp), 0, dst); local
302 vec_vsx_st(vec_packsu(val, tmp), 0, dst); local
307 vec_vsx_st(vec_packsu(val, tmp), 0, dst); local
312 vec_vsx_st(vec_packsu(val, tmp), 0, dst); local
322 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
328 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
334 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
340 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
346 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
352 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
358 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
364 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
392 vec_vsx_st(vec_packsu(vh, vl), 0, dst); local
395 vec_vsx_st(vec_packsu(vh, vl), 16, dst); local
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
indent.go 9 // Compact appends to dst the JSON-encoded src with
11 func Compact(dst *bytes.Buffer, src []byte) error {
12 return compact(dst, src, false)
15 func compact(dst *bytes.Buffer, src []byte, escape bool) error {
16 origLen := dst.Len()
23 dst.Write(src[start:i])
25 dst.WriteString(`\u00`)
26 dst.WriteByte(hex[c>>4])
27 dst.WriteByte(hex[c&0xF])
33 dst.Write(src[start:i]
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
indent.go 9 // Compact appends to dst the JSON-encoded src with
11 func Compact(dst *bytes.Buffer, src []byte) error {
12 return compact(dst, src, false)
15 func compact(dst *bytes.Buffer, src []byte, escape bool) error {
16 origLen := dst.Len()
23 dst.Write(src[start:i])
25 dst.WriteString(`\u00`)
26 dst.WriteByte(hex[c>>4])
27 dst.WriteByte(hex[c&0xF])
33 dst.Write(src[start:i]
    [all...]

Completed in 1125 milliseconds

1 2 3 4 5 6 78 91011>>