HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 226 - 250 of 5365) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
cpumask.h 21 #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst))
22 #define cpu_clear(cpu, dst) __cpu_clear((cpu), &(dst))
23 #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS)
24 #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS)
27 #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS
    [all...]
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
cpumask.h 21 #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst))
22 #define cpu_clear(cpu, dst) __cpu_clear((cpu), &(dst))
23 #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS)
24 #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS)
27 #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
cpumask.h 21 #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst))
22 #define cpu_clear(cpu, dst) __cpu_clear((cpu), &(dst))
23 #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS)
24 #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS)
27 #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
cpumask.h 21 #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst))
22 #define cpu_clear(cpu, dst) __cpu_clear((cpu), &(dst))
23 #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS)
24 #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS)
27 #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
cpumask.h 21 #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst))
22 #define cpu_clear(cpu, dst) __cpu_clear((cpu), &(dst))
23 #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS)
24 #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS)
27 #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS
    [all...]
  /system/vold/tests/
VolumeManager_test.cpp 39 char* dst = reinterpret_cast<char*>(&buffer); local
46 EXPECT_TRUE(VolumeManager::asecHash(exp1, dst, 0) == NULL && errno == ESPIPE)
48 EXPECT_TRUE(VolumeManager::asecHash((const char*)NULL, dst, sizeof(buffer)) == NULL && errno == ESPIPE)
51 EXPECT_FALSE(VolumeManager::asecHash(src1, dst, sizeof(buffer)) == NULL)
53 EXPECT_STREQ(exp1, dst)
58 EXPECT_FALSE(VolumeManager::asecHash(src2, dst, sizeof(buffer)) == NULL)
60 EXPECT_STREQ(exp2, dst)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/armv6/
idct_blk_v6.c 16 unsigned char *dst,
24 vp8_dequant_idct_add_v6 (q, dq, dst, stride);
27 vp8_dc_only_idct_add_v6 (q[0]*dq[0], dst, stride, dst, stride);
32 vp8_dequant_idct_add_v6 (q+16, dq, dst+4, stride);
35 vp8_dc_only_idct_add_v6 (q[16]*dq[0], dst+4, stride, dst+4, stride);
40 vp8_dequant_idct_add_v6 (q+32, dq, dst+8, stride);
43 vp8_dc_only_idct_add_v6 (q[32]*dq[0], dst+8, stride, dst+8, stride)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_latc.c 43 util_format_latc1_unorm_fetch_rgba_8unorm(uint8_t *dst, const uint8_t *src, unsigned i, unsigned j)
49 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, dst, 1);
50 dst[1] = dst[0];
51 dst[2] = dst[0];
52 dst[3] = 255;
79 float *dst = dst_row + (y + j)*dst_stride/sizeof(*dst_row) + (x + i)*4; local
82 dst[0] =
83 dst[1]
147 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
213 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
272 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
    [all...]
