HomeSort by relevance Sort by last modified time
    Searched defs:dst (Results 76 - 100 of 928) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_vs.c 184 struct ureg_dst dst; local
190 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
193 ureg_MOV(ureg, dst, imm);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_vs.c 81 struct ureg_dst dst; local
88 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
90 ureg_MOV(ureg, dst, src);
  /external/chromium_org/third_party/skia/src/animator/
SkTypedArray.cpp 158 int32_t* dst = fArray + index; local
159 memmove(dst + count, dst, sizeof(int32_t) * (oldCount - index));
161 memcpy(dst, src, sizeof(int32_t) * count);
162 return dst;
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.cpp 38 unsigned char* dst = (unsigned char*) fData; local
89 *dst = (unsigned char) one;
91 dst++;
95 *dst = (unsigned char) two;
96 dst++;
100 *dst = (unsigned char) three;
101 dst++;
104 fLength = dst - dstStart;
120 unsigned char* dst = (unsigned char*) dstPtr;
121 if (dst) {
    [all...]
  /external/chromium_org/third_party/skia/tests/
ColorTest.cpp 55 SkPMColor dst = SkPreMultiplyColor(colorDst);
57 REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a0) == dst);
58 REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a255) == src);
72 SkPMColor dst = SkPreMultiplyColor(colorDst); local
74 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a0) == dst);
75 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a255) == src);
  /external/compiler-rt/lib/builtins/ppc/
gcc_qadd.c 16 DD dst = { .ld = x }, src = { .ld = y }; local
18 register double A = dst.s.hi, a = dst.s.lo,
23 dst.s.hi = A + B;
24 dst.s.lo = 0.0;
25 return dst.ld;
33 dst.s.hi = A + B;
34 dst.s.lo = 0.0;
35 return dst.ld;
43 dst.s.hi = testForOverflow
    [all...]
gcc_qsub.c 16 DD dst = { .ld = x }, src = { .ld = y }; local
18 register double A = dst.s.hi, a = dst.s.lo,
23 dst.s.hi = A + B;
24 dst.s.lo = 0.0;
25 return dst.ld;
33 dst.s.hi = A + B;
34 dst.s.lo = 0.0;
35 return dst.ld;
43 dst.s.hi = testForOverflow
    [all...]
  /external/elfutils/0.153/libebl/
eblobjnote.c 104 Elf_Data dst = local
110 if (gelf_xlatetom (ebl->elf, &dst, &src,
  /external/libselinux/src/
label_internal.h 37 char *dst; member in struct:selabel_sub
  /external/mesa3d/src/gallium/auxiliary/util/
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)
77 dst[0] = ubyte_to_float(tmp[0]);
78 dst[1] = ubyte_to_float(tmp[1]);
79 dst[2] = ubyte_to_float(tmp[2])
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_zscan.h 64 struct pipe_surface *dst; member in struct:vl_zscan_buffer
85 struct pipe_sampler_view *src, struct pipe_surface *dst);
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 186 struct rc_dst_register * dst,
189 dst->File = translate_register_file(src->Register.File);
190 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index);
191 dst->WriteMask = src->Register.WriteMask;
202 struct rc_src_register * dst,
207 dst->File = translate_register_file(src->Register.File);
208 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index);
209 dst->RelAddr = src->Register.Indirect;
210 dst->Swizzle = tgsi_util_get_full_src_register_swizzle(src, 0);
211 dst->Swizzle |= tgsi_util_get_full_src_register_swizzle(src, 1) << 3
273 struct rc_instruction * dst; local
    [all...]
r300_vs.c 184 struct ureg_dst dst; local
190 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
193 ureg_MOV(ureg, dst, imm);
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_vs.c 81 struct ureg_dst dst; local
88 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
90 ureg_MOV(ureg, dst, src);
  /external/oprofile/libpopt/
poptconfig.c 100 /*@dependent@*/ char * dst; local
127 dst = buf = alloca(fileLength + 1);
135 *dst = '\0';
136 dst = buf;
137 while (*dst && isspace(*dst)) dst++;
138 if (*dst && *dst != '#')
139 configLine(con, dst);
    [all...]
  /bionic/libc/arch-arm64/denver64/bionic/