u_framebuffer.c 49 util_framebuffer_state_equal(const struct pipe_framebuffer_state *dst,
54 if (dst->width != src->width ||
55 dst->height != src->height)
59 if (dst->cbufs[i] != src->cbufs[i]) {
64 if (dst->nr_cbufs != src->nr_cbufs) {
68 if (dst->zsbuf != src->zsbuf) {
77 * Copy framebuffer state from src to dst, updating refcounts.
80 util_copy_framebuffer_state(struct pipe_framebuffer_state *dst,
85 dst->width = src->width;
86 dst->height = src->height
    [all...]
u_format_yuv.c 48 float *dst = dst_row; local
65 dst[0] = r; /* r */
66 dst[1] = g0; /* g */
67 dst[2] = b; /* b */
68 dst[3] = 1.0f; /* a */
69 dst += 4;
71 dst[0] = r; /* r */
72 dst[1] = g1; /* g */
73 dst[2] = b; /* b */
74 dst[3] = 1.0f; /* a *
110 uint8_t *dst = dst_row; local
173 uint32_t *dst = (uint32_t *)dst_row; local
230 uint32_t *dst = (uint32_t *)dst_row; local
300 float *dst = dst_row; local
362 uint8_t *dst = dst_row; local
425 uint32_t *dst = (uint32_t *)dst_row; local
482 uint32_t *dst = (uint32_t *)dst_row; local
552 float *dst = dst_row; local
608 uint8_t *dst = dst_row; local
665 uint32_t *dst = (uint32_t *)dst_row; local
726 uint32_t *dst = (uint32_t *)dst_row; local
805 float *dst = dst_row; local
861 uint8_t *dst = dst_row; local
918 uint32_t *dst = (uint32_t *)dst_row; local
979 uint32_t *dst = (uint32_t *)dst_row; local
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/armv6/
idct_blk_v6.c 16 unsigned char *dst,
24 vp8_dequant_idct_add_v6 (q, dq, dst, stride);
27 vp8_dc_only_idct_add_v6 (q[0]*dq[0], dst, stride, dst, stride);
32 vp8_dequant_idct_add_v6 (q+16, dq, dst+4, stride);
35 vp8_dc_only_idct_add_v6 (q[16]*dq[0], dst+4, stride, dst+4, stride);
40 vp8_dequant_idct_add_v6 (q+32, dq, dst+8, stride);
43 vp8_dc_only_idct_add_v6 (q[32]*dq[0], dst+8, stride, dst+8, stride)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_latc.c 43 util_format_latc1_unorm_fetch_rgba_8unorm(uint8_t *dst, const uint8_t *src, unsigned i, unsigned j)
49 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, dst, 1);
50 dst[1] = dst[0];
51 dst[2] = dst[0];
52 dst[3] = 255;
79 float *dst = dst_row + (y + j)*dst_stride/sizeof(*dst_row) + (x + i)*4; local
82 dst[0] =
83 dst[1]
147 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
213 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
272 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
    [all...]
u_framebuffer.c 49 util_framebuffer_state_equal(const struct pipe_framebuffer_state *dst,
54 if (dst->width != src->width ||
55 dst->height != src->height)
59 if (dst->cbufs[i] != src->cbufs[i]) {
64 if (dst->nr_cbufs != src->nr_cbufs) {
68 if (dst->zsbuf != src->zsbuf) {
77 * Copy framebuffer state from src to dst, updating refcounts.
80 util_copy_framebuffer_state(struct pipe_framebuffer_state *dst,
85 dst->width = src->width;
86 dst->height = src->height
    [all...]
u_format_yuv.c 48 float *dst = dst_row; local
65 dst[0] = r; /* r */
66 dst[1] = g0; /* g */
67 dst[2] = b; /* b */
68 dst[3] = 1.0f; /* a */
69 dst += 4;
71 dst[0] = r; /* r */
72 dst[1] = g1; /* g */
73 dst[2] = b; /* b */
74 dst[3] = 1.0f; /* a *
110 uint8_t *dst = dst_row; local
173 uint32_t *dst = (uint32_t *)dst_row; local
230 uint32_t *dst = (uint32_t *)dst_row; local
300 float *dst = dst_row; local
362 uint8_t *dst = dst_row; local
425 uint32_t *dst = (uint32_t *)dst_row; local
482 uint32_t *dst = (uint32_t *)dst_row; local
552 float *dst = dst_row; local
608 uint8_t *dst = dst_row; local
665 uint32_t *dst = (uint32_t *)dst_row; local
726 uint32_t *dst = (uint32_t *)dst_row; local
805 float *dst = dst_row; local
861 uint8_t *dst = dst_row; local
918 uint32_t *dst = (uint32_t *)dst_row; local
979 uint32_t *dst = (uint32_t *)dst_row; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
idct_blk_v6.c 16 unsigned char *dst,
24 vp8_dequant_idct_add_v6 (q, dq, dst, stride);
27 vp8_dc_only_idct_add_v6 (q[0]*dq[0], dst, stride, dst, stride);
32 vp8_dequant_idct_add_v6 (q+16, dq, dst+4, stride);
35 vp8_dc_only_idct_add_v6 (q[16]*dq[0], dst+4, stride, dst+4, stride);
40 vp8_dequant_idct_add_v6 (q+32, dq, dst+8, stride);
43 vp8_dc_only_idct_add_v6 (q[32]*dq[0], dst+8, stride, dst+8, stride)
    [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...]
  /bionic/libc/arch-arm64/generic/bionic/
memset.S 64 #define dst x8 define
73 mov dst, dstin /* Preserve return value. */
91 add dst, dst, tmp1
95 stp A_l, A_l, [dst, #-48]
97 stp A_l, A_l, [dst, #-32]
99 stp A_l, A_l, [dst, #-16]
103 add dst, dst, count
104 stp A_l, A_l, [dst, #-16] /* Repeat some/all of last store. *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/rtasm/
x86sse.c 143 struct x86_reg dst,
146 switch (dst.mod) {
149 emit_modrm(p, dst, src);
156 emit_modrm(p, src, dst);
305 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm )
307 assert(dst.mod == mod_REG);
308 emit_1ub(p, 0xb8 + dst.idx);
353 struct x86_reg dst,
356 emit_op_modrm( p, 0x8b, 0x89, dst, src );
360 struct x86_reg dst,
    [all...]
  /external/mesa3d/src/mesa/x86/rtasm/
x86sse.c 143 struct x86_reg dst,
146 switch (dst.mod) {
149 emit_modrm(p, dst, src);
156 emit_modrm(p, src, dst);
305 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm )
307 assert(dst.mod == mod_REG);
308 emit_1ub(p, 0xb8 + dst.idx);
353 struct x86_reg dst,
356 emit_op_modrm( p, 0x8b, 0x89, dst, src );
360 struct x86_reg dst,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_vb.c 54 GLuint *dst = (GLuint *)(verts + (edst * size)); local
56 dst[4] = src[4];
57 dst[5] = src[5];
65 GLuint *dst = (GLuint *)(verts + (edst * size)); local
67 dst[4] = src[4];
75 GLuint *dst = (GLuint *)(verts + (edst * size)); local
77 dst[3] = src[3];
83 SWvertex *dst)
92 dst->attrib[FRAG_ATTRIB_WPOS][0] = s[0] * src->v.x + s[12];
93 dst->attrib[FRAG_ATTRIB_WPOS][1] = s[5] * src->v.y + s[13]
    [all...]
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_vb.c 54 GLuint *dst = (GLuint *)(verts + (edst * size)); local
56 dst[4] = src[4];
57 dst[5] = src[5];
65 GLuint *dst = (GLuint *)(verts + (edst * size)); local
67 dst[4] = src[4];
75 GLuint *dst = (GLuint *)(verts + (edst * size)); local
77 dst[3] = src[3];
83 SWvertex *dst)
92 dst->attrib[FRAG_ATTRIB_WPOS][0] = s[0] * src->v.x + s[12];
93 dst->attrib[FRAG_ATTRIB_WPOS][1] = s[5] * src->v.y + s[13]
    [all...]
  /external/valgrind/main/none/tests/s390x/
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...]
cu21_1.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...]
  /external/chromium_org/content/renderer/accessibility/
blink_ax_tree_source.cc 86 ui::AXNodeData* dst) {
91 dst->AddIntListAttribute(attr, ids);
180 ui::AXNodeData* dst) const {
181 dst->role = AXRoleFromBlink(src.role());
182 dst->state = AXStateFromBlink(src);
183 dst->location = src.boundingBoxRect();
184 dst->id = src.axID();
189 dst->AddStringAttribute(ui::AX_ATTR_VALUE,
192 dst->AddStringAttribute(ui::AX_ATTR_VALUE, UTF16ToUTF8(src.stringValue()));
195 if (dst->role == ui::AX_ROLE_COLOR_WELL)
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicSubDivide.cpp 67 void sub_divide(const Cubic& src, double t1, double t2, Cubic& dst) {
69 dst[0] = src[0];
70 dst[1] = src[1];
71 dst[2] = src[2];
72 dst[3] = src[3];
75 double ax = dst[0].x = interp_cubic_coords(&src[0].x, t1);
76 double ay = dst[0].y = interp_cubic_coords(&src[0].y, t1);
81 double dx = dst[3].x = interp_cubic_coords(&src[0].x, t2);
82 double dy = dst[3].y = interp_cubic_coords(&src[0].y, t2);
87 /* bx = */ dst[1].x = (mx * 2 - nx) / 18
    [all...]

Completed in 659 milliseconds

1 2 3 4 5 6 7 8 91011>>