memcpy_base.S 45 #define dst x6 define
61 mov dst, dstin
74 add dst, dst, tmp1
80 stp A_l, A_h, [dst, #-48]
83 stp A_l, A_h, [dst, #-32]
86 stp A_l, A_h, [dst, #-16]
93 add dst, dst, count
94 stp A_l, A_h, [dst, #-16
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
memmove.S 51 #define dst x6 define
64 /* Swap src and dst so that a branch to memcpy doesn't cause issues. */
81 * Need to move from the tail backwards. SRC and DST point one
83 add dst, dstin, count
95 sub dst, dst, tmp1
101 stp A_l, A_h, [dst, #32]
104 stp A_l, A_h, [dst, #16]
107 stp A_l, A_h, [dst]
113 str tmp1, [dst, #-8]
    [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...]
  /bionic/tests/
wchar_test.cpp 414 wchar_t dst[128]; local
418 memset(dst, 0, sizeof(dst));
420 ASSERT_EQ(0U, mbsnrtowcs(dst, &src, 0, 0, NULL));
422 memset(dst, 0, sizeof(dst));
424 ASSERT_EQ(2U, mbsnrtowcs(dst, &src, 2, 123, NULL)); // glibc chokes on SIZE_MAX here.
425 ASSERT_EQ(L'h', dst[0]);
426 ASSERT_EQ(L'e', dst[1]);
429 memset(dst, 0, sizeof(dst))
    [all...]
  /build/tools/acp/
acp.c 117 char* dst; local
142 dst = malloc(stripDestLen +1 + srcNameLen +1);
143 memcpy(dst, stripDest, stripDestLen);
144 dst[stripDestLen] = FSSEP;
145 memcpy(dst + stripDestLen+1, srcName, srcNameLen+1);
148 dst = stripDest;
154 copyResult = copyFile(src, dst, options);
160 if (dst != stripDest)
161 free(dst);
  /cts/tests/tests/rscpp/librscpptest/
rs_jni_allocation.cpp 129 float *src, *dst; local
131 dst = new float[nElems];
135 dst[offset + i] = -1.0f;
142 A->copy1DTo(dst);
145 if (dst[offset + i] != src[i]) {
152 delete[] dst;
160 char *src, *dst; local
162 dst = new char[nElems];
166 dst[offset + i] = -1;
173 A->copy1DTo(dst);
191 short *src, *dst; local
222 int *src, *dst; local
253 double *src, *dst; local
286 float *src, *dst; local
    [all...]
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 76 } dst; member in struct:ip_conntrack_tuple
79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /external/antlr/antlr-3.4/runtime/Python/
ez_setup.py 115 src = dst = None
141 dst = open(saveto,"wb"); dst.write(data) variable
144 if dst: dst.close()
  /external/chromium_org/media/formats/webm/
webm_tracks_parser.cc 268 int64* dst = NULL; local
272 dst = &track_num_;
275 dst = &track_type_;
278 dst = &seek_preroll_;
281 dst = &codec_delay_;
284 dst = &default_duration_;
290 if (*dst != -1) {
296 *dst = val;
  /external/chromium_org/third_party/brotli/src/brotli/dec/
bit_reader.h 34 #define UNALIGNED_COPY64(dst, src) memcpy(dst, src, 8)
103 uint8_t* dst = br->buf_ptr_; local
104 int bytes_read = BrotliRead(br->input_, dst, BROTLI_READ_SIZE);
112 *(uint64_t*)(dst + bytes_read) = 0;
113 *(uint64_t*)(dst + bytes_read + 8) = 0;
114 *(uint64_t*)(dst + bytes_read + 16) = 0;
115 *(uint64_t*)(dst + bytes_read + 24) = 0;
117 memset(dst + bytes_read, 0, 32);
120 if (dst == br->buf_)
    [all...]

Completed in 531 milliseconds

1 2 34 5 6 7 8 91011>